/* Custom CSS for Maharat 71 Website */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');
/* Justified white text for footer company info */
.footer-justify-white {
    color: #fff !important;
    text-align: justify;
    max-width: 300px;
    margin-top: 30px;
}

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #00b894;
    --dark-color: #2d3436;
    --light-color: #ddd;
    --gradient-primary: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --footer-bg: #22005e;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-weight: 400;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Navbar - FORCE WHITE BACKGROUND */
.custom-navbar {
    background: transparent !important;
    transition: var(--transition);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-navbar.scrolled {
    background: white !important;
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    position: relative;
}

.logo-white {
    display: block;
    transition: var(--transition);
}

.logo-dark {
    display: none;
    transition: var(--transition);
}

.custom-navbar.scrolled .logo-white {
    display: none;
}

.custom-navbar.scrolled .logo-dark {
    display: block;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #15a28c !important;
}

.custom-navbar.scrolled .navbar-nav .nav-link {
    color: #2d3436 !important;
}

.custom-navbar.scrolled .navbar-nav .nav-link:hover,
.custom-navbar.scrolled .navbar-nav .nav-link.active {
    color: #15a28c !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #15a28c;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

.contact-btn {
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%) !important;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
    font-weight: 600;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(21, 162, 140, 0.4);
    color: white;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

.contact-btn {
    background: var(--gradient-primary) !important;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
    font-weight: 600;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Modern Dropdown Menu */
.navbar .dropdown-menu {
    --dd-bg: rgba(255,255,255,0.95);
    background: var(--dd-bg);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 35px -8px rgba(20,30,60,0.25), 0 4px 12px -4px rgba(20,30,60,0.15);
    border-radius: 18px;
    padding: .65rem 0;
    min-width: 230px;
    margin-top: 0.9rem !important;
    animation: none;
    transform-origin: top center;
    transform: translateY(14px) scale(.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, transform .45s cubic-bezier(.25,.85,.35,1.15), visibility .35s;
    overflow: hidden;
    position: absolute;
    z-index: 1000;
}

.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown.show > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Small arrow */
.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px; left: 28px;
    width: 18px; height: 18px;
    background: var(--dd-bg);
    transform: rotate(45deg);
    border: 1px solid rgba(255,255,255,0.4);
    border-right: none; border-bottom: none;
    box-shadow: 0 4px 10px -3px rgba(20,30,60,0.15);
    z-index: -1;
}

.navbar .dropdown-item {
    font-weight: 500;
    font-size: .85rem;
    padding: .55rem 1.15rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #2d3436;
    position: relative;
    transition: background .35s ease, color .35s ease, padding-left .4s cubic-bezier(.25,.85,.35,1.15);
}

.navbar .dropdown-item:not(:last-child) {
    /* subtle divider using gradient */
    --div: linear-gradient(90deg,rgba(0,0,0,0) 0%, rgba(110,120,140,.25) 50%, rgba(0,0,0,0) 100%);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
    background: linear-gradient(135deg,#15a28c,#37ec7e);
    color: #fff;
    padding-left: 1.35rem;
}

.navbar .dropdown-item:hover i,
.navbar .dropdown-item:focus i,
.navbar .dropdown-item.active i { color:#fff; }

/* Replace default bootstrap caret with icon */
.navbar .dropdown-toggle::after {
    content: '\ea4e'; /* remix icon arrow-down-s-line */
    font-family: 'remixicon';
    font-size: .85rem;
    border: none !important;
    vertical-align: middle;
    margin-left: .35rem;
    transition: transform .45s cubic-bezier(.25,.85,.35,1.15);
}

.navbar .dropdown.show > .nav-link.dropdown-toggle::after,
.navbar .dropdown:hover > .nav-link.dropdown-toggle::after { transform: rotate(180deg); }

/* Dark-on-hero state: keep links white but dropdown white; adjust link color inside */
.custom-navbar:not(.scrolled) .dropdown-menu .dropdown-item { color:#2d3436; }
.custom-navbar:not(.scrolled) .dropdown-menu .dropdown-item:hover { color:#fff; }

/* New Button Style */
.modern-btn {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #37ec7e;
    color: ghostwhite;
    text-decoration: none;
}

.modern-btn span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.modern-btn:hover span {
    color: black;
}

.modern-btn::before,
.modern-btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.modern-btn::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.modern-btn:hover::before {
    transform: translate3d(100%, 0, 0);
}

.modern-btn-outline {
    background: transparent;
    border: 2px solid #37ec7e;
    color: white;
}

.modern-btn-outline:hover {
    background: #37ec7e;
    color: var(--dark-color);
}

.hero-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    margin: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108, 92, 231, 0.8), rgba(0, 184, 148, 0.6));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons .btn {
    margin: 0.5rem;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section - NO CIRCLES */
.about-section {
    padding: 5rem 0;
}

/* Modern About Section Enhancements */
.about-media-wrapper {
    position: relative;
    padding: 1.5rem;
}

/* Solutions & Services Modern Cards */
.solutions-grid { position: relative; }
.solution-card {
    position: relative;
    height: 100%;
    border-radius: 22px;
    padding: 1.6rem 1.4rem 1.4rem;
    /* Lighter clean background */
    background:#ffffff;
    color: #210059;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px -6px rgba(20,30,60,.18), 0 2px 6px rgba(20,30,60,.12);
    transition: transform .65s cubic-bezier(.25,1,.5,1), box-shadow .55s ease, background .6s ease;
    border:1px solid #eef2f6;
}
.solution-bg { position:absolute; inset:0; overflow:hidden; z-index:0; }
.solution-bg img { width:100%; height:100%; object-fit:cover; filter: grayscale(80%) brightness(0.6); transform: scale(1.15); transition: transform 1.2s ease, filter .9s ease, opacity .9s ease; opacity:0; }
.solution-card:hover .solution-bg img { opacity:1; filter: grayscale(0%) brightness(.95) saturate(1.15); transform: scale(1.02); }
.solution-card > *:not(.solution-bg):not(.solution-accent) { position:relative; z-index:2; }
.solution-card::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%); opacity:0; transition:opacity .7s ease; z-index:1; }
.solution-card:hover::after { opacity:1; }
.solution-card:hover { background: linear-gradient(135deg,#15a28c,#37ec7e); }
.solution-card:hover .solution-title { color:#fff; }
.solution-card:hover .solution-features li { color:#eef; }
.solution-card:hover .solution-icon { background: rgba(255,255,255,.2); color:#fff; }
.solution-card::before, .solution-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .4;
    transition: transform 1.5s ease;
}
.solution-card::before { width: 160px; height:160px; top:-40px; right:-40px; }
.solution-card::after { width: 200px; height:200px; bottom:-70px; left:-60px; }

.gradient-green { background: linear-gradient(135deg,#15a28c,#37ec7e); }
.gradient-pink { background: linear-gradient(135deg,#f093fb,#f5576c); }
.gradient-purple { background: linear-gradient(135deg,#667eea,#764ba2); }
.gradient-teal { background: linear-gradient(135deg,#00b894,#15a28c); }

.solution-card.gradient-green::before { background:#37ec7e; }
.solution-card.gradient-green::after { background:#15a28c; }
.solution-card.gradient-pink::before { background:#f5576c; }
.solution-card.gradient-pink::after { background:#f093fb; }
.solution-card.gradient-purple::before { background:#764ba2; }
.solution-card.gradient-purple::after { background:#667eea; }
.solution-card.gradient-teal::before { background:#15a28c; }
.solution-card.gradient-teal::after { background:#00b894; }

.solution-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,rgba(255,255,255,.25),rgba(255,255,255,.05));
    mix-blend-mode: overlay;
    opacity:.35;
    pointer-events:none;
}

.solution-icon {
    width:76px; height:76px;
    border-radius: 22px;
    background: rgba(255,255,255,.18);
    display:flex;align-items:center;justify-content:center;
    font-size:2.1rem;
    margin-bottom:1.1rem;
    position:relative;
    box-shadow: 0 10px 25px -10px rgba(0,0,0,.4);
    backdrop-filter: blur(6px);
}
.solution-icon i { line-height:1; }

.solution-title { font-size:1.05rem; font-weight:700; letter-spacing:.5px; margin-bottom:.85rem; }
.solution-features { list-style:none; padding:0; margin:0 0 1.4rem; font-size:.8rem; line-height:1.35; }
.solution-features li { position:relative; padding-left:14px; margin-bottom:.4rem; }
.solution-features li::before { content:''; position:absolute; left:0; top:.55em; width:6px; height:6px; border-radius:50%; background:#fff; opacity:.6; }

.solution-btn { align-self:center; background: rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.35); color:#fff; }
.solution-btn:hover { background:#fff; color:#210059; }

.solution-card:hover { 
    transform: translateY(-8px); 
    box-shadow:0 22px 48px -15px rgba(21,162,140,.45), 0 8px 22px rgba(21,162,140,.25);
    background: linear-gradient(135deg,#15a28c,#37ec7e);
    color:#fff;
}
.solution-card:hover .solution-title, .solution-card:hover .solution-features li { color:#fff; }
.solution-card:hover .solution-features li::before { background:#fff; opacity:.85; }
.solution-card:hover .solution-icon { background: rgba(255,255,255,.22); color:#fff; }
.solution-card:hover .solution-btn { background:#fff; color:#15a28c; border-color:#fff; }

/* Alignment & background tweaks for Solutions section */
.solutions-section { background:#f5f5f5 !important; }
.solutions-section .solution-title { min-height:48px; display:flex; align-items:center; justify-content:center; text-align:center; }
/* Ensure feature lists occupy uniform height so buttons align */
.solutions-section .solution-features { min-height:140px; display:flex; flex-direction:column; justify-content:flex-start; }
.solutions-section .solution-card .solution-btn { margin-top:auto; }
@media (max-width: 767px) {
    .solutions-section .solution-title { min-height:unset; }
    .solutions-section .solution-features { min-height:unset; }
}

/* Smaller adaptive button */
.solution-btn { padding: .45rem .9rem; font-size: .7rem; letter-spacing:.5px; border-radius: 30px; line-height:1; }
.solution-btn span { display:inline-flex; align-items:center; gap:.35rem; }
.solution-card:hover::before { transform: translate(15px,-10px) scale(1.1); }
.solution-card:hover::after { transform: translate(-15px,10px) scale(1.05); }

@media (max-width: 991px) {
    .solution-card { padding:1.4rem 1.2rem 1.2rem; }
    .solution-icon { width:64px; height:64px; font-size:1.8rem; border-radius:18px; }
    .solution-title { font-size:1rem; }
    .solution-features { font-size:.78rem; }
}
@media (max-width: 575px) {
    .solution-card { border-radius:20px; }
    .solution-icon { width:58px; height:58px; font-size:1.65rem; border-radius:16px; }
}

/* --- Solutions cards base alignment + neutral background (non-hover state) --- */
.solution-card { text-align:center; align-items:center; }
.solution-card .solution-icon { margin-left: 0; margin-right: 0; }
.solution-card .solution-title { width:100%; text-align:center; }
.solution-card .solution-features { 
    /* Keep list visually centered while text inside aligns left */
    text-align:left; 
    display:inline-block; 
    margin-left:0; 
    padding-left:0; 
}
.solution-card .solution-features li { 
    padding-left:18px; 
    text-align:left; 
}
.solution-card .solution-features li::before { 
    display:block; 
    background:#15a28c; 
    opacity:.9; 
}
/* Keep existing hover styles unchanged above; they will override background */

.about-accent-circle {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, #37ec7e, #15a28c 70%);
    filter: blur(40px);
    opacity: 0.4;
    z-index: 0;
}

.about-image-outer {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(34,0,94,0.35), 0 8px 24px rgba(34,0,94,0.2);
}

.about-image-outer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34,0,94,0.15), rgba(21,162,140,0.15));
    z-index: 1;
    opacity: 0;
    transition: opacity .5s ease;
}

.about-image-outer:hover::before { opacity: 1; }

.about-image-outer img.about-image {
    width: 100%;
    display: block;
    transition: transform 1.1s cubic-bezier(.25,1,.5,1), filter .6s ease;
}

.about-image-outer:hover img.about-image {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.1);
}

.about-floating-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(34,0,94,0.85);
    color: #fff;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    letter-spacing: .5px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(34,0,94,0.35);
    z-index: 2;
    animation: floatY 6s ease-in-out infinite;
}

.about-floating-badge i { font-size: 1.1rem; color: #37ec7e; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px);} }

.about-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #210059, #22005e);
    opacity: .15;
    filter: blur(4px);
    animation: pulseShape 10s linear infinite;
    z-index: 0;
}

.about-shape-1 { width: 90px; height: 90px; bottom: 5%; left: -15px; }
.about-shape-2 { width: 60px; height: 60px; top: -10px; right: 10%; animation-delay: -4s; }

@keyframes pulseShape { 0% { transform: scale(1) translateY(0);}50% { transform: scale(1.15) translateY(-8px);}100% { transform: scale(1) translateY(0);} }

.about-content-wrapper { position: relative; z-index: 3; }

.about-heading-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px -10px rgba(21,162,140,.6);
}

.pulse-dot {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    position: relative;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    animation: pulseScale 2.2s ease-out infinite;
}
@keyframes pulseScale { 0% { transform: scale(1); opacity:1;} 70% { transform: scale(2.2); opacity:0;} 100% { opacity:0; transform: scale(2.2);} }

.about-text { font-size: 0.95rem; line-height: 1.65; }
.about-text.lead { font-size: 1rem; }

.vm-card-modern {
    background: #fff;
    border: 1px solid rgba(34,0,94,0.08);
    border-radius: 18px;
    padding: 1.25rem 1.15rem 1.15rem;
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.25,1,.5,1);
    box-shadow: 0 4px 18px -6px rgba(34,0,94,0.15);
}
.vm-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21,162,140,.12), rgba(55,236,126,.15));
    opacity: 0;
    transition: opacity .5s ease;
}
.vm-card-modern:hover::before { opacity: 1; }
.vm-card-modern:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -10px rgba(34,0,94,0.3); }

.vm-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: .6rem;
    color: #15a28c;
}
.vm-card-icon i { line-height: 1; }
.icon-color-vision, .icon-color-mission { color: #15a28c; }

/* Corner overlay creative icon style for About mini cards */
.about-mini-cards .vm-card-modern { padding-top: 2.1rem; }
/* Subtle corner widget icon */
.about-mini-cards .vm-card-modern .vm-card-icon {
    position: absolute;
    top: 8px;
    right: 10px;
    width: auto;
    height: auto;
    margin: 0;
    font-size: 1.9rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    z-index: 3;
    opacity: 1;
    transition: transform .45s ease;
}
.about-mini-cards .vm-card-modern .vm-card-icon i {
    background: linear-gradient(135deg,#37ec7e,#15a28c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    opacity: .95;
    transition: opacity .45s ease, transform .45s ease;
}
.about-mini-cards .vm-card-modern:hover .vm-card-icon { transform: translateY(-2px); }
.about-mini-cards .vm-card-modern:hover .vm-card-icon i { opacity: 1; }
.about-mini-cards .vm-card-modern .vm-card-icon::before {
    display: none !important;
}
/* Remove previous animated glow */
.about-mini-cards .vm-card-modern .vm-card-icon::after { display: none; }
.about-mini-cards .vm-card-modern::after {
    display: none !important;
}
.about-mini-cards .vm-card-modern::before { z-index:1; }
.about-mini-cards .vm-card-modern .vm-card-title { position: relative; z-index: 3; }
.about-mini-cards .vm-card-modern .vm-card-text { position: relative; z-index: 3; }

/* About text: inherit global font, justify (reduced size) */
.about-text { text-align: justify; font-family: inherit; font-size: 0.95rem; line-height: 1.65; }

.vm-card-title { font-size: .95rem; font-weight: 700; letter-spacing: .5px; margin-bottom: .5rem; }
.vm-card-text { font-size: .75rem; line-height: 1.3; opacity: .85; }

.about-stats { position: relative; }
.about-stat { min-width: 140px; }
.stat-value { font-size: 1.6rem; font-weight: 800; background: linear-gradient(135deg, #15a28c, #37ec7e); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* Projects Section Styling */
.projects-section {
    /* ultra-smooth subtle gray background */
    background: linear-gradient(180deg, #fafbfc 0%, #f6f7f8 60%, #f2f3f4 100%) !important;
    position: relative;
    overflow: hidden;
}
.projects-section:before,
.projects-section:after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.9) 0%, rgba(220,224,228,0.15) 70%, rgba(200,205,210,0) 100%);
    pointer-events: none;
    filter: blur(2px);
}
.projects-section:before { top: -160px; left: -120px; }
.projects-section:after { bottom: -180px; right: -140px; }

.projects-section .section-title { position: relative; z-index: 2; }
.projects-section .project-card { position: relative; z-index: 2; }
.stat-label { font-size: .7rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; opacity: .75; }

@media (max-width: 992px) {
    .about-media-wrapper { margin-bottom: 2rem; }
    .about-image-outer { border-radius: 25px; }
    .vm-card-text { font-size: .7rem; }
}

@media (max-width: 576px) {
    .about-stats { gap: 1.5rem !important; }
    .stat-value { font-size: 1.3rem; }
    .vm-card-modern { padding: 1rem; }
    .about-image-outer { border-radius: 22px; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 1rem 0;
    border-radius: 2px;
}

.title-underline.mx-auto {
    margin: 1rem auto;
}

.vision-mission-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e9ecef;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.vm-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Service Cards with Background Images and Same Size */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    height: 450px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="%23e9ecef" opacity="0.3"/><circle cx="80" cy="70" r="1.5" fill="%23e9ecef" opacity="0.4"/><circle cx="50" cy="20" r="1" fill="%23e9ecef" opacity="0.5"/></svg>');
    background-size: cover, 100px 100px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(21, 162, 140, 0.2);
    color: white;
}

.service-icon {
    font-size: 3rem;
    color: #15a28c;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(21, 162, 140, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
}

.service-card:hover .service-icon {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    min-height: 120px;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #15a28c;
    font-weight: bold;
}

.service-card:hover .service-features li::before {
    color: white;
}

.service-card:hover .modern-btn {
    background: white;
    color: #15a28c;
}

.service-card:hover .modern-btn span {
    color: #15a28c;
}

/* Industry Circle Cards with Images and Green Border */
.industry-circle-card {
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.industry-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 4px solid #15a28c;
    box-shadow: 0 10px 30px rgba(21, 162, 140, 0.2);
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.industry-circle-card:hover .industry-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.4);
    border-color: #37ec7e;
}

.industry-circle-card:hover .industry-image {
    transform: scale(1.1);
}

.industry-circle-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.industry-circle-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Feature Cards */
/* Flipping Cards for Why Choose Maharat 71 */
.why-choose-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.flip-card {
    background: transparent;
    width: 180px;
    height: 180px;
    perspective: 1000px;
    margin-bottom: 1rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
        transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        transform-style: preserve-3d;
    }

    .flip-card-inner.flip-touch {
        transform: rotateY(180deg);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 18px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.flip-card-front {
    background: whitesmoke;
    color: #22005e;
    border: 0.1px solid #a2a0a7;
}

.flip-card-back {
    background: #fff;
    color: #22005e;
    transform: rotateY(180deg);
    border: 1px solid #22005e;
}

.flip-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    /* Gradient green theme */
    background: linear-gradient(135deg,#15a28c 0%,#37ec7e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card h5 {
    font-size: 1.01rem;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
    /* Gradient green theme for heading */
    background: linear-gradient(135deg,#15a28c 0%,#37ec7e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.flip-card-back p {
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
}

@media (max-width: 900px) {
    .why-choose-row {
        gap: 1rem;
    }
    .flip-card {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 600px) {
    .why-choose-row {
        flex-wrap: wrap;
        gap: 0.7rem;
    }
    .flip-card {
        width: 100px;
        height: 100px;
    }
    .flip-card h5 {
        font-size: 0.8rem;
    }
    .flip-card .feature-icon {
        font-size: 1.3rem;
    }
}
.feature-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Video Section */
.execution-section { position:relative; overflow:hidden; background:linear-gradient(135deg,#210059 0%,#22005e 50%,#12003e 100%) !important; }
.execution-section::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(255,255,255,0.08),rgba(255,255,255,0)); pointer-events:none; }

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* News Card Modern Design */
.news-card.modern-news-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(34, 0, 94, 0.07);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.news-card.modern-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(34, 0, 94, 0.12);
}

.news-card.modern-news-card .img-fluid {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 0;
}

.news-card.modern-news-card:hover .img-fluid {
  transform: scale(1.07);
}

.news-card.modern-news-card .news-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card.modern-news-card .news-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #22005e;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.news-card.modern-news-card .news-content p {
  font-size: 0.875rem;
  color: #5b5570;
  flex-grow: 1;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.news-card.modern-news-card .news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  color: #fff;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.news-tag-partnership {
  background: linear-gradient(45deg, #007bff, #0056b3);
}

.news-tag-innovation {
  background: linear-gradient(45deg, #15a28c, #37ec7e);
}

.news-tag-update {
  background: linear-gradient(45deg, #ffc107, #d39e00);
}

.news-card.modern-news-card .modern-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Projects Carousel Styles */
.projects-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.projects-carousel {
  display: flex;
  gap: 3rem;
  animation: projectsScroll 25s linear infinite;
  align-items: center;
  padding: 1rem 0;
}

@keyframes projectsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.projects-carousel:hover {
  animation-play-state: paused;
}

.project-card {
  flex: 0 0 auto;
  min-width: 260px;
  height: 260px;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
 
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  background: linear-gradient(135deg, #22005e 0%, #585858 100%);
  padding: 8px;
}

.project-circle:hover {
  box-shadow: 0 25px 50px rgba(34, 0, 94, 0.25);
  transform: scale(1.05);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
  opacity: 0.9;
}

.project-circle:hover .project-image {
  transform: scale(1.1);
  opacity: 0.3;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 0, 94, 0.9), rgba(21, 162, 140, 0.9));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 2rem;
  text-align: center;
}

.project-circle:hover .project-overlay {
  opacity: 1;
}

.project-content {
  color: white;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-circle:hover .project-content {
  transform: translateY(0);
}

.project-content h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.project-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.3;
}

.project-category {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
  .projects-carousel {
    gap: 2rem;
  }
  
  .project-card, 
  .project-circle {
    width: 160px;
    height: 160px;
    min-width: 160px;
  }
  
  .project-content h5 {
    font-size: 1.1rem;
  }
  
  .project-content p {
    font-size: 0.8rem;
  }
  
  .project-category {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .project-card, 
  .project-circle {
    width: 140px;
    height: 140px;
    min-width: 140px;
  }
  
  .projects-carousel {
    gap: 1.5rem;
  }
}.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 2rem;
}

.news-content h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Partners Section */
.partners-carousel {
    overflow: hidden;
    position: relative;
}

.partner-logos {
    display: flex;
    animation: scroll 30s linear infinite;
    align-items: center;
}

.partner-logos img {
    height: 60px;
    margin: 0 2rem;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Partners Grid (3 lines, 8 per line) */
.partners-grid { display:grid; gap:2rem 2.5rem; grid-template-columns:repeat(8,1fr); align-items:center; justify-items:center; }
.partner-item { position:relative; width:100%; display:flex; align-items:center; justify-content:center; padding:.75rem 0; }
.partner-item img { max-height:55px; width:auto; filter:grayscale(100%) brightness(.8); opacity:.75; transition:.35s ease; max-width:100%; }
.partner-item:hover img { filter:grayscale(0%) brightness(1); opacity:1; transform: translateY(-4px) scale(1.05); }
@media (max-width:1400px){ .partners-grid { grid-template-columns:repeat(6,1fr);} }
@media (max-width:992px){ .partners-grid { grid-template-columns:repeat(4,1fr); gap:1.5rem 1.75rem; } .partner-item img { max-height:48px; } }
@media (max-width:576px){ .partners-grid { grid-template-columns:repeat(3,1fr); gap:1.25rem 1rem; } .partner-item img { max-height:42px; } }
/* Make partners section heading less bold only in that section */
.partners-section .section-title { font-weight:200; font-size:1.9rem !important; }
/* Global home page section title weight adjustment */
.section-title { font-weight:400 !important; }
/* Keep quote section title bold */
.quote-section .section-title { font-weight:700 !important; }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer - PROPER PURPLE BACKGROUND */
.footer {
    background: #22005e !important;
    position: relative;
    overflow: hidden;
    color: #fff !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(21, 162, 140, 0.1) 50%),
        linear-gradient(45deg, transparent 30%, rgba(55, 236, 126, 0.05) 30%, rgba(55, 236, 126, 0.05) 70%, transparent 70%);
    background-size: 100px 100px, 150px 150px;
    animation: techWave 15s linear infinite;
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(21, 162, 140, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(55, 236, 126, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 30%);
    animation: techPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes techWave {
    0% { 
        background-position: 0px 0px, 0px 0px;
        opacity: 0.3;
    }
    50% { 
        background-position: 100px 50px, 75px 75px;
        opacity: 0.6;
    }
    100% { 
        background-position: 200px 100px, 150px 150px;
        opacity: 0.3;
    }
}

@keyframes techPulse {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff !important;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-links a:hover {
    color: #37ec7e !important;
    padding-left: 8px;
    transform: translateX(5px);
}

.social-links {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.contact-info {
    color: #fff !important;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: #37ec7e;
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 25px;
}

.contact-item a {
    color: #fff !important;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #37ec7e !important;
}

.contact-item strong {
    color: #fff !important;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(21, 162, 140, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

/* Modern Circular Progress Indicators */
.circular-progress {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--gradient-primary) 0deg, #e9ecef 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
}

.circular-progress span {
    position: relative;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* Modern Card Hover Effects */
.modern-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.modern-card:hover::before {
    opacity: 0.05;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Glass Morphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }
    
    .service-card,
    .industry-card,
    .feature-card {
        margin-bottom: 1.5rem;
        padding: 2rem;
    }
    
    .partner-logos img {
        height: 40px;
        margin: 0 1rem;
    }
    
    /* Keep circles visible on mobile */
    .circle {
        display: block !important;
    }
    
    .circle-1 {
        width: 100px;
        height: 100px;
        top: -50px;
        right: -50px;
    }
    
    .circle-2 {
        width: 70px;
        height: 70px;
        bottom: -35px;
        left: -35px;
    }
    
    .circle-3 {
        width: 50px;
        height: 50px;
        right: -25px;
    }
    
    .circle-4 {
        width: 40px;
        height: 40px;
        left: -20px;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .contact-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .service-card,
    .industry-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.loading.loaded {
    opacity: 1;
}

/* Modern Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(21, 162, 140, 0.25);
    border-color: #15a28c;
}

/* Quote Form Section */
.quote-section {
    background: var(--footer-bg);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.quote-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.quote-form .form-floating {
    margin-bottom: 0;
}

.quote-form .form-control,
.quote-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: var(--dark-color);
    font-weight: 500;
    padding: 1rem 0.75rem;
    transition: var(--transition);
}

/* Pill Select Override */
.quote-form .pill-select.form-select {
    border-radius: 50px;
    padding: 0.95rem 1.25rem;
    height: auto;
    background: #fff;
    border:1px solid #b8c2cc;
    font-weight:500;
    font-size:.9rem;
    color:#2d3436;
    box-shadow: 0 2px 4px rgba(0,0,0,.04) inset, 0 1px 2px rgba(0,0,0,.06);
    appearance:none;
    -webkit-appearance:none;
    position:relative;
    background-image: none;
}

.quote-form .pill-select.form-select:focus {
    background:#fff;
    border-color:#15a28c;
    box-shadow:0 0 0 3px rgba(21,162,140,.25);
}

/* Custom arrow using pseudo element wrapper */
.quote-form .pill-select.form-select::-ms-expand { display:none; }
.quote-form .pill-select.form-select {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%2322005e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 18px center/18px 18px;
    padding-right:3.2rem;
}

/* Placeholder (empty first option) color */
.quote-form select.pill-select option[value=""] { color:#889096; }

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(21, 162, 140, 0.25);
    color: var(--dark-color);
}

.quote-form label {
    color: rgba(45, 52, 54, 0.7);
    font-weight: 500;
}

.quote-form .form-control:focus ~ label,
.quote-form .form-control:not(:placeholder-shown) ~ label,
.quote-form .form-select:focus ~ label,
.quote-form .form-select:not([value=""]) ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.quote-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.quote-form .btn-gradient {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}
/* Modern Button Styles */
.modern-btn {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 1rem 2.5rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.modern-btn span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(21, 162, 140, 0.4);
    color: white;
}

.modern-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #37ec7e 0%, #15a28c 100%);
    z-index: 0;
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    transform: scaleX(0);
    transform-origin: left;
}

.modern-btn:hover::before {
    transform: scaleX(1);
}

.modern-btn-outline {
    background: transparent;
    border: 2px solid #37ec7e;
    color: white;
}

.modern-btn-outline:hover {
    background: #37ec7e;
    color: var(--dark-color);
}

.hero-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    margin: 0.5rem;
}
/* Modern Typography Scale */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Execution Section Gradient Override (ensure visible linear gradient & larger height) */
.execution-section {
    background: linear-gradient(135deg,#210059 0%, #22005e 45%, #15a28c 100%) !important;
    padding: 5rem 0 !important; /* increase vertical space */
    min-height: 600px; /* ensure taller background */
    display: flex;
    align-items: center; /* vertically center content */
}

/* Quote split layout */
.quote-split { background: linear-gradient(135deg,#210059 0%,#22005e 60%,#12003e 100%) !important; position:relative; }
.quote-split .title-underline { margin-left:0; }
.quote-image-wrapper { min-height: 100%; aspect-ratio: 16/13; background:#12003e; }
.quote-side-image { object-fit: cover; filter:brightness(.82) saturate(1.05); transition: transform 1.2s ease, filter .8s ease; }
.quote-image-wrapper:hover .quote-side-image { transform: scale(1.06); filter:brightness(.9) saturate(1.15); }
.quote-image-overlay { position:absolute; inset:0; background:radial-gradient(circle at 30% 40%,rgba(21,162,140,.35),transparent 55%), linear-gradient(145deg,rgba(18,0,62,.65),rgba(18,0,62,.2)); mix-blend-mode: overlay; }
.quote-image-content h3 { font-size:1.6rem; }
@media (max-width: 991.98px){
    .quote-image-wrapper { aspect-ratio: 16/10; margin-top:2rem; }
}

/* Smaller button variant for execution section */
.modern-btn-sm {
    padding: 0.55rem 1.25rem !important;
    font-size: 0.8rem !important;
    letter-spacing: .05rem;
}
/* Principal (hero) button hover text color */
.hero-btn:hover span, .hero-btn:hover { color:#22005e !important; }
/* Slightly smaller ABOUT US heading */
.about-section .section-title { font-size:2.1rem !important; }
@media (max-width: 768px){ .about-section .section-title { font-size:1.8rem !important; } }

/* About Page Specific Styles */

/* Hero About Section */
.hero-about {
    background: linear-gradient(135deg, #22005e 0%, #22005e 50%, #22005e 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="70" r="1.5" fill="%23ffffff" opacity="0.15"/><circle cx="50" cy="20" r="1" fill="%23ffffff" opacity="0.2"/></svg>') repeat;
    animation: techFloat 20s linear infinite;
    z-index: 1;
}

.hero-stats {
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Section Badge */
.section-badge {
    display: inline-block;
}

.section-badge span {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Feature Points */
.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-point .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-bottom: 0;
}

.feature-point h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Vision Mission Large Cards */
.vm-card-large {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(21, 162, 140, 0.1);
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vm-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vm-card-large:hover::before {
    transform: scaleX(1);
}

.vm-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(21, 162, 140, 0.2);
}

.vm-card-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.vision-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.mission-icon {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
}

.vm-card-title-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.vm-card-text-large {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5b5570;
    margin-bottom: 2rem;
}

.vm-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.vm-feature i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Values Section */
.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(21, 162, 140, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(21, 162, 140, 0.05) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.value-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(20px, 20px);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(21, 162, 140, 0.15);
    border-color: rgba(21, 162, 140, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #5b5570;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Leadership Team Section */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 162, 140, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(21, 162, 140, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(21, 162, 140, 0.9), rgba(55, 236, 126, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.team-bio {
    color: #5b5570;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Company Statistics */
.company-stats {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23ffffff" opacity="0.15"/></svg>') repeat;
    animation: statsFloat 15s linear infinite;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #37ec7e;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #37ec7e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Why Choose About Section */
.why-choose-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(21, 162, 140, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    position: relative;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #15a28c, #37ec7e);
    border-radius: 2px;
    transition: height 0.4s ease;
}

.why-choose-card:hover::before {
    height: 100%;
}

.why-choose-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-choose-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: #5b5570;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA About Section */
.cta-about {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 100,50 50,100 0,50" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
    animation: ctaPattern 20s linear infinite;
}

.modern-btn-white {
    background: white;
    color: var(--primary-color);
}

.modern-btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

/* Animations */
@keyframes techFloat {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

@keyframes statsFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -25px) rotate(360deg); }
}

@keyframes ctaPattern {
    0% { background-position: 0 0; }
    100% { background-position: 100px 50px; }
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .hero-about .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .vm-card-large {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .vm-card-title-large {
        font-size: 1.5rem;
    }
    
    .team-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-about .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .value-card,
    .why-choose-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .vm-card-large {
        padding: 1.5rem;
    }
    
    .vm-card-text-large {
        font-size: 1rem;
    }
    
    .team-image {
        height: 220px;
    }
    
    .cta-about .row {
        text-align: center;
    }
    
    .cta-about .col-lg-4 {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-about .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats .row {
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .value-card,
    .why-choose-card,
    .vm-card-large {
        padding: 1.5rem 1rem;
    }
    
    .modern-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===========================
   CONTACT PAGE STYLES
=========================== */

/* Contact Hero Section */
.hero-contact {
    background: linear-gradient(115deg, #22005e 30%, #22005e 50%, #22005e 100%);
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes particleMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-200px) translateY(-200px); }
}

.hero-contact-info {
    margin-top: 3rem;
}

.hero-contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.hero-contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-contact-item .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
    transition: var(--transition);
}

.hero-contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.contact-text .contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-text .contact-value {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(21, 162, 140, 0.1);
}

.contact-form-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form {
    position: relative;
}

.contact-form .form-floating {
    position: relative;
}

.contact-form .form-control,
.contact-form .form-select {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: var(--transition);
    min-height: 60px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: #fff;
    border-color: #15a28c;
    box-shadow: 0 0 0 0.2rem rgba(21, 162, 140, 0.1);
    outline: none;
}

.contact-form .form-floating label {
    color: #666;
    font-weight: 500;
    transition: var(--transition);
    padding: 0 0.5rem;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-select:focus ~ label,
.contact-form .form-floating > .form-select:not([value=""]) ~ label {
    color: #15a28c;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .form-check-input {
    border-color: #15a28c;
    border-width: 2px;
}

.contact-form .form-check-input:checked {
    background-color: #15a28c;
    border-color: #15a28c;
}

.contact-form .form-check-label {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form .form-check-label a {
    color: #15a28c;
    text-decoration: none;
    font-weight: 500;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #fff;
}

.contact-info-content h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-social {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.contact-social h6 {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px);
}

/* Office Location Section */
.office-location {
    padding: 6rem 0;
}

.office-info-wrapper {
    padding: 0 1rem;
}

.office-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(21, 162, 140, 0.1);
    text-align: center;
}

.office-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.office-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.office-address {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.office-details {
    text-align: left;
}

.office-detail-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.office-detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #15a28c;
    font-size: 1.1rem;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.detail-value {
    color: #666;
    font-size: 0.95rem;
}

.office-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Map Section */
.map-wrapper {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 162, 140, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.map-overlay:hover {
    background: rgba(21, 162, 140, 0.95);
}

.map-content {
    text-align: center;
    color: #fff;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.map-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.map-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item .accordion-button {
    background: #fff;
    border: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    color: #fff;
    border-color: transparent;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-item .accordion-button::after {
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.faq-item .accordion-button.collapsed::after {
    filter: none;
}

.faq-item .accordion-body {
    padding: 1.5rem 2rem 2rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

/* CTA Contact Section */
.cta-contact {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
    overflow: hidden;
}

.cta-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Modern Button Variants */
.modern-btn-outline {
    background: transparent;
    color: #15a28c;
    border: 2px solid #15a28c;
}

.modern-btn-outline:hover {
    background: #15a28c;
    color: #fff;
    border-color: #15a28c;
}

.modern-btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive Design - Contact Page */
@media (max-width: 992px) {
    .contact-info-sidebar {
        margin-top: 3rem;
        position: static;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .office-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-contact .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-contact-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    .office-actions {
        justify-content: center;
    }
    
    .office-actions .modern-btn {
        flex: 1;
        max-width: 200px;
    }
    
    .faq-item .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item .accordion-body {
        padding: 1.2rem 1.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-contact .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-contact-info .row {
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .contact-info-card {
        padding: 1rem;
    }
    
    .office-card {
        padding: 1rem;
    }
    
    .office-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .map-content h5 {
        font-size: 1.2rem;
    }
    
    .map-content p {
        font-size: 0.9rem;
    }
}

/* ===========================
   LEGAL PAGES STYLES (TERMS & PRIVACY)
=========================== */

/* Legal Hero Sections */
.hero-terms,
.hero-privacy {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 50%, #37ec7e 100%);
    position: relative;
    overflow: hidden;
}

.hero-terms::before,
.hero-privacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Legal Pattern Backgrounds */
.hero-legal-pattern,
.hero-privacy-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px);
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-legal-info {
    margin-top: 3rem;
}

.hero-legal-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.hero-legal-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-legal-item .legal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
    transition: var(--transition);
}

.hero-legal-item:hover .legal-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.legal-text .legal-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.legal-text .legal-value {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Legal Content Sections */
.terms-content-section,
.privacy-content-section {
    padding: 6rem 0;
}

/* Legal Navigation */
.terms-navigation,
.privacy-navigation {
    position: sticky;
    top: 2rem;
}

.nav-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(21, 162, 140, 0.1);
}

.nav-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.terms-nav,
.privacy-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.terms-nav .nav-link,
.privacy-nav .nav-link {
    color: #666;
    text-decoration: none;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
    position: relative;
}

.terms-nav .nav-link:hover,
.privacy-nav .nav-link:hover {
    background: #f8f9fa;
    color: #15a28c;
    border-left-color: #15a28c;
}

.terms-nav .nav-link.active,
.privacy-nav .nav-link.active {
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    color: #fff;
    border-left-color: transparent;
}

/* Legal Content */
.terms-content,
.privacy-content {
    padding: 0 2rem;
}

.terms-section,
.privacy-section {
    margin-bottom: 4rem;
    scroll-margin-top: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.section-header h2 {
    color: #333;
    font-weight: 700;
    margin: 0;
    font-size: 1.8rem;
}

.section-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Highlight and Info Boxes */
.highlight-box,
.warning-box,
.security-note,
.privacy-principles {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid #15a28c;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-box {
    background: #fff3cd;
    border-color: #ffeaa7;
    border-left-color: #f39c12;
}

.highlight-box i,
.warning-box i,
.security-note i {
    font-size: 1.5rem;
    color: #15a28c;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.warning-box i {
    color: #f39c12;
}

.highlight-box h6,
.warning-box h6,
.security-note h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-box p,
.warning-box p,
.security-note p {
    margin: 0;
    color: #666;
}

/* Privacy Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.principle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.principle-item i {
    font-size: 2rem;
    color: #15a28c;
    margin-bottom: 0.5rem;
}

.principle-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: #15a28c;
    margin-bottom: 1rem;
}

.service-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Custom Lists */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.custom-list li::before {
    content: '\ea5e';
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 0;
    color: #15a28c;
    font-weight: 600;
}

/* Payment Terms Grid */
.payment-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.payment-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.payment-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.payment-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.payment-item h6 i {
    color: #15a28c;
    margin-right: 0.5rem;
}

.payment-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* IP Categories */
.ip-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.ip-category {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.ip-category h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.ip-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ip-category ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.ip-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #15a28c;
    font-weight: bold;
}

/* Confidentiality Grid */
.confidentiality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.conf-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.conf-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.conf-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.conf-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.conf-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Warranty Sections */
.warranty-section,
.disclaimer-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.warranty-title,
.disclaimer-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.warranty-list {
    list-style: none;
    padding: 0;
}

.warranty-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.warranty-list li::before {
    content: '\ea5e';
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: 600;
}

/* Liability Exclusions */
.liability-exclusions {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.liability-exclusions h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.liability-exclusions ul {
    list-style: none;
    padding: 0;
}

.liability-exclusions ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.liability-exclusions ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    top: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Legal Contact Info */
.legal-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.contact-method i {
    font-size: 1.5rem;
    color: #15a28c;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.contact-method h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Privacy Specific Styles */
.info-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-category {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.info-category:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.category-header i {
    font-size: 1.8rem;
    color: #15a28c;
    margin-right: 1rem;
}

.category-header h6 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.info-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-category ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.info-category ul li::before {
    content: '\ea5e';
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 0;
    color: #15a28c;
    font-weight: 600;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.usage-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
    text-align: center;
}

.usage-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.usage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.usage-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.usage-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.security-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.security-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.security-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.security-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.right-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.right-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.right-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.right-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Rights Exercise */
.rights-exercise {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.rights-exercise h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rights-exercise p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.cookie-type:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-type h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.cookie-type h6 i {
    color: #15a28c;
    margin-right: 0.5rem;
}

.cookie-type p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Cookie Control */
.cookie-control {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.cookie-control h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cookie-control p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Privacy Contact Grid */
.privacy-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.privacy-contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.privacy-contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-contact-card .contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-contact-card .contact-header i {
    font-size: 1.8rem;
    color: #15a28c;
    margin-right: 1rem;
}

.privacy-contact-card .contact-header h6 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Regulatory Info */
.regulatory-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.regulatory-info h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.regulatory-info p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* CTA Legal Section */
.cta-legal {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
    overflow: hidden;
}

.cta-legal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Responsive Design - Legal Pages */
@media (max-width: 1200px) {
    .terms-content,
    .privacy-content {
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .terms-navigation,
    .privacy-navigation {
        margin-bottom: 3rem;
        position: static;
    }
    
    .nav-card {
        padding: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .section-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .payment-terms-grid,
    .confidentiality-grid,
    .usage-grid,
    .security-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-terms .hero-title,
    .hero-privacy .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-legal-item {
        padding: 1.5rem 1rem;
    }
    
    .terms-content-section,
    .privacy-content-section {
        padding: 4rem 0;
    }
    
    .terms-content,
    .privacy-content {
        padding: 0;
    }
    
    .nav-card {
        padding: 1rem;
    }
    
    .section-content {
        font-size: 0.95rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .info-categories,
    .ip-categories,
    .legal-contact-info,
    .privacy-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-terms .hero-title,
    .hero-privacy .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-legal-info .row {
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-item,
    .payment-item,
    .usage-item,
    .security-item,
    .conf-item {
        padding: 1.5rem;
    }
    
    .highlight-box,
    .warning-box,
    .security-note {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .right-item {
        flex-direction: column;
        text-align: center;
    }
    
    .right-icon {
        align-self: center;
    }
}

/* ===========================
   M71 CAREER PAGE STYLES
=========================== */

/* Career Hero Section */
.hero-career {
    background: linear-gradient(135deg, #22005e 0%, #22005e 30%, #22005e 100%);
    position: relative;
    overflow: hidden;
}

.hero-career::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-career-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 42%, rgba(255,255,255,0.1) 44%, transparent 46%),
        linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.1) 42%, rgba(255,255,255,0.1) 44%, transparent 46%);
    background-size: 20px 20px;
    animation: careerPatternMove 25s linear infinite;
}

@keyframes careerPatternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(40px); }
}

.career-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-career-stats {
    margin-top: 3rem;
}

.hero-career-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.hero-career-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-career-item .career-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
    transition: var(--transition);
}

.hero-career-item:hover .career-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.career-text .career-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.career-text .career-value {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Why Join Us Section */
.why-join-us {
    padding: 6rem 0;
}

.why-join-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-accent-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(21, 162, 140, 0.1) 0%, rgba(55, 236, 126, 0.1) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.career-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.career-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.career-image:hover {
    transform: scale(1.05);
}

.career-floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(21, 162, 140, 0.95);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.career-shape {
    position: absolute;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    border-radius: 50%;
    z-index: -2;
}

.career-shape-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    opacity: 0.3;
}

.career-shape-2 {
    width: 120px;
    height: 120px;
    bottom: -60px;
    right: -60px;
    opacity: 0.2;
}

.why-join-content {
    padding: 0 2rem;
}

.why-join-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.why-join-benefits {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.benefit-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Open Positions Section */
.open-positions {
    padding: 6rem 0;
}

.position-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.position-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    border-color: rgba(21, 162, 140, 0.2);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.position-category {
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.position-status {
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.position-status.available {
    background: #d4edda;
    color: #155724;
}

.position-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.position-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.position-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

.detail-item i {
    color: #15a28c;
    font-size: 1rem;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.skill-tag {
    background: #f8f9fa;
    color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
    font-weight: 500;
}

/* Company Culture Section */
.company-culture {
    padding: 6rem 0;
}

.culture-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: var(--transition);
    height: 100%;
}

.culture-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #fff;
    transition: var(--transition);
}

.culture-card:hover .culture-icon {
    transform: scale(1.1) rotate(5deg);
}

.culture-card h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.culture-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
}

.benefits-category {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: var(--transition);
}

.benefits-category:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.benefits-category h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.benefits-category h4 i {
    color: #15a28c;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item-small {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item-small:hover {
    background: #e9ecef;
}

.benefit-item-small i {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item-small span {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Application Form Section */
.application-form-section {
    padding: 6rem 0;
}

.application-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(21, 162, 140, 0.1);
}

.career-application-form {
    position: relative;
}

.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #15a28c;
}

.form-section-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.form-section-title i {
    color: #15a28c;
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

.career-application-form .form-floating {
    position: relative;
}

.career-application-form .form-control,
.career-application-form .form-select {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: var(--transition);
    min-height: 60px;
}

.career-application-form .form-control:focus,
.career-application-form .form-select:focus {
    background: #fff;
    border-color: #15a28c;
    box-shadow: 0 0 0 0.2rem rgba(21, 162, 140, 0.1);
    outline: none;
}

.career-application-form .form-floating label {
    color: #666;
    font-weight: 500;
    transition: var(--transition);
    padding: 0 0.5rem;
}

.career-application-form .form-floating > .form-control:focus ~ label,
.career-application-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.career-application-form .form-floating > .form-select:focus ~ label,
.career-application-form .form-floating > .form-select:not([value=""]) ~ label {
    color: #15a28c;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.career-application-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    padding: 2rem;
    border: 2px dashed #e9ecef;
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.file-upload-label:hover {
    border-color: #15a28c;
    background: #f8f9fa;
}

.file-upload-label.file-selected {
    border-color: #28a745;
    background: #d4edda;
}

.file-upload-label i {
    font-size: 2rem;
    color: #15a28c;
    margin-bottom: 1rem;
}

.file-upload-text {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.file-upload-subtext {
    color: #666;
    font-size: 0.85rem;
}

.file-upload-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-feedback {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.file-upload-feedback.success {
    color: #28a745;
}

.file-upload-feedback.error {
    color: #dc3545;
}

/* Consent Checkboxes */
.consent-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-application-form .form-check {
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.career-application-form .form-check:hover {
    background: #f8f9fa;
}

.career-application-form .form-check-input {
    border-color: #15a28c;
    border-width: 2px;
    width: 1.2em;
    height: 1.2em;
}

.career-application-form .form-check-input:checked {
    background-color: #15a28c;
    border-color: #15a28c;
}

.career-application-form .form-check-label {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-left: 0.5rem;
}

.career-application-form .form-check-label a {
    color: #15a28c;
    text-decoration: none;
    font-weight: 500;
}

.career-application-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Form Submit Section */
.form-submit-section {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.submit-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* CTA Career Section */
.cta-career {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
    overflow: hidden;
}

.cta-career::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Responsive Design - Career Page */
@media (max-width: 1200px) {
    .why-join-content {
        padding: 0 1rem;
    }
    
    .application-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .why-join-us {
        padding: 4rem 0;
    }
    
    .why-join-media {
        margin-bottom: 3rem;
    }
    
    .career-image {
        height: 300px;
    }
    
    .position-card {
        padding: 2rem;
    }
    
    .culture-card,
    .benefits-category {
        padding: 2rem;
    }
    
    .application-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-career .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-career-item {
        padding: 1.5rem 1rem;
    }
    
    .why-join-us,
    .open-positions,
    .company-culture,
    .benefits-section,
    .application-form-section {
        padding: 4rem 0;
    }
    
    .why-join-content {
        padding: 0;
    }
    
    .position-details {
        gap: 0.5rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    .position-skills {
        gap: 0.3rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .culture-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .application-form-wrapper {
        padding: 1rem;
    }
    
    .form-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .form-section-title {
        font-size: 1.1rem;
    }
    
    .file-upload-label {
        min-height: 100px;
        padding: 1.5rem;
    }
    
    .file-upload-label i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-career .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-career-stats .row {
        gap: 1rem;
    }
    
    .career-image {
        height: 250px;
    }
    
    .career-floating-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .position-card {
        padding: 1.5rem;
    }
    
    .position-title {
        font-size: 1.2rem;
    }
    
    .culture-card,
    .benefits-category {
        padding: 1.5rem;
    }
    
    .benefits-category h4 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefit-item-small {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .form-section {
        padding: 0.8rem;
    }
    
    .form-section-title {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .file-upload-label {
        min-height: 80px;
        padding: 1rem;
    }
    
    .consent-checkboxes .form-check {
        padding: 0.8rem;
    }
    
    .form-check-label {
        font-size: 0.9rem;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.hero-services {
    background: linear-gradient(135deg, #22005e 0%, #22005e 50%, #22005e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(55, 236, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(21, 162, 140, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(34, 0, 94, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    33% { transform: translateX(-20px) translateY(-10px); }
    66% { transform: translateX(20px) translateY(10px); }
}

.services-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.services-badge i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.hero-services-stats {
    margin-top: 3rem;
}

.hero-service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-service-item .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #37ec7e, #15a28c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(21, 162, 140, 0.3);
}

.hero-service-item .service-text {
    color: white;
}

.hero-service-item .service-label {
    display: block;
    font-size: 1rem;
    opacity: 1;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero-service-item .service-value {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-timeline {
    position: relative;
    margin-top: 5rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(21, 162, 140, 0.3) 0%, rgba(55, 236, 126, 0.4) 50%, rgba(21, 162, 140, 0.3) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 0;
}

.service-timeline-item {
    position: relative;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.service-timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-timeline-item:nth-child(even) .service-timeline-content {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.marker-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(21, 162, 140, 0.3);
    border: 4px solid white;
}

.marker-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #15a28c;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #f0f0f0;
}

.service-timeline-content {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.service-info {
    padding: 2rem;
}

.service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #22005e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: justify;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: #333;
}

.feature-item i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 162, 140, 0.3);
}

.service-visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-visual:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 162, 140, 0.8), rgba(55, 236, 126, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-visual:hover .service-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.service-visual:hover .overlay-icon {
    transform: scale(1);
}

.service-action {
    margin-top: 2rem;
}

.service-action .modern-btn-outline {
    background: transparent;
    color: #15a28c;
    border: 2px solid #15a28c;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-action .modern-btn-outline:hover {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21, 162, 140, 0.3);
}

/* Modern Tech Services Section */
.modern-tech-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.modern-service-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.modern-service-card:hover::before {
    transform: scaleX(1);
    z-index: 2;
}

.modern-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: #15a28c;
}

/* Hover Background Image Effect */
.modern-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--service-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: all 0.5s ease;
    border-radius: 25px;
}

.modern-service-card:hover::after {
    opacity: 0.15;
}

/* Ensure content stays above background */
.service-header,
.service-content {
    position: relative;
    z-index: 3;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.3);
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #15a28c;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.modern-service-card:hover .service-icon-modern {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.3);
}

.service-content h4 {
    color: #22005e;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.modern-service-card:hover .feature-tag {
    background: linear-gradient(135deg, rgba(21, 162, 140, 0.1), rgba(55, 236, 126, 0.05));
    color: #15a28c;
    border-color: #15a28c;
}

.service-tech-brands {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-tech-brands small {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-cta {
    color: #15a28c;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-cta:hover {
    color: #37ec7e;
    transform: translateX(5px);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(3px);
}

/* Featured Service */
.featured-service {
    background: linear-gradient(135deg, #22005e, #3e0d93);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.featured-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    font-weight: 600;
    opacity: 0.9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-service h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-service p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.featured-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.tech-item i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.tech-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.featured-service-action {
    text-align: right;
}

.modern-btn-primary {
    background: white;
    color: #15a28c;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Modern Services */
@media (max-width: 992px) {
    .featured-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-service-action {
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .modern-service-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .service-header {
        justify-content: center;
        text-align: center;
    }
    
    .featured-service {
        padding: 2rem;
        text-align: center;
    }
    
    .featured-service h3 {
        font-size: 1.8rem;
    }
    
    .tech-item {
        justify-content: center;
        text-align: center;
    }
}

/* ===== AV & DISPLAY SYSTEMS PAGE STYLES ===== */

/* AV Hero Section */
.hero-av-systems {
    background: linear-gradient(135deg, #22005e 0%, #22005e 50%, #22005e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-av-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 40%, rgba(55, 236, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(21, 162, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(34, 0, 94, 0.12) 0%, transparent 50%);
    animation: avPatternMove 25s ease-in-out infinite;
}

@keyframes avPatternMove {
    0%, 100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    33% { transform: translateX(-30px) translateY(-15px) rotate(1deg); }
    66% { transform: translateX(30px) translateY(15px) rotate(-1deg); }
}

.av-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-av-features {
    margin-top: 3rem;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

.hero-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #37ec7e, #15a28c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.3);
}

.hero-feature-card h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.hero-feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* AV Systems Section */
.av-systems-section {
    padding: 100px 0;
    background: white;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid #dee2e6;
}

.section-badge span:first-child {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.section-badge span:last-child {
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.solution-features .feature-item:hover {
    background: white;
    border-color: #15a28c;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.3);
}

.feature-content h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.av-visual {
    position: relative;
}

.av-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.av-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.av-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 162, 140, 0.8), rgba(55, 236, 126, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.av-image-container:hover .av-overlay {
    opacity: 1;
}

.av-image-container:hover .av-image {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.av-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    flex: 1;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #15a28c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #666;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Smart Board Section */
.smart-board-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    border-color: #15a28c;
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(21, 162, 140, 0.3);
}

.highlight-content h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.smart-board-specs {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 600;
}

.spec-item i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.smart-board-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.board-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.board-screen {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid #333;
}

.screen-content {
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
}

.content-header {
    background: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
}

.header-dots {
    display: flex;
    gap: 0.5rem;
}

.header-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.header-dots span:nth-child(1) { background: #ff5f57; }
.header-dots span:nth-child(2) { background: #ffbd2e; }
.header-dots span:nth-child(3) { background: #28ca42; }

.header-title {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.content-body {
    padding: 2rem;
    position: relative;
}

.touch-points {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.touch-point {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(21, 162, 140, 0.4);
    animation: touchPulse 2s infinite;
}

@keyframes touchPulse {
    0% { box-shadow: 0 0 0 0 rgba(21, 162, 140, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(21, 162, 140, 0); }
    100% { box-shadow: 0 0 0 0 rgba(21, 162, 140, 0); }
}

.interface-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.element-bar {
    height: 12px;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-radius: 6px;
    opacity: 0.8;
}

.element-bar:first-child {
    width: 70%;
}

.element-bar:nth-child(2) {
    width: 45%;
}

.element-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    align-self: flex-end;
    opacity: 0.8;
}

/* Digital Signage Section */
.digital-signage-section {
    padding: 100px 0;
    background: white;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: white;
    border-color: #15a28c;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-header i {
    font-size: 1.5rem;
    color: #15a28c;
}

.benefit-header h6 {
    color: #22005e;
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.signage-applications h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.app-tag {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.app-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.3);
}

.signage-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signage-displays {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.display-screen {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 6px solid #333;
    margin-bottom: 1rem;
}

.main-display .screen-content {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    min-height: 250px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.time-widget, .weather-widget {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-widget i {
    color: #ffa500;
}

.news-ticker {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.content-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.content-card h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.content-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-card li {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.content-card li:before {
    content: '•';
    color: #15a28c;
    position: absolute;
    left: 0;
}

.content-card p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.secondary-display {
    width: 60%;
    margin-left: auto;
    transform: translateY(-20px);
}

.mini-content {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Vendors Section */
.vendors-section {
    padding: 80px 0;
}

.vendors-grid {
    margin-top: 3rem;
}

.vendor-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.vendor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #15a28c;
}

.vendor-logo {
    width: 180px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.vendor-card:hover .vendor-logo {
    filter: grayscale(0%);
}

.vendor-card h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.vendor-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* AV CTA Section */
.av-cta-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    overflow: hidden;
}

.av-cta-section .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(55, 236, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(21, 162, 140, 0.15) 0%, transparent 50%);
}

.av-cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.av-cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* AV Responsive Design */
@media (max-width: 992px) {
    .av-stats {
        flex-direction: column;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .signage-displays {
        max-width: 350px;
    }
    
    .vendors-grid .row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-av-systems h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-av-features {
        margin-top: 2rem;
    }
    
    .hero-feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .av-systems-section,
    .smart-board-section,
    .digital-signage-section {
        padding: 60px 0;
    }
    
    .solution-features .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .board-screen {
        padding: 1rem;
    }
    
    .screen-content {
        min-height: 200px;
    }
    
    .content-body {
        padding: 1rem;
    }
    
    .application-tags {
        justify-content: center;
    }
    
    .signage-displays {
        max-width: 280px;
    }
    
    .vendor-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .av-cta-section h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .av-cta-section .col-lg-4 {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    .modern-btn {
        display: block;
        margin-bottom: 1rem;
    }
}

/* ===== DIGITAL INFRASTRUCTURE PAGE STYLES ===== */

/* Digital Infrastructure Hero Section */
.hero-digital-infrastructure {
    background: linear-gradient(135deg, #22005e 0%, #22005e 50%, #22005e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-digital-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(55, 236, 126, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(21, 162, 140, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 0, 94, 0.1) 0%, transparent 50%);
    animation: digitalPatternMove 30s ease-in-out infinite;
}

@keyframes digitalPatternMove {
    0%, 100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    25% { transform: translateX(-20px) translateY(-10px) rotate(0.5deg); }
    50% { transform: translateX(20px) translateY(10px) rotate(-0.5deg); }
    75% { transform: translateX(-15px) translateY(5px) rotate(0.3deg); }
}

.digital-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-digital-features {
    margin-top: 3rem;
}

/* Networks Section */
.networks-section {
    padding: 100px 0;
    background: white;
}

/* Text Justification for Digital Infrastructure */
.networks-section p,
.security-section p,
.cabling-section p,
.devices-section p,
.printing-section p,
.digital-cta-section p,
.hero-digital-infrastructure p {
    text-align: justify;
}

.section-description,
.hero-subtitle,
.achievement-card p,
.feature-content p,
.benefit-content p,
.category-header + p,
.highlight-content p {
    text-align: justify;
}

.networks-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.network-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin-bottom: 2rem;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.router-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 0.5rem;
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.4);
    animation: routerPulse 3s ease-in-out infinite;
}

@keyframes routerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.network-label {
    font-weight: 600;
    color: #22005e;
    font-size: 0.9rem;
}

.network-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.connection-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(21, 162, 140, 0.1);
    border: 2px solid #15a28c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #15a28c;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.3);
}

.connection-node:nth-child(1) { top: 20px; left: 50%; transform: translateX(-50%); }
.connection-node:nth-child(2) { top: 50%; right: 20px; transform: translateY(-50%); }
.connection-node:nth-child(3) { bottom: 20px; left: 50%; transform: translateX(-50%); }
.connection-node:nth-child(4) { top: 50%; left: 20px; transform: translateY(-50%); }

.connection-node:hover {
    background: #15a28c;
    color: white;
    transform: scale(1.1);
}

.connection-node::after {
    content: attr(data-type);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #22005e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.connection-node:hover::after {
    opacity: 1;
    top: -35px;
}

/* Network Stats */
.network-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.network-stats .stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(21, 162, 140, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 85px;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.network-stats .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.2);
    border-color: #15a28c;
}

.network-stats .stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #15a28c;
    margin-bottom: 3px;
    line-height: 1;
}

.network-stats .stat-label {
    font-size: 10px;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

.achievement-highlight {
    margin-top: 2rem;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(21, 162, 140, 0.1), rgba(55, 236, 126, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(21, 162, 140, 0.2);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.achievement-header i {
    font-size: 1.5rem;
    color: #15a28c;
}

.achievement-header h6 {
    color: #22005e;
    font-weight: 700;
    margin: 0;
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #15a28c;
}

.security-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.3);
}

.security-item h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.security-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.additional-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feature-tag {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.3);
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    position: relative;
    width: 300px;
    height: 300px;
}

.shield-layers {
    position: relative;
    width: 100%;
    height: 100%;
}

.shield-layer {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layer.outer {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 162, 140, 0.1), rgba(55, 236, 126, 0.05));
    border: 3px solid rgba(21, 162, 140, 0.3);
    animation: shieldRotate 20s linear infinite;
}

.shield-layer.middle {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    background: rgba(21, 162, 140, 0.05);
    border: 2px solid rgba(21, 162, 140, 0.4);
    animation: shieldRotate 15s linear infinite reverse;
}

.shield-layer.inner {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.4);
}

@keyframes shieldRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shield-icon {
    font-size: 3rem;
    color: white;
}

.data-icon {
    font-size: 2rem;
    color: white;
}

.protection-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.protection-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.protection-dot:nth-child(1) { top: 10%; left: 50%; transform: translateX(-50%); }
.protection-dot:nth-child(2) { top: 50%; right: 10%; transform: translateY(-50%); }
.protection-dot:nth-child(3) { bottom: 10%; left: 50%; transform: translateX(-50%); }
.protection-dot:nth-child(4) { top: 50%; left: 10%; transform: translateY(-50%); }

.threat-indicators {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.threat {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.threat.blocked {
    background: #28a745;
    opacity: 0.8;
}

.threat:nth-child(1) { top: -20px; right: 50px; }
.threat:nth-child(2) { bottom: 20px; right: -10px; }
.threat:nth-child(3) { top: 80px; left: -20px; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.threat.blocked {
    animation: threatBlock 3s ease-in-out infinite;
}

@keyframes threatBlock {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Cabling Section */
.cabling-section {
    padding: 100px 0;
    background: white;
}

/* Clean Network Diagram */
.cabling-visual {
    padding: 20px 0;
}

.clean-network-diagram {
    background: white;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    height: 400px;
    overflow: visible;
}

/* Central Server */
.central-server {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #22005e, #15a28c);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.3);
    z-index: 10;
    animation: serverPulse 3s ease-in-out infinite;
}

.central-server i {
    font-size: 28px;
    margin-bottom: 5px;
}

.central-server span {
    font-size: 10px;
    font-weight: 600;
}

.server-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(21, 162, 140, 0.6);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes serverPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Network Devices */
.network-device {
    position: absolute;
    background: white;
    border: 2px solid rgba(21, 162, 140, 0.2);
    border-radius: 12px;
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 70px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.network-device:hover {
    border-color: #15a28c;
    background: rgba(21, 162, 140, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(21, 162, 140, 0.2);
}

.network-device i {
    font-size: 24px;
    color: #15a28c;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.network-device:hover i {
    color: #22005e;
    transform: scale(1.1);
}

.network-device span {
    font-size: 11px;
    font-weight: 600;
    color: #22005e;
}

/* Device Positions - Fix Overlapping Issues */
.network-device.office {
    top: 2%;
    left: 2%;
}

.network-device.lab {
    top: 2%;
    right: 2%;
}

.network-device.printer {
    top: 30%;
    left: -10%;
}

.network-device.laptop {
    top: 30%;
    right: -10%;
}

.network-device.wifi {
    bottom: 2%;
    left: 25%;
}

.network-device.security {
    bottom: 2%;
    right: 25%;
}

/* Connection Dots */
.connection-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    animation: connection-blink 2s ease-in-out infinite;
}

@keyframes connection-blink {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(21, 162, 140, 0.6);
    }
}

/* Modern Device Showcase Styles */
.modern-device-showcase {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(34, 0, 94, 0.05), rgba(21, 162, 140, 0.05));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Featured Device - Laptop */
.featured-device {
    position: relative;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.device-frame {
    position: relative;
    width: 320px;
    height: 200px;
    margin-bottom: 1rem;
}

.device-screen {
    width: 100%;
    height: 160px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 12px 12px 0 0;
    border: 3px solid #333;
    position: relative;
    overflow: hidden;
}

.screen-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(21, 162, 140, 0.1), transparent);
    animation: screen-glow 3s ease-in-out infinite;
}

@keyframes screen-glow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px;
    z-index: 2;
}

.animated-desktop {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.desktop-apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.app-tile {
    background: rgba(21, 162, 140, 0.1);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: app-pulse 4s ease-in-out infinite;
}

.app-tile:nth-child(2) { animation-delay: 0.5s; }
.app-tile:nth-child(3) { animation-delay: 1s; }
.app-tile:nth-child(4) { animation-delay: 1.5s; }

@keyframes app-pulse {
    0%, 100% { 
        transform: scale(1);
        background: rgba(21, 162, 140, 0.1);
    }
    50% { 
        transform: scale(1.05);
        background: rgba(21, 162, 140, 0.2);
    }
}

.app-tile i {
    font-size: 16px;
    color: #15a28c;
    display: block;
    margin-bottom: 2px;
}

.app-tile span {
    font-size: 8px;
    color: #fff;
    display: block;
}

.taskbar {
    height: 20px;
    background: linear-gradient(145deg, #333, #444);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

.taskbar-icons {
    display: flex;
    gap: 4px;
}

.taskbar-icon {
    width: 12px;
    height: 12px;
    background: #666;
    border-radius: 2px;
    animation: taskbar-activity 3s ease-in-out infinite;
}

.taskbar-icon.active {
    background: #15a28c;
}

@keyframes taskbar-activity {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.system-tray {
    display: flex;
    gap: 4px;
    align-items: center;
}

.wifi-indicator {
    width: 8px;
    height: 8px;
    background: #15a28c;
    border-radius: 50%;
    animation: wifi-signal 2s ease-in-out infinite;
}

@keyframes wifi-signal {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 8px rgba(21, 162, 140, 0.6);
    }
}

.battery-indicator {
    width: 12px;
    height: 6px;
    border: 1px solid #666;
    border-radius: 1px;
    position: relative;
}

.battery-level {
    height: 100%;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-radius: 1px;
    width: 80%;
    animation: battery-charge 5s ease-in-out infinite;
}

@keyframes battery-charge {
    0%, 100% { width: 60%; }
    50% { width: 90%; }
}

.device-keyboard {
    width: 100%;
    height: 40px;
    background: linear-gradient(145deg, #666, #888);
    border-radius: 0 0 8px 8px;
    position: relative;
}

.device-keyboard::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    border-radius: 1px;
}

/* Secondary Devices */
.secondary-devices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.device-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.device-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(21, 162, 140, 0.1);
}

.device-icon {
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet Styles */
.tablet-frame {
    width: 50px;
    height: 70px;
    background: linear-gradient(145deg, #333, #555);
    border-radius: 8px;
    position: relative;
    animation: device-rotate 8s ease-in-out infinite;
}

.tablet-screen {
    position: absolute;
    top: 6px;
    left: 4px;
    right: 4px;
    bottom: 6px;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.touch-ripples {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(21, 162, 140, 0.6);
    border-radius: 50%;
    animation: touch-ripple 3s ease-in-out infinite;
}

.ripple:nth-child(1) { 
    top: 20%; 
    left: 30%; 
    animation-delay: 0s; 
}
.ripple:nth-child(2) { 
    top: 50%; 
    left: 60%; 
    animation-delay: 1s; 
}
.ripple:nth-child(3) { 
    top: 70%; 
    left: 20%; 
    animation-delay: 2s; 
}

@keyframes touch-ripple {
    0% { 
        transform: scale(0);
        opacity: 1;
    }
    100% { 
        transform: scale(2);
        opacity: 0;
    }
}

.tablet-apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 8px;
    height: 100%;
}

.tablet-app {
    background: rgba(21, 162, 140, 0.3);
    border-radius: 3px;
    animation: app-glow 2s ease-in-out infinite;
}

.tablet-app:nth-child(2) { animation-delay: 0.5s; }
.tablet-app:nth-child(3) { animation-delay: 1s; }
.tablet-app:nth-child(4) { animation-delay: 1.5s; }

@keyframes app-glow {
    0%, 100% { 
        background: rgba(21, 162, 140, 0.3);
    }
    50% { 
        background: rgba(21, 162, 140, 0.6);
        box-shadow: 0 0 8px rgba(21, 162, 140, 0.4);
    }
}

/* Desktop Styles */
.desktop-setup {
    position: relative;
    width: 60px;
    height: 60px;
}

.monitor-frame {
    width: 50px;
    height: 35px;
    background: linear-gradient(145deg, #333, #555);
    border-radius: 4px;
    position: relative;
}

.monitor-screen {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #000;
    border-radius: 2px;
    overflow: hidden;
}

.desktop-workspace {
    padding: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.workspace-window {
    height: 8px;
    background: linear-gradient(90deg, rgba(21, 162, 140, 0.4), rgba(21, 162, 140, 0.8));
    border-radius: 1px;
    animation: window-activity 4s ease-in-out infinite;
}

.workspace-window:nth-child(2) { animation-delay: 2s; }

@keyframes window-activity {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.desktop-base {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: linear-gradient(145deg, #555, #777);
    border-radius: 2px;
}

/* Interactive Display Styles */
.interactive-display {
    width: 65px;
    height: 45px;
}

.display-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #4a4a4a);
    border-radius: 6px;
    position: relative;
}

.display-screen {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #000;
    border-radius: 3px;
    overflow: hidden;
}

.interactive-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 6px;
    height: 60%;
}

.content-block {
    height: 4px;
    background: linear-gradient(90deg, rgba(55, 236, 126, 0.4), rgba(21, 162, 140, 0.8));
    border-radius: 1px;
    animation: content-flow 3s ease-in-out infinite;
}

.content-block:nth-child(2) { animation-delay: 1s; }
.content-block:nth-child(3) { animation-delay: 2s; }

@keyframes content-flow {
    0%, 100% { 
        transform: scaleX(0.3);
        opacity: 0.4;
    }
    50% { 
        transform: scaleX(1);
        opacity: 1;
    }
}

.touch-points {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 60%;
}

.touch-point {
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid rgba(21, 162, 140, 0.8);
    border-radius: 50%;
    animation: touch-interact 2s ease-in-out infinite;
}

.touch-point:nth-child(1) { 
    left: 20%; 
    top: 30%; 
    animation-delay: 0s; 
}
.touch-point:nth-child(2) { 
    right: 25%; 
    bottom: 20%; 
    animation-delay: 1s; 
}

@keyframes touch-interact {
    0% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 10px rgba(21, 162, 140, 0.6);
    }
    100% { 
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes device-rotate {
    0%, 100% { transform: rotateY(0deg); }
    25% { transform: rotateY(-5deg); }
    75% { transform: rotateY(5deg); }
}

.device-info h6,
.card-content h6 {
    color: #22005e;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.device-info p,
.card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Device Stats */
.device-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: stat-pulse 3s ease-in-out infinite;
}

.stat-icon:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) .stat-icon { animation-delay: 1s; }
.stat-item:nth-child(3) .stat-icon { animation-delay: 2s; }

@keyframes stat-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(21, 162, 140, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 20px 0 rgba(21, 162, 140, 0.2);
    }
}

.stat-icon i {
    font-size: 1.2rem;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content strong {
    font-size: 1rem;
    font-weight: 700;
    color: #22005e;
    line-height: 1;
}

.stat-content span {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .showcase-container {
        gap: 1.5rem;
    }
    
    .device-frame {
        width: 280px;
        height: 180px;
    }
    
    .device-screen {
        height: 140px;
    }
    
    .secondary-devices {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .device-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .modern-device-showcase {
        padding: 1rem;
    }
    
    .device-frame {
        width: 240px;
        height: 150px;
    }
    
    .device-screen {
        height: 110px;
    }
    
    .desktop-apps {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .app-tile {
        padding: 4px;
    }
    
    .app-tile i {
        font-size: 12px;
    }
    
    .app-tile span {
        font-size: 7px;
    }
}

@keyframes connectionBlink {
    0%, 100% { 
        opacity: 1; 
        background: #15a28c;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        background: #22005e;
        transform: scale(1.2);
    }
}

/* Simple Stats */
.simple-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}

.simple-stat {
    background: white;
    border: 1px solid rgba(21, 162, 140, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
}

.simple-stat:hover {
    border-color: #15a28c;
    background: rgba(21, 162, 140, 0.03);
    transform: translateY(-2px);
}

.simple-stat strong {
    display: block;
    font-size: 16px;
    color: #15a28c;
    font-weight: 700;
    margin-bottom: 3px;
}

.simple-stat span {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.cabling-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cabling-benefits .benefit-item:hover {
    background: white;
    border-color: #15a28c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.3);
}

.benefit-content h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.cabling-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cable-infrastructure {
    position: relative;
    width: 350px;
    height: 400px;
}

.rack-system {
    position: relative;
    width: 100%;
    height: 70%;
}

.network-rack {
    background: #2c3e50;
    border-radius: 8px;
    padding: 1rem;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.rack-slots {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
}

.rack-slot {
    background: #34495e;
    border-radius: 4px;
    height: 25%;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.rack-slot.active {
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-color: rgba(255, 255, 255, 0.3);
}

.rack-slot::after {
    content: attr(data-device);
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: #22005e;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.rack-slot.active::after {
    opacity: 1;
}

.cable-management {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cable-bundle {
    position: absolute;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    opacity: 0.6;
}

.cable-bundle.horizontal {
    height: 4px;
    width: 80%;
    top: 50%;
    left: 10%;
    border-radius: 2px;
}

.cable-bundle.vertical {
    width: 4px;
    height: 60%;
    left: 50%;
    top: 20%;
    border-radius: 2px;
}

.cable-bundle.diagonal {
    height: 3px;
    width: 60%;
    top: 30%;
    right: 5%;
    border-radius: 2px;
    transform: rotate(45deg);
}

.connection-points {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.connection-point {
    width: 50px;
    height: 50px;
    background: rgba(21, 162, 140, 0.1);
    border: 2px solid #15a28c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #15a28c;
    transition: all 0.3s ease;
    position: relative;
}

.connection-point:hover {
    background: #15a28c;
    color: white;
}

.connection-point::after {
    content: attr(data-location);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: #666;
    white-space: nowrap;
}

/* Devices Section */
.devices-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.device-categories {
    margin-top: 2rem;
}

.device-category {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.device-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #15a28c;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 1.5rem;
    color: #15a28c;
}

.category-header h6 {
    color: #22005e;
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.device-category p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.devices-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-showcase {
    width: 100%;
    max-width: 450px;
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.device-item {
    text-align: center;
    transition: all 0.3s ease;
}

.device-item:hover {
    transform: translateY(-10px);
}

.device-item.desktop {
    grid-column: 1 / -1;
}

.device-screen {
    background: #1a1a1a;
    border-radius: 8px 8px 0 0;
    padding: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.tablet-screen {
    border-radius: 15px;
    margin-bottom: 1rem;
}

.screen-content {
    background: #f0f0f0;
    border-radius: 4px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.app-icons {
    display: flex;
    gap: 0.5rem;
}

.app-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

.touch-interface {
    display: flex;
    gap: 1rem;
}

.touch-element {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    opacity: 0.8;
}

.monitor {
    background: #1a1a1a;
    border-radius: 8px 8px 0 0;
    padding: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.monitor::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: #666;
    border-radius: 0 0 8px 8px;
}

.desktop-ui {
    position: relative;
    height: 100px;
}

.taskbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 0 0 4px 4px;
}

.windows {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
}

.window {
    width: 40px;
    height: 25px;
    background: white;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.device-label {
    color: #22005e;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Printing Section */
.printing-section {
    padding: 100px 0;
    background: white;
}

.key-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.key-features h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.printing-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.printing-section .features-grid .feature-item {
    background: #f8f9fa;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120px;
}

.printing-section .features-grid .feature-item:hover {
    background: white;
    border-color: #15a28c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.printing-section .features-grid .feature-item i {
    font-size: 1.8rem;
    color: #15a28c;
    margin-bottom: 0.75rem;
    display: block;
}

.printing-section .features-grid .feature-item span {
    color: #22005e;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.printing-section .features-grid .feature-item small {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: center;
}

.printing-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.printer-ecosystem {
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.main-printer {
    margin-bottom: 2rem;
}

.printer-body {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.printer-display {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.display-content {
    background: #37ec7e;
    border-radius: 4px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-icon {
    color: white;
    font-size: 1.2rem;
}

.status-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.printer-tray {
    height: 20px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 4px;
    opacity: 0.8;
}

.printing-workflow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.workflow-step {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-step.active {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-color: #15a28c;
    transform: translateY(-5px);
}

.workflow-step.active i {
    color: white;
}

.workflow-step.active span {
    color: white;
}

.workflow-step i {
    font-size: 1.2rem;
    color: #15a28c;
    margin-bottom: 0.25rem;
}

.workflow-step span {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.workflow-arrow {
    width: 30px;
    height: 2px;
    background: #e9ecef;
    position: relative;
}

.workflow-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #e9ecef;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Digital Infrastructure CTA Section */
.digital-cta-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    overflow: hidden;
}

.digital-cta-section .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(55, 236, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(21, 162, 140, 0.15) 0%, transparent 50%);
}

.digital-cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.digital-cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Digital Infrastructure Responsive Design */
@media (max-width: 992px) {
    .network-diagram {
        width: 300px;
        height: 300px;
    }
    
    .router-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .connection-node {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .device-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .device-item.desktop {
        grid-column: 1;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .printing-section .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-digital-infrastructure h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-digital-features {
        margin-top: 2rem;
    }
    
    .hero-feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .networks-section,
    .security-section,
    .cabling-section,
    .devices-section,
    .printing-section {
        padding: 60px 0;
    }
    
    .network-diagram {
        width: 250px;
        height: 250px;
    }
    
    .connection-node::after {
        display: none;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .cable-infrastructure {
        width: 280px;
        height: 320px;
    }
    
    .rack-slot::after {
        display: none;
    }
    
    .connection-point::after {
        display: none;
    }
    
    .printing-workflow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .workflow-arrow {
        width: 2px;
        height: 20px;
        transform: rotate(90deg);
    }
    
    .workflow-arrow::after {
        top: 15px;
        right: -3px;
        border-left: 4px solid #e9ecef;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: none;
    }
    
    .digital-cta-section h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .digital-cta-section .col-lg-4 {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    .modern-btn {
        display: block;
        margin-bottom: 1rem;
    }
}

/* Service Process Section */
.service-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-steps {
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    height: 100%;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(21, 162, 140, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    font-size: 2rem;
    color: #15a28c;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.3);
}

.process-step h5 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Industries We Serve Section */
.industries-served {
    padding: 100px 0;
    background: white;
}

.industry-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: #15a28c;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.3);
}

.industry-card h5 {
    color: #22005e;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.industry-card p {
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    padding: 0.5rem 0;
    color: #495057;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.industry-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #15a28c;
    font-weight: 700;
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-choose-content {
    padding-right: 2rem;
}

.why-choose-grid {
    display: grid;
    gap: 2rem;
}

.why-choose-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(21, 162, 140, 0.3);
}

.why-content h6 {
    color: #22005e;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.why-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.why-choose-visual {
    position: relative;
}

.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.2);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(21, 162, 140, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* CTA Services Section */
.cta-services {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(55, 236, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(21, 162, 140, 0.15) 0%, transparent 50%);
}

.cta-services h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-services p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Responsive Design */
@media (max-width: 1200px) {
    .services-timeline {
        margin-top: 4rem;
    }
    
    .service-timeline-content {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .service-info {
        padding: 1rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .timeline-line {
        left: 2rem;
    }
    
    .timeline-marker {
        left: 2rem;
        transform: none;
    }
    
    .service-timeline-item:nth-child(even) .service-timeline-content {
        flex-direction: column;
    }
    
    .service-timeline-content {
        margin-left: 5rem;
        margin-right: 0;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .services-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-services h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-services-stats {
        margin-top: 2rem;
    }
    
    .hero-service-item {
        padding: 1.5rem 1rem;
        min-height: 180px;
    }
    
    .hero-service-item .service-label {
        font-size: 0.95rem;
    }
    
    .hero-service-item .service-value {
        font-size: 0.85rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-marker {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 2rem;
    }
    
    .service-timeline-content {
        margin: 0;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-visual {
        margin-top: 2rem;
    }
    
    .process-step {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .industry-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .why-choose-item {
        padding: 1.5rem;
    }
    
    .services-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-services h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .cta-services .col-lg-4 {
        text-align: center !important;
        margin-top: 2rem;
    }
    
    .modern-btn {
        display: block;
        margin-bottom: 1rem;
    }
}

/* Smart Board Showcase Styles */
.smart-board-showcase {
    padding: 2rem;
    text-align: center;
}

.smart-board {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.board-frame {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #333;
}

.board-screen {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid #ddd;
}

.screen-header {
    height: 40px;
    background: linear-gradient(135deg, #22005e, #15a28c);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    color: white;
}

.header-title {
    font-size: 14px;
    font-weight: 600;
}

.header-tools {
    display: flex;
    gap: 5px;
}

.tool-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-btn.active {
    background: rgba(55, 236, 126, 0.8);
}

.screen-content {
    display: flex;
    height: calc(100% - 40px);
    padding: 15px;
    gap: 15px;
}

/* Widgets Panel */
.simple-widgets {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.widget-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(21, 162, 140, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.widget-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.4);
}

.widget-circle .widget-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    margin-bottom: 0;
}

.widget-circle .widget-icon i {
    font-size: 24px;
    color: #22005e;
}

.widget-circle .widget-pulse {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background: #37ec7e;
    border-radius: 50%;
    animation: widget-pulse 2s ease-in-out infinite;
}

/* Interactive Lines */
.interactive-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    pointer-events: none;
}

.lines-svg {
    width: 100%;
    height: 100%;
}

.animated-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw-line 4s ease-in-out infinite;
    opacity: 0.8;
}

.line-2 { animation-delay: 1s; }
.line-3 { animation-delay: 2s; }

@keyframes draw-line {
    0%, 100% { 
        stroke-dashoffset: 300; 
        opacity: 0.3;
    }
    50% { 
        stroke-dashoffset: 0; 
        opacity: 1;
    }
}

/* Touch Points */
.touch-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.touch-point {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(21, 162, 140, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: touch-ripple 3s ease-in-out infinite;
}

.point-1 { top: 25%; left: 20%; animation-delay: 0s; }
.point-2 { top: 25%; right: 20%; animation-delay: 1s; }
.point-3 { bottom: 25%; left: 20%; animation-delay: 2s; }
.point-4 { bottom: 25%; right: 20%; animation-delay: 1.5s; }

@keyframes touch-ripple {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.8);
        opacity: 1;
        box-shadow: 0 0 20px rgba(21, 162, 140, 0.6);
    }
}

@keyframes widget-pulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(55, 236, 126, 0.6);
    }
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(21, 162, 140, 0.2);
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    width: 89%;
    border-radius: 2px;
    animation: progress-fill 3s ease-in-out infinite;
}

@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: 89%; }
}

/* Interactive Area - Simplified */
.interactive-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.board-base {
    width: 80px;
    height: 15px;
    background: linear-gradient(145deg, #333, #555);
    border-radius: 0 0 8px 8px;
    margin: 10px auto 0;
    position: relative;
}

.board-base::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    background: #444;
    border-radius: 2px;
}

/* Smart Board Features */
.smart-board-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 5px 15px rgba(21, 162, 140, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.4);
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.feature-item span {
    font-size: 0.9rem;
    color: #22005e;
    font-weight: 500;
}

/* Smart Print Hub Styles */
.smart-print-hub {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

/* Central Printing Station */
.print-station {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.printer-main {
    width: 120px;
    height: 80px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.printer-top {
    height: 25px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 12px 12px 0 0;
    padding: 5px;
}

.control-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.display-screen {
    flex: 1;
    height: 15px;
    background: #15a28c;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding: 0 5px;
    margin-right: 5px;
}

.screen-content {
    display: flex;
    align-items: center;
    gap: 3px;
}

.status-indicator {
    width: 4px;
    height: 4px;
    background: #37ec7e;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.screen-content span {
    font-size: 6px;
    color: white;
    font-weight: 600;
}

.control-buttons {
    display: flex;
    gap: 2px;
}

.btn-circle {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-circle.active {
    background: #37ec7e;
    box-shadow: 0 0 8px rgba(55, 236, 126, 0.6);
}

.printer-body {
    height: 55px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.paper-tray {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.paper-stack {
    position: absolute;
    right: 5px;
    top: 2px;
    bottom: 2px;
    width: 15px;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    border-radius: 2px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.print-zone {
    height: 25px;
    background: rgba(21, 162, 140, 0.1);
    border-radius: 4px;
    position: relative;
}

.printing-head {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-radius: 2px;
    animation: print-head-move 3s ease-in-out infinite;
}

@keyframes print-head-move {
    0%, 100% { left: 10px; }
    50% { left: 75px; }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px rgba(55, 236, 126, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 10px rgba(55, 236, 126, 0.8); }
}

/* Connected Devices */
.connected-devices {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.device-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-node:hover {
    transform: translateY(-5px) scale(1.05);
}

.device-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(21, 162, 140, 0.2);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.device-node:hover .device-icon {
    box-shadow: 0 8px 25px rgba(21, 162, 140, 0.4);
    background: linear-gradient(135deg, #15a28c, #37ec7e);
}

.device-node:hover .device-icon i {
    color: white;
}

.device-icon i {
    font-size: 20px;
    color: #22005e;
    transition: color 0.3s ease;
}

.device-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, rgba(21, 162, 140, 0.8), rgba(21, 162, 140, 0.2));
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    animation: data-flow 2s ease-in-out infinite;
}

@keyframes data-flow {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleY(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleY(1.2); }
}

/* Device Positioning */
.laptop-node { top: 20px; left: 20px; }
.tablet-node { top: 20px; right: 20px; }
.phone-node { bottom: 80px; left: 20px; }
.cloud-node { bottom: 80px; right: 20px; }

/* Print Queue */
.print-queue {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 140px;
}

.queue-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(21, 162, 140, 0.2);
}

.queue-header i {
    color: #22005e;
    font-size: 14px;
}

.queue-header span {
    font-size: 11px;
    color: #22005e;
    font-weight: 600;
}

.queue-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.queue-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.queue-item.processing {
    background: rgba(21, 162, 140, 0.1);
    border: 1px solid rgba(21, 162, 140, 0.3);
}

.queue-item.pending {
    background: rgba(102, 102, 102, 0.1);
    border: 1px solid rgba(102, 102, 102, 0.2);
}

.item-icon i {
    font-size: 12px;
    color: #666;
}

.queue-item.processing .item-icon i {
    color: #15a28c;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(21, 162, 140, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    width: 65%;
    border-radius: 2px;
    animation: progress-animation 2s ease-in-out infinite;
}

@keyframes progress-animation {
    0% { width: 30%; }
    50% { width: 80%; }
    100% { width: 65%; }
}

/* Security Overlay */
.security-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.security-badge {
    background: rgba(34, 0, 94, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
}

.security-badge i {
    color: #37ec7e;
}

.security-features {
    display: flex;
    gap: 8px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #37ec7e;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    animation: security-pulse 3s ease-in-out infinite;
}

.feature-dot:nth-child(2) { animation-delay: 1s; }
.feature-dot:nth-child(3) { animation-delay: 2s; }

@keyframes security-pulse {
    0%, 100% { 
        opacity: 0.6; 
        box-shadow: 0 0 5px rgba(55, 236, 126, 0.3);
    }
    50% { 
        opacity: 1; 
        box-shadow: 0 0 15px rgba(55, 236, 126, 0.6);
        transform: scale(1.2);
    }
}

/* Sustainability Indicator */
.eco-indicator {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.eco-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #37ec7e, #15a28c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    animation: eco-rotate 4s ease-in-out infinite;
}

.eco-icon i {
    font-size: 18px;
    color: white;
}

@keyframes eco-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.05); }
}

.eco-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 12px;
    font-weight: 700;
    color: #22005e;
    line-height: 1;
}

.stat-label {
    font-size: 8px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .smart-print-hub {
        max-width: 400px;
        height: 350px;
        padding: 20px;
    }
    
    .printer-main {
        width: 100px;
        height: 70px;
    }
    
    .device-icon {
        width: 40px;
        height: 40px;
    }
    
    .device-icon i {
        font-size: 18px;
    }
    
    .print-queue {
        min-width: 120px;
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .smart-board {
        max-width: 380px;
    }
    
    .board-screen {
        height: 240px;
    }
    
    .screen-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .widgets-panel {
        flex-direction: row;
        gap: 8px;
    }
    
    .widget {
        flex: 1;
        padding: 8px;
    }
    
    .smart-board-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .smart-board-showcase {
        padding: 1rem;
    }
    
    .smart-board {
        max-width: 320px;
    }
    
    .board-screen {
        height: 200px;
    }
    
    .screen-header {
        height: 30px;
        padding: 0 10px;
    }
    
    .header-title {
        font-size: 12px;
    }
    
    .screen-content {
        padding: 10px;
    }
}

/* =============================================================================
   ELV SOLUTIONS PAGE STYLES
   ============================================================================= */

/* Hero Section - ELV */
.hero-elv-solutions {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
    overflow: hidden;
}

.hero-elv-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(55, 236, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(21, 162, 140, 0.1) 0%, transparent 50%);
    animation: pattern-float 20s ease-in-out infinite;
}

.elv-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* CCTV Surveillance Section */
.cctv-section {
    background: #fff;
}

.surveillance-hub {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

/* Control Center */
.control-center {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.monitor-bank {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.main-monitor {
    width: 120px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.camera-feed {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a4a3a, #1a2a2a);
    position: relative;
}

.camera-feed.active {
    background: linear-gradient(135deg, #2a4a2a, #1a3a1a);
}

.feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.recording-indicator {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rec-dot {
    width: 6px;
    height: 6px;
    background: #ff3333;
    border-radius: 50%;
    animation: pulse-red 1s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.recording-indicator span, .timestamp {
    font-size: 8px;
    color: #ff3333;
    font-weight: bold;
}

.timestamp {
    color: #37ec7e;
}

.detection-box {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(55, 236, 126, 0.9);
    color: #000;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 7px;
    font-weight: bold;
}

.secondary-monitors {
    display: flex;
    gap: 8px;
}

.small-monitor {
    width: 50px;
    height: 35px;
    background: #1a1a1a;
    border-radius: 4px;
    padding: 2px;
}

.small-monitor .camera-feed {
    border-radius: 2px;
}

.camera-label {
    font-size: 6px;
    color: #15a28c;
    font-weight: bold;
}

/* Camera Network */
.camera-network {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.camera-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.camera-node:hover {
    transform: translateY(-5px) scale(1.05);
}

.camera-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(21, 162, 140, 0.3);
    margin-bottom: 8px;
    position: relative;
}

.camera-node:hover .camera-icon {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    box-shadow: 0 8px 30px rgba(21, 162, 140, 0.5);
}

.camera-node:hover .camera-icon i {
    color: white;
}

.camera-icon i {
    font-size: 20px;
    color: #22005e;
    transition: color 0.3s ease;
}

.camera-status {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.camera-status.online {
    background: #37ec7e;
    box-shadow: 0 0 8px rgba(55, 236, 126, 0.6);
}

.connection-line {
    position: absolute;
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, rgba(21, 162, 140, 0.8), rgba(21, 162, 140, 0.2));
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Camera positioning */
.indoor { top: 80px; left: 30px; }
.outdoor { top: 80px; right: 30px; }
.ptz { bottom: 100px; left: 30px; }
.gate { bottom: 100px; right: 30px; }

/* Live Features */
.live-features {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.feature-indicator {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #22005e;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-indicator:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(21, 162, 140, 0.3);
}

.feature-indicator i {
    font-size: 12px;
    color: #15a28c;
}

/* Additional Features Grid */
.additional-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(21, 162, 140, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(21, 162, 140, 0.3);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card .feature-icon i {
    font-size: 24px;
    color: white;
}

/* Time Attendance Section */
.attendance-section {
    background: #f8f9fa;
}

.attendance-system {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 450px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f2f5, #e8eaed);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

/* Biometric Device */
.biometric-device {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.device-frame {
    width: 140px;
    height: 200px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.device-screen {
    height: 120px;
    background: #000;
    margin: 10px;
    border-radius: 8px;
    position: relative;
}

.screen-display {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar i {
    color: white;
    font-size: 16px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.check-time {
    color: #37ec7e;
    font-size: 10px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 15px;
}

.status-indicator.success {
    background: rgba(55, 236, 126, 0.2);
    border: 1px solid #37ec7e;
}

.status-indicator i {
    color: #37ec7e;
    font-size: 12px;
}

.status-indicator span {
    color: #37ec7e;
    font-size: 10px;
    font-weight: bold;
}

.device-scanner {
    height: 60px;
    padding: 10px;
}

.scanner-area {
    width: 100%;
    height: 100%;
    background: rgba(21, 162, 140, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.scan-animation {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(55, 236, 126, 0.6), transparent);
}

@keyframes scan-sweep {
    from { left: -100%; }
    to { left: 100%; }
}

/* Authentication Methods */
.auth-methods {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
}

.auth-option:hover, .auth-option.active {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    transform: scale(1.05);
}

.auth-option:hover .auth-icon i, .auth-option.active .auth-icon i {
    color: white;
}

.auth-icon {
    width: 35px;
    height: 35px;
    background: rgba(21, 162, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.auth-icon i {
    font-size: 18px;
    color: #22005e;
}

.auth-option span {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

/* Attendance Dashboard */
.attendance-dashboard {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    min-width: 140px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(21, 162, 140, 0.2);
}

.dashboard-header h6 {
    font-size: 12px;
    color: #22005e;
    margin-bottom: 3px;
}

.dashboard-header .date {
    font-size: 9px;
    color: #666;
}

.attendance-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 16px;
    font-weight: bold;
    color: #22005e;
    line-height: 1;
}

.stat-label {
    font-size: 8px;
    color: #666;
    margin-top: 2px;
}

.recent-activity {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.activity-item {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 3px 0;
}

.activity-time {
    font-size: 9px;
    color: #15a28c;
    font-weight: bold;
    min-width: 30px;
}

.activity-user {
    font-size: 9px;
    color: #666;
}

/* Self Service */
.self-service {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 180px;
}

.self-service .service-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.self-service .service-icon i {
    color: white;
    font-size: 14px;
}

.self-service span {
    font-size: 11px;
    font-weight: 600;
    color: #22005e;
    display: block;
    margin-bottom: 5px;
}

.self-service p {
    font-size: 9px;
    color: #666;
    margin: 0;
}

/* Access Control Section */
.access-control-section {
    background: #fff;
}

.access-control-hub {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

/* Building Layout */
.building-layout {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.building-outline {
    position: relative;
    width: 200px;
    height: 150px;
    border: 3px solid rgba(21, 162, 140, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
}

/* Security Zones */
.security-zone {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.security-zone:hover {
    transform: scale(1.05);
}

.security-zone.public {
    top: 10px;
    left: 10px;
    background: rgba(55, 236, 126, 0.2);
    border: 2px solid rgba(55, 236, 126, 0.5);
}

.security-zone.restricted {
    top: 10px;
    right: 10px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.5);
}

.security-zone.high-security {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid rgba(220, 53, 69, 0.5);
}

.zone-icon {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.zone-icon i {
    font-size: 12px;
    color: #22005e;
}

.zone-label {
    font-size: 8px;
    font-weight: bold;
    color: #22005e;
    text-align: center;
}

/* Access Points */
.access-point {
    position: absolute;
    z-index: 10;
}

.access-point.main-entrance {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.access-point.side-entrance {
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.access-point.lab-entrance {
    bottom: -15px;
    right: 30px;
}

.door-reader {
    width: 30px;
    height: 30px;
    background: #2a2a2a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.door-reader i {
    color: white;
    font-size: 14px;
}

.reader-light {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid white;
}

.reader-light.green {
    background: #37ec7e;
    box-shadow: 0 0 8px rgba(55, 236, 126, 0.8);
}

.reader-light.amber {
    background: #ffc107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.8);
}

.reader-light.red {
    background: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.8);
}

@keyframes blink-light {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Control Panel */
.control-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(21, 162, 140, 0.2);
}

.panel-header i {
    color: #22005e;
    font-size: 14px;
}

.panel-header span {
    font-size: 11px;
    font-weight: bold;
    color: #22005e;
}

.access-status {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.green {
    background: #37ec7e;
}

.status-indicator.amber {
    background: #ffc107;
}

.status-indicator.red {
    background: #dc3545;
}

.status-item span {
    font-size: 9px;
    color: #666;
}

/* Visitor Management */
.visitor-management {
    position: absolute;
    top: 20px;
    right: 20px;
}

.visitor-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 140px;
}

.badge-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(21, 162, 140, 0.2);
}

.badge-header i {
    color: #15a28c;
    font-size: 12px;
}

.badge-header span {
    font-size: 10px;
    font-weight: bold;
    color: #22005e;
}

.badge-info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.visitor-photo {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitor-photo i {
    color: white;
    font-size: 14px;
}

.visitor-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.visitor-name {
    font-size: 10px;
    font-weight: bold;
    color: #22005e;
}

.visit-purpose, .valid-until {
    font-size: 8px;
    color: #666;
}

/* Integration Features */
.integration-features {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 600;
    color: #22005e;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    transform: translateY(-3px);
}

.feature-badge i {
    font-size: 11px;
    color: #15a28c;
}

.feature-badge:hover i {
    color: white;
}

/* Benefit Cards */
.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left-color: #15a28c;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(21, 162, 140, 0.1), rgba(55, 236, 126, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 22px;
    color: #15a28c;
}

.benefit-content h6 {
    color: #22005e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Feature Categories */
.feature-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(21, 162, 140, 0.05);
    border-radius: 12px;
    border-left: 4px solid #15a28c;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 20px;
    color: #15a28c;
}

.category-header h6 {
    color: #22005e;
    font-weight: 600;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #37ec7e;
    font-weight: bold;
}

/* CTA Section */
.elv-cta-section {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
}

.elv-cta-section .cta-bg::before {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(55, 236, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(21, 162, 140, 0.15) 0%, transparent 50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .surveillance-hub,
    .attendance-system,
    .access-control-hub {
        max-width: 400px;
        height: 350px;
        padding: 20px;
    }
    
    .camera-icon,
    .auth-option {
        width: 40px;
        height: 40px;
    }
    
    .main-monitor {
        width: 100px;
        height: 70px;
    }
    
    .device-frame {
        width: 120px;
        height: 180px;
    }
    
    .building-outline {
        width: 160px;
        height: 120px;
    }
    
    .additional-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* =============================================================================
   IT MANPOWER SERVICES PAGE STYLES
   ============================================================================= */

/* Hero Section - IT Manpower */
.hero-manpower {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
    overflow: hidden;
}

.hero-manpower-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(55, 236, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(21, 162, 140, 0.1) 0%, transparent 50%);
    animation: pattern-float 25s ease-in-out infinite;
}

.manpower-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.service-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.highlight-item i {
    font-size: 1.1rem;
    color: #37ec7e;
}

/* IT Team Hub Visualization */
.it-team-hub {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.team-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.central-hub {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.3);
    animation: hub-pulse 3s ease-in-out infinite;
}

@keyframes hub-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hub-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hub-label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.hub-description {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Team Members */
.team-member {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px) scale(1.05);
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-color: white;
    box-shadow: 0 8px 30px rgba(21, 162, 140, 0.4);
}

.team-member:hover .member-avatar i {
    color: white;
}

.member-avatar i {
    font-size: 24px;
    color: #22005e;
    transition: color 0.3s ease;
}

.member-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: #22005e;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 10px;
    min-width: 70px;
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(21, 162, 140, 0.6), rgba(21, 162, 140, 0.1));
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Team Member Positions */
.team-member.developer { top: 30px; left: 30px; }
.team-member.sysadmin { top: 30px; right: 30px; }
.team-member.security { top: 120px; left: 10px; }
.team-member.analyst { top: 120px; right: 10px; }
.team-member.support { bottom: 60px; left: 30px; }
.team-member.network { bottom: 60px; right: 30px; }

/* Service Solutions */
.service-solution {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(21, 162, 140, 0.1);
}

.service-solution:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(21, 162, 140, 0.3);
}

.solution-header {
    background: linear-gradient(135deg, #22005e, #15a28c);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.solution-letter {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-icon i {
    font-size: 2rem;
    color: white;
}

.solution-content {
    padding: 2rem;
}

.solution-content h4 {
    color: #22005e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Managed Services Dashboard */
.managed-services-viz {
    margin: 1.5rem 0;
}

.service-dashboard {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    font-size: 0.85rem;
}

.dashboard-header {
    background: #2a2a2a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #333;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.online {
    background: #37ec7e;
    box-shadow: 0 0 8px rgba(55, 236, 126, 0.6);
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.dashboard-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard-content {
    padding: 1rem;
}

.metric-row {
    margin-bottom: 0.75rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metric-label {
    color: #ccc;
    font-size: 0.8rem;
    min-width: 80px;
}

.metric-bar {
    flex: 1;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.metric-value {
    color: #37ec7e;
    font-weight: bold;
    font-size: 0.8rem;
    min-width: 30px;
}

.dashboard-footer {
    padding: 0.75rem 1rem;
    background: #2a2a2a;
    border-top: 1px solid #333;
}

.support-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #37ec7e;
    font-size: 0.8rem;
    font-weight: 500;
}

.support-badge i {
    font-size: 1rem;
}

/* Recruitment Process */
.recruitment-process {
    margin: 1.5rem 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.process-step.active .step-number {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
}

.process-step.active .step-icon {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
}

.step-number {
    width: 25px;
    height: 25px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 0.5rem;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.step-icon {
    width: 30px;
    height: 30px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 0.25rem;
}

.step-icon i {
    font-size: 0.9rem;
}

.step-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.process-connector {
    width: 40px;
    height: 2px;
    background: #e9ecef;
    margin: 0 10px;
    border-radius: 1px;
}

.candidate-pool {
    margin-top: 1rem;
}

.candidate-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #e9ecef;
}

.candidate-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.candidate-avatar i {
    font-size: 1.1rem;
}

.candidate-info {
    flex: 1;
}

.candidate-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: #22005e;
    margin-bottom: 0.25rem;
    display: block;
}

.skill-tags {
    display: flex;
    gap: 0.25rem;
}

.skill-tag {
    background: #e9ecef;
    color: #666;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
}

.match-score {
    text-align: center;
}

.match-score .score {
    font-size: 0.9rem;
    font-weight: bold;
    color: #37ec7e;
}

/* Outsourcing Projects */
.outsourcing-projects {
    margin: 1.5rem 0;
}

.project-board {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.board-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22005e;
}

.project-count {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.project-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-card {
    background: transparent;
    border-radius: 6px;
    padding: 0.75rem;
  
    transition: all 0.2s ease;
}

.project-card:hover {
    border-color: #15a28c;
    box-shadow: 0 2px 8px rgba(21, 162, 140, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.project-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #22005e;
}

.project-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.project-status.status-active {
    background: #37ec7e;
    box-shadow: 0 0 4px rgba(55, 236, 126, 0.5);
}

.project-status.status-planning {
    background: #ffc107;
    box-shadow: 0 0 4px rgba(255, 193, 7, 0.5);
}

.project-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-radius: 2px;
    transition: width 0.8s ease;
}

.progress-text {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    min-width: 25px;
}

.project-team {
    display: flex;
    justify-content: flex-end;
}

.team-avatars {
    display: flex;
    gap: -5px;
}

.team-avatar {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid white;
    margin-left: -3px;
}

/* Service Features */
.service-features {
    margin-top: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.feature-item i {
    color: #37ec7e;
    font-size: 0.9rem;
}

/* Technical Expertise */
.expertise-grid {
    margin-top: 2rem;
}

.expertise-category {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(21, 162, 140, 0.1);
}

.expertise-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(21, 162, 140, 0.3);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.expertise-category h5 {
    color: #22005e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.expertise-category .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-category .skill-tag {
    background: rgba(21, 162, 140, 0.1);
    color: #15a28c;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(21, 162, 140, 0.2);
    transition: all 0.2s ease;
}

.expertise-category .skill-tag:hover {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    border-color: transparent;
}

/* Advantages */
.advantages-grid {
    margin-top: 2rem;
}

.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    height: 100%;
}

.advantage-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left-color: #15a28c;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(21, 162, 140, 0.1), rgba(55, 236, 126, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: #15a28c;
}

.advantage-content h5 {
    color: #22005e;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.advantage-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section - Manpower */
.manpower-cta-section {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
}

.cta-manpower-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(55, 236, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(21, 162, 140, 0.15) 0%, transparent 50%);
    animation: pattern-float 20s ease-in-out infinite;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1rem;
    color: #37ec7e;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(21, 162, 140, 0.05);
    border-radius: 10px;
    border-left: 3px solid #15a28c;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(21, 162, 140, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.1rem;
    color: white;
}

.benefit-content h6 {
    color: #22005e;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design - IT Manpower */
@media (max-width: 768px) {
    .it-team-hub {
        max-width: 400px;
        height: 350px;
        padding: 20px;
    }
    
    .central-hub {
        width: 100px;
        height: 100px;
    }
    
    .member-avatar {
        width: 50px;
        height: 50px;
    }
    
    .member-avatar i {
        font-size: 20px;
    }
    
    .service-solution {
        margin-bottom: 2rem;
    }
    
    .solution-header {
        padding: 1rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon i {
        font-size: 1.5rem;
    }
    
    .solution-content {
        padding: 1.5rem;
    }
    
    .expertise-category {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon i {
        font-size: 1.3rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-highlights .row {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* =============================================================================
   TECHNOLOGY EQUIPMENT SOLUTIONS PAGE STYLES
   ============================================================================= */

/* Hero Section - Tech Equipment */
.hero-tech-equipment {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
    overflow: hidden;
}

.hero-tech-equipment-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 60%, rgba(55, 236, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(21, 162, 140, 0.1) 0%, transparent 50%);
    animation: pattern-float 30s ease-in-out infinite;
}

.tech-equipment-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.equipment-highlights {
    margin-top: 2rem;
}

/* Equipment Hub Visualization */
.equipment-hub {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.central-device {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(21, 162, 140, 0.3);
    animation: device-pulse 3s ease-in-out infinite;
}

@keyframes device-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.device-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.device-label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.device-description {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Equipment Items */
.equipment-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.equipment-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.equipment-item:hover .equipment-icon {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-color: white;
    box-shadow: 0 8px 30px rgba(21, 162, 140, 0.4);
}

.equipment-item:hover .equipment-icon i {
    color: white;
}

.equipment-icon i {
    font-size: 24px;
    color: #22005e;
    transition: color 0.3s ease;
}

.equipment-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #22005e;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 10px;
    min-width: 70px;
}

/* Equipment positioning */
.equipment-item.charging-cart { top: 30px; left: 30px; }
.equipment-item.digital-podium { top: 30px; right: 30px; }
.equipment-item.stem-kit { top: 150px; left: 10px; }
.equipment-item.tablet-station { top: 150px; right: 10px; }
.equipment-item.smart-board { bottom: 60px; left: 50%; transform: translateX(-50%); }

/* Charging Cart Visualization */
.charging-cart-viz {
    margin: 1.5rem 0;
}

.cart-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.cart-frame {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.85rem;
}

.cart-header {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.cart-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.power-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.power-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #333;
}

.power-light.active {
    background: #37ec7e;
    box-shadow: 0 0 8px rgba(55, 236, 126, 0.6);
    animation: pulse-power 2s ease-in-out infinite;
}

@keyframes pulse-power {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.power-indicator span {
    color: #37ec7e;
    font-size: 0.8rem;
    font-weight: 500;
}

.cart-body {
    padding: 1.5rem;
}

.device-slots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.device-slot {
    background: #333;
    border-radius: 8px;
    padding: 0.75rem;
}

.device {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.device i {
    font-size: 1.5rem;
    color: #15a28c;
}

.charge-indicator {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.charge-bar {
    flex: 1;
    height: 6px;
    background: #444;
    border-radius: 3px;
    overflow: hidden;
}

.charge-fill {
    height: 100%;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-radius: 3px;
    transition: width 1s ease;
}

.charge-percent {
    color: #37ec7e;
    font-weight: bold;
    font-size: 0.8rem;
    min-width: 35px;
}

.cart-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.feature-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.8rem;
}

.feature-indicator i {
    font-size: 1.2rem;
    color: #15a28c;
}

.cart-footer {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
}

.capacity-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.capacity-label {
    color: #ccc;
    font-size: 0.85rem;
}

.capacity-value {
    color: #37ec7e;
    font-weight: bold;
    font-size: 0.9rem;
}

.status-lights {
    display: flex;
    gap: 0.5rem;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #333;
}

.status-light.green {
    background: #37ec7e;
    box-shadow: 0 0 6px rgba(55, 236, 126, 0.5);
}

.status-light.amber {
    background: #ffc107;
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
}

/* Digital Podium Visualization */
.digital-podium-viz {
    margin: 1.5rem 0;
}

.podium-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.podium-frame {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.podium-screen {
    background: #2a2a2a;
    padding: 1rem;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

.screen-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #37ec7e;
    box-shadow: 0 0 6px rgba(55, 236, 126, 0.6);
    animation: pulse-green 2s ease-in-out infinite;
}

.connection-status span {
    color: #37ec7e;
    font-size: 0.8rem;
    font-weight: 500;
}

.screen-content {
    padding: 1rem 0;
}

.control-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-section {
    background: #333;
    border-radius: 8px;
    padding: 0.75rem;
}

.section-icon {
    margin-bottom: 0.5rem;
}

.section-icon i {
    font-size: 1.2rem;
    color: #15a28c;
}

.section-label {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.control-buttons {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: #444;
    color: #ccc;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-btn.active {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-bar {
    flex: 1;
    height: 4px;
    background: #444;
    border-radius: 2px;
    overflow: hidden;
}

.volume-fill {
    height: 100%;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.volume-value {
    color: #37ec7e;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 30px;
}

.connection-indicators {
    display: flex;
    gap: 0.5rem;
}

.device-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: #444;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #ccc;
    transition: all 0.2s ease;
}

.device-connection.active {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
}

.device-connection i {
    font-size: 1rem;
}

.podium-features {
    background: #333;
    padding: 1rem;
}

.feature-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 0.5rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: #ccc;
}

.feature-badge i {
    font-size: 1rem;
    color: #15a28c;
}

/* Podium Features Grid */
.podium-features-grid {
    margin: 1.5rem 0;
    display: grid;
    gap: 1rem;
}

.podium-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(21, 162, 140, 0.05);
    border-radius: 10px;
    border-left: 3px solid #15a28c;
    transition: all 0.3s ease;
}

.podium-feature:hover {
    background: rgba(21, 162, 140, 0.1);
    transform: translateX(5px);
}

.podium-feature .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.podium-feature .feature-icon i {
    font-size: 1.1rem;
    color: white;
}

.podium-feature .feature-content h6 {
    color: #22005e;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.podium-feature .feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Solution Showcase */
.solution-showcase {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(21, 162, 140, 0.05);
    border-radius: 10px;
    text-align: center;
}

.solution-showcase h6 {
    color: #22005e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
}

.component-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(21, 162, 140, 0.2);
    transition: all 0.2s ease;
}

.component-item:hover {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    transform: translateY(-2px);
}

.component-item i {
    font-size: 1.2rem;
    color: #15a28c;
    transition: color 0.2s ease;
}

.component-item:hover i {
    color: white;
}

.component-item span {
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Feature Categories */
.feature-categories {
    margin: 1.5rem 0;
    display: grid;
    gap: 1rem;
}

.feature-category {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #15a28c;
}

.feature-category h6 {
    color: #22005e;
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category h6 i {
    color: #15a28c;
    font-size: 1rem;
}

.feature-category .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category .feature-list li {
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.feature-category .feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #37ec7e;
    font-weight: bold;
}

/* Product Models */
.product-models {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(34, 0, 94, 0.05);
    border-radius: 10px;
}

.product-models h6 {
    color: #22005e;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.model-grid {
    display: grid;
    gap: 0.5rem;
}

.model-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid rgba(21, 162, 140, 0.2);
    transition: all 0.2s ease;
}

.model-item:hover {
    background: rgba(21, 162, 140, 0.1);
    border-color: #15a28c;
}

.model-name {
    font-weight: bold;
    color: #22005e;
    font-size: 0.9rem;
}

.model-desc {
    color: #666;
    font-size: 0.8rem;
}

/* Podium Models */
.podium-models {
    display: grid;
    gap: 1rem;
}

.model-category {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #15a28c;
}

.category-label {
    font-weight: bold;
    color: #22005e;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.category-models {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-models .model-name {
    background: rgba(21, 162, 140, 0.1);
    color: #15a28c;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(21, 162, 140, 0.2);
}

/* STEM Lab Visualization */
.stem-lab-viz {
    margin: 2rem 0;
}

.lab-container {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    font-size: 0.9rem;
}

.lab-header {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.lab-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.lab-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lab-status .status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.lab-status .status-indicator.active {
    background: #37ec7e;
    box-shadow: 0 0 8px rgba(55, 236, 126, 0.6);
    animation: pulse-green 2s ease-in-out infinite;
}

.lab-status span {
    color: #37ec7e;
    font-size: 0.8rem;
    font-weight: 500;
}

.lab-workspace {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.workstation {
    background: #333;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.workstation:hover {
    background: #3a3a3a;
    transform: translateX(5px);
}

.workstation .station-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.workstation .station-icon i {
    font-size: 1.2rem;
    color: white;
}

.station-info {
    flex: 1;
}

.station-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.station-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.station-progress .progress-bar {
    flex: 1;
    height: 6px;
    background: #444;
    border-radius: 3px;
    overflow: hidden;
}

.station-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #15a28c, #37ec7e);
    border-radius: 3px;
    transition: width 1s ease;
}

.station-progress .progress-text {
    color: #37ec7e;
    font-weight: bold;
    font-size: 0.8rem;
    min-width: 30px;
}

.lab-features {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #333;
}

.lab-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #ccc;
}

.lab-feature i {
    font-size: 1rem;
    color: #15a28c;
}

/* STEM Categories */
.stem-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stem-category {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(21, 162, 140, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #15a28c;
}

.stem-category:hover {
    background: rgba(21, 162, 140, 0.1);
    transform: translateX(5px);
}

.stem-category .category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stem-category .category-icon i {
    font-size: 1.8rem;
    color: white;
}

.stem-category .category-content h5 {
    color: #22005e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stem-category .category-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Equipment CTA Section */
.equipment-cta-section {
    background: linear-gradient(135deg, #22005e 0%, #15a28c 100%);
    position: relative;
}

.cta-equipment-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(55, 236, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(21, 162, 140, 0.15) 0%, transparent 50%);
    animation: pattern-float 25s ease-in-out infinite;
}

/* Responsive Design - Technology Equipment */
@media (max-width: 768px) {
    .equipment-hub {
        max-width: 400px;
        height: 350px;
        padding: 20px;
    }
    
    .central-device {
        width: 100px;
        height: 100px;
    }
    
    .equipment-icon {
        width: 50px;
        height: 50px;
    }
    
    .equipment-icon i {
        font-size: 20px;
    }
    
    .cart-container,
    .podium-container {
        padding: 1rem;
    }
    
    .cart-header,
    .screen-header {
        padding: 0.75rem;
    }
    
    .cart-body,
    .screen-content {
        padding: 1rem;
    }
    
    .device-slots {
        gap: 0.75rem;
    }
    
    .device-slot {
        padding: 0.5rem;
    }
    
    .control-sections {
        gap: 0.75rem;
    }
    
    .control-section {
        padding: 0.5rem;
    }
    
    .feature-categories {
        gap: 0.75rem;
    }
    
    .feature-category {
        padding: 0.75rem;
    }
    
    .model-grid {
        gap: 0.25rem;
    }
    
    .model-item {
        padding: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .podium-features-grid {
        gap: 0.75rem;
    }
    
    .podium-feature {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .solution-components {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.5rem;
    }
    
    .component-item {
        padding: 0.5rem;
    }
    
    .lab-workspace {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .workstation {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .stem-categories {
        gap: 1rem;
    }
    
    .stem-category {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .stem-category .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .stem-category .category-icon i {
        font-size: 1.5rem;
    }
    
    .equipment-highlights .row {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Fix for home page solution icons - make them green linear gradient instead of white */
.solutions-section .solution-icon i {
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Fallback for browsers that don't support background-clip: text */
.solutions-section .solution-icon i {
    color: #15a28c;
}

/* Modern gradient text approach for better browser support */
.solutions-section .solution-icon i {
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hover state to maintain consistency */
.solutions-section .solution-card:hover .solution-icon i {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    background: none;
}

/* Fix for Why Choose Maharat 71 section icons - make them green linear gradient instead of white */
.why-choose-section .feature-icon i {
    background: linear-gradient(135deg, #15a28c 0%, #37ec7e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Fallback for browsers that don't support gradient text */
.why-choose-section .feature-icon i {
    color: #15a28c;
}

/* Maintain flip card hover effects */
.why-choose-section .flip-card:hover .feature-icon i {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    background: none;
}