:root {
    --primary-color: #4ecdc4;
    --secondary-color: #3db9b1;
    --accent-color: #5ce1d6;
    --dark-bg: #0a1628;
    --dark-bg-gradient: linear-gradient(135deg, #0a1628 0%, #0d1f35 50%, #0a1628 100%);
    --light-bg: #f8f9fa;
    --text-color: #333;
    --light-text: #f8f9fa;
    --text-muted: #94a3b8;
    --card-bg: #1a2942;
    --border-color: rgba(78, 205, 196, 0.2);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* =============================================
   HEADER & NAVIGATION - Enhanced Modern Design
   ============================================= */
header {
    background: linear-gradient(180deg, rgba(10, 21, 40, 0.98) 0%, rgba(10, 21, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--light-text);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

header.scrolled {
    background: rgba(10, 21, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

/* UX-011: Sticky header hide on scroll down (mobile) */
header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon-wrapper {
    position: relative;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 25px rgba(78, 205, 196, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.logo-text .brand-tagline {
    font-size: 0.7rem;
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(78, 205, 196, 0.08);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::before {
    width: 60%;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: linear-gradient(180deg, #0f1f35 0%, #0a1525 100%);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(78, 205, 196, 0.15);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #0f1f35;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(78, 205, 196, 0.1);
    color: var(--accent-color);
    padding-left: 25px;
}

/* Contact CTA Button */
.nav-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: #0a1525 !important;
    font-weight: 600;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    margin-left: 10px;
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.nav-cta i {
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(78, 205, 196, 0.2);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #0a1525 0%, #060d17 100%);
    border-left: 1px solid rgba(78, 205, 196, 0.15);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
}

.mobile-logo small {
    color: var(--primary-color);
}

.mobile-close-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

/* Mobile Nav Links */
.mobile-nav-links {
    list-style: none;
    padding: 20px;
    margin: 0;
    flex: 1;
}

.mobile-nav-links > li {
    margin-bottom: 5px;
}

.mobile-nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-links > li > a i:first-child {
    width: 20px;
    text-align: center;
    color: var(--accent-color);
}

.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > a.active {
    background: rgba(78, 205, 196, 0.1);
    color: var(--accent-color);
}

.mobile-dropdown-arrow {
    margin-left: auto;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 10px 16px 10px 52px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-menu li a:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    background: rgba(78, 205, 196, 0.05);
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    text-align: center;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--accent-color);
    color: #0a1525;
}

.mobile-email {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.mobile-email i {
    margin-right: 8px;
    color: var(--accent-color);
}

/* Header Spacer for fixed header */
body {
    padding-top: 75px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
    color: var(--light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background-color: #fff;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Industries */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-tag {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
}

/* =============================================
   FOOTER STYLES - Enhanced Modern Design
   ============================================= */
footer {
    background: linear-gradient(180deg, #0a1525 0%, #060d17 100%);
    color: var(--light-text);
    padding: 0 0 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Footer Wave Decoration */
.footer-wave {
    position: relative;
    color: rgba(78, 205, 196, 0.08);
    margin-bottom: 40px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Footer Background Glow Effects */
footer::before {
    content: '';
    position: absolute;
    top: 100px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    min-width: 0;
    position: relative;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 12px;
    white-space: nowrap;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.footer-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(78, 205, 196, 0.15);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 30px;
}

.footer-brand h4::after {
    display: none;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo-img {
    height: 55px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(78, 205, 196, 0.3));
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.footer-logo .brand-tagline {
    font-size: 0.7rem;
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

/* Social Icons Enhanced */
.footer-brand .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #0a1525;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Footer Links Enhanced */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 0;
}

/* Reset nav styles inside footer */
footer nav {
    display: block;
    height: auto;
    align-items: initial;
    justify-content: initial;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact List Enhanced */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-list a:hover {
    color: var(--accent-color);
}

/* Newsletter Section Enhanced */
.newsletter-section {
    min-width: 280px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.newsletter-form {
    margin-top: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border: none;
    background: transparent;
    color: var(--light-text);
    font-size: 0.95rem;
    outline: none;
    min-width: 0;
}

.newsletter-input-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group button {
    padding: 14px 20px;
    border: none;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: #0a1525;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-input-group button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.newsletter-input-group button:hover {
    background: var(--primary-color);
}

.newsletter-input-group button:hover i {
    transform: translateX(3px);
}

.newsletter-input-group button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-hint {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.newsletter-hint i {
    font-size: 0.7rem;
    color: var(--accent-color);
}

/* Footer Bottom Enhanced */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.copyright strong {
    color: var(--accent-color);
}

.footer-founder p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-founder strong {
    color: var(--light-text);
}

.footer-founder i.pulse {
    color: #ef4444;
    animation: heartPulse 1.5s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--accent-color);
    white-space: nowrap;
}

.footer-badges .badge i {
    font-size: 0.7rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.social-icons a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Card Link Styles */
a.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.card-link:hover {
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

a.card-link:hover .learn-more i {
    transform: translateX(5px);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}

/* Service/Industry Hero - Enhanced Design */
.service-hero, .industry-hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #0a1628 100%);
}

/* Animated gradient background overlay */
.service-hero::before, .industry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(61, 185, 177, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Grid pattern overlay */
.service-hero::after, .industry-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(78, 205, 196, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.service-hero .container, .industry-hero .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Breadcrumb */
.service-hero .breadcrumb, .industry-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-hero .breadcrumb a, .industry-hero .breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(78, 205, 196, 0.1);
}

.service-hero .breadcrumb a:hover, .industry-hero .breadcrumb a:hover {
    background: rgba(78, 205, 196, 0.2);
    color: #fff;
}

.service-hero .breadcrumb span, .industry-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.service-hero .breadcrumb > span:last-child, .industry-hero .breadcrumb > span:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.service-hero h1, .industry-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.service-hero h1 i, .industry-hero h1 i {
    font-size: 2.5rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(78, 205, 196, 0.05));
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: 
        0 10px 40px rgba(78, 205, 196, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-hero p, .industry-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Decorative floating elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), transparent);
    pointer-events: none;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-decoration-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Small Hero Variant - for legal and utility pages */
.small-hero {
    padding: 100px 0 60px !important;
}

.small-hero h1 {
    font-size: 2.5rem !important;
}

.small-hero h1 i {
    font-size: 2rem !important;
    padding: 16px !important;
}

/* Hero Subtitle in Service/Industry Heroes */
.service-hero .hero-subtitle,
.industry-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Industry/Service Intro Section - Enhanced */
.industry-intro, .service-intro {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.intro-content .btn {
    margin-top: 20px;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.intro-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.15);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.solution-card h3 {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.solution-card p {
    color: #666;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 100%);
    color: #fff;
}

.benefits-section .section-title {
    color: var(--accent-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-item {
    padding: 30px;
}

.benefit-stat {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =============================================
   SERVICE PAGE SECTIONS - Enhanced Design
   ============================================= */

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.3), transparent);
}

/* Features Grid - Enhanced */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Card - Premium Design */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    color: #fff;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Process Section - Enhanced */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    position: relative;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
    transition: transform 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-bg);
    font-weight: 600;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Case Studies */
.case-studies-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.case-content p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Section - Enhanced */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0d2137 50%, var(--secondary-color) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.cta-section .btn {
    background: linear-gradient(135deg, var(--accent-color), #3db9b1);
    color: var(--dark-bg);
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(78, 205, 196, 0.4);
    transition: all 0.4s ease;
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(78, 205, 196, 0.5);
}

/* Tech Stack Section - Service Pages */
.tech-stack {
    padding: 80px 0;
    background: #fff;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.tech-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.tech-item:hover img {
    filter: grayscale(0%);
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--dark-bg);
    font-weight: 500;
}

/* =============================================
   CHATBOTS PAGE - Unique Sections
   ============================================= */

/* Capabilities Section */
.capabilities-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

.capability-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.capability-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.capability-item:hover::before {
    opacity: 1;
}

.capability-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(78, 205, 196, 0.3);
}

.capability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.capability-item:hover .capability-icon {
    background: #fff;
    transform: scale(1.1);
}

.capability-icon i {
    font-size: 1.8rem;
    color: #fff;
    transition: color 0.4s ease;
}

.capability-item:hover .capability-icon i {
    color: var(--primary-color);
}

.capability-item h3 {
    font-size: 1.15rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.capability-item:hover h3 {
    color: #fff;
}

.capability-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.capability-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Channels Section */
.channels-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0d2137 100%);
    position: relative;
    overflow: hidden;
}

.channels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.channels-section .section-title {
    color: #fff;
}

.channels-section .section-title::after {
    background: linear-gradient(90deg, var(--accent-color), #6ee7de);
}

.channels-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    min-width: 120px;
}

.channel-item:hover {
    background: rgba(78, 205, 196, 0.15);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-8px);
}

.channel-item i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: transform 0.4s ease;
}

.channel-item:hover i {
    transform: scale(1.2);
}

.channel-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .demo-content {
        grid-template-columns: 1fr;
    }
}

.demo-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.demo-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.demo-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.demo-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .demo-stats {
        grid-template-columns: 1fr;
    }
}

.demo-stats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.demo-stats li:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-stats li strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

/* Tech Icons Section */
.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.tech-icon {
    text-align: center;
}

.tech-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.tech-icon span {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

/* ============================================
   CURRICULUM DEVELOPMENT PAGE STYLES
   ============================================ */

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.section-badge i {
    font-size: 0.85rem;
}

/* Competency Section */
.competency-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
}

.competency-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.competency-header .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.competency-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.competency-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.competency-card.highlight {
    border-left: 4px solid var(--primary-color);
}

.competency-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.competency-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.competency-info h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.competency-info p {
    color: #666;
    line-height: 1.7;
}

.competency-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pillar {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.pillar-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.pillar h4 {
    font-size: 1rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.pillar p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.competency-benefits {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
}

.competency-benefits h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* NQF Section */
.nqf-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: #fff;
}

.nqf-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.nqf-header .section-badge {
    background: rgba(78, 205, 196, 0.15);
    border-color: rgba(78, 205, 196, 0.3);
}

.nqf-header .section-title {
    color: #fff;
}

.nqf-header .section-title::after {
    background: var(--primary-color);
}

.nqf-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.nqf-overview {
    margin-bottom: 50px;
}

.nqf-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.nqf-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nqf-icon i {
    font-size: 2rem;
    color: #fff;
}

.nqf-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.nqf-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

.nqf-levels {
    margin-bottom: 50px;
}

.nqf-levels-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.level-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.level-item:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.level-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.level-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.level-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.nqf-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.nqf-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nqf-feature:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: var(--primary-color);
}

.nqf-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.nqf-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.nqf-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Approach Section Enhanced */
.approach-section {
    padding: 100px 0;
    background: #fff;
}

.approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.approach-step {
    position: relative;
    background: var(--light-bg);
    padding: 40px 30px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.approach-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background: #fff;
}

.approach-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.approach-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.approach-step h3 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.approach-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Curriculum Areas Enhanced */
.curriculum-areas {
    padding: 100px 0;
    background: var(--light-bg);
}

.areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.area-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.area-card:hover .area-image img {
    transform: scale(1.1);
}

.area-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.area-content {
    padding: 25px;
}

.area-content h3 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.area-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content .section-badge {
    margin-bottom: 20px;
}

.why-choose-content h2 {
    font-size: 2.2rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-content > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wc-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wc-feature:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.wc-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.wc-text h4 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.wc-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* CTA Section Enhanced */
.cta-section .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--dark-bg);
}

/* Responsive Curriculum Styles */
@media (max-width: 1200px) {
    .competency-content {
        grid-template-columns: 1fr;
    }
    
    .levels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nqf-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .competency-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .competency-section,
    .nqf-section,
    .approach-section,
    .curriculum-areas,
    .why-choose-section {
        padding: 60px 0;
    }
    
    .competency-card {
        flex-direction: column;
        text-align: center;
    }
    
    .competency-pillars {
        grid-template-columns: 1fr;
    }
    
    .nqf-card {
        flex-direction: column;
        text-align: center;
    }
    
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nqf-features {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Content Type Grid (Marketing) */
.content-gen-section {
    padding: 80px 0;
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.content-type {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.content-type:hover {
    transform: translateY(-5px);
}

.content-type i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content-type h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.content-type p {
    font-size: 0.85rem;
    color: #666;
}

/* Marketing Tools */
.marketing-tools {
    padding: 60px 0;
    background: var(--light-bg);
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tool-item img {
    width: 50px;
    height: 50px;
}

.tool-item span {
    font-size: 0.9rem;
    color: #666;
}

/* Healthcare Imaging Section */
.imaging-section {
    padding: 80px 0;
    background: #fff;
}

.imaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.imaging-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background: #fff;
}

.imaging-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.imaging-content {
    padding: 25px;
}

.imaging-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Compliance Section */
.compliance-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.compliance-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.compliance-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.compliance-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.compliance-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Vision Section (Manufacturing) */
.vision-section {
    padding: 80px 0;
    background: #fff;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vision-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.vision-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.vision-feature > i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.vision-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.vision-feature p {
    font-size: 0.95rem;
    color: #666;
}

/* Maintenance Section */
.maintenance-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.maintenance-step {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.maintenance-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.maintenance-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.maintenance-step p {
    font-size: 0.9rem;
    color: #666;
}

/* Technologies Section */
.technologies-section {
    padding: 80px 0;
    background: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.tech-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tech-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.tech-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Curriculum Modules */
.modules-section {
    padding: 80px 0;
    background: #fff;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.module-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.module-card h3 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.module-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive Additions */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-contact,
    .newsletter-section {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-brand .social-icons {
        justify-content: center;
    }
    
    .footer-description {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-section h4 {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .footer-links li {
        width: auto;
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
        text-align: center;
    }
    
    .contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .newsletter-section {
        grid-column: span 1;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Responsive Hero Section */
    .service-hero, .industry-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero h1, .industry-hero h1 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .service-hero h1 i, .industry-hero h1 i {
        font-size: 2rem;
        padding: 16px;
    }
    
    .service-hero p, .industry-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .service-hero .breadcrumb, .industry-hero .breadcrumb {
        gap: 8px;
        padding: 0 15px;
    }
    
    .service-hero .breadcrumb a, .industry-hero .breadcrumb a {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .hero-decoration {
        display: none;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-wave svg {
        height: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .newsletter-section {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo .logo-text {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .newsletter-input-group input[type="email"] {
        border-radius: 12px 12px 0 0;
        text-align: center;
    }
    
    .newsletter-input-group button {
        border-radius: 0 0 12px 12px;
        justify-content: center;
        padding: 14px;
    }
    
    .logo-text .brand-name {
        font-size: 1.2rem;
    }
    
    .logo-text .brand-tagline {
        font-size: 0.6rem;
    }
    
    .intro-grid,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-image {
        order: -1;
    }
    
    .service-hero h1, .industry-hero h1 {
        font-size: 1.8rem;
    }
    
    .benefit-stat {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
}

/* ==========================================
   ENHANCED HOME PAGE STYLES
   ========================================== */

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(78, 205, 196, 0.3); }
    50% { box-shadow: 0 0 40px rgba(78, 205, 196, 0.6); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.delay-3 { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Hero Section */
.hero-home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-home .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-particles::before {
    top: 10%;
    left: 10%;
}

.hero-particles::after {
    bottom: 10%;
    right: 10%;
    animation-delay: -4s;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(78, 205, 196, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--primary-color);
}

/* Typing Effect Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--accent-color);
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-home h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 550px;
    min-height: 3.75rem; /* Prevents layout shift during typing */
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    display: block;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 3;
}

/* Tech Stack Section */
.tech-stack-section {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.tech-label {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.tech-logo {
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.tech-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.tech-logo img {
    height: 45px;
    width: auto;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card.card-1 {
    top: 20px;
    right: -30px;
}

.floating-card.card-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: -2s;
}

.about-content {
    padding-left: 20px;
}

.section-badge {
    display: inline-block;
    background: rgba(78, 205, 196, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-bg);
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark-bg);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: #f8fcfd;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.06) 0%, rgba(255,255,255,0) 70%);
    top: -20%;
    left: -10%;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 117, 230, 0.04) 0%, rgba(255,255,255,0) 70%);
    bottom: -10%;
    right: -10%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

.section-header.light p {
    opacity: 0.9;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-showcase {
        grid-template-columns: 1fr;
    }
}

.service-card-large {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    text-decoration: none;
    min-height: 320px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.03);
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.05);
    border-color: rgba(78, 205, 196, 0.2);
}

.service-card-large:hover .service-bg-image {
    opacity: 0.1;
    transform: scale(1.1) rotate(2deg);
}

.service-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.service-icon-wrap {
    width: 65px;
    height: 65px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon-wrap i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card-large:hover .service-icon-wrap {
    background: var(--primary-color);
    transform: rotate(5deg);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.service-card-large:hover .service-icon-wrap i {
    color: #fff;
}

.service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    color: var(--dark-bg);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.service-card-large:hover .service-link {
    color: var(--primary-color);
    gap: 12px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark-bg);
    color: var(--dark-bg);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--dark-bg);
    color: #fff;
}

.text-center {
    text-align: center;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.industry-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.industry-card:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
}

.industry-icon i {
    font-size: 1.6rem;
    color: #fff;
}

.industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 100px 0;
    background: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 40px;
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.why-text h4 {
    font-size: 1.15rem;
    color: var(--dark-bg);
    margin-bottom: 6px;
}

.why-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Process Section Home */
.process-section-home {
    padding: 100px 0;
    background: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.process-step-item h3 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.process-step-item p {
    color: #666;
    font-size: 0.95rem;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin-top: 50px;
    opacity: 0.5;
}

/* CTA Section Home */
.cta-section-home {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3db9b1 50%, var(--secondary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.cta-bg-animation {
    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%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section-home h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section-home p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--dark-bg);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 14px 33px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Responsive for Home Page */
@media (max-width: 992px) {
    .hero-home .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-home h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-home h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-content h2,
    .why-us-content h2,
    .section-header h2,
    .cta-section-home h2 {
        font-size: 1.8rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        display: none;
    }
    
    .tech-logos {
        gap: 30px;
    }
    
    .tech-logo img {
        height: 35px;
    }
    
    .about-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* =============================================
   ABOUT PAGE - Enhanced Design
   ============================================= */

/* About Hero - Premium Design */
.about-hero {
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.4; }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(78, 205, 196, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s infinite;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.hero-particles span:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; animation-duration: 18s; }
.hero-particles span:nth-child(3) { left: 60%; top: 40%; animation-delay: 4s; animation-duration: 14s; }
.hero-particles span:nth-child(4) { left: 80%; top: 60%; animation-delay: 6s; animation-duration: 16s; }
.hero-particles span:nth-child(5) { left: 90%; top: 10%; animation-delay: 8s; animation-duration: 20s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
    25% { transform: translateY(-30px) translateX(10px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.3; }
    75% { transform: translateY(-30px) translateX(20px) scale(1.1); opacity: 0.5; }
}

/* Enhanced Breadcrumb */
.about-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.about-hero .breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 25px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.about-hero .breadcrumb a:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
}

.about-hero .breadcrumb-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.about-hero .breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Icon with Animated Rings */
.hero-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-wrapper i {
    font-size: 3rem;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.5));
}

.hero-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.hero-icon-ring-2 {
    width: 140%;
    height: 140%;
    border-color: rgba(78, 205, 196, 0.15);
    animation-delay: 0.5s;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

/* Hero Title */
.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, #6ee7de 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.about-hero .hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-group .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-cta-group .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-cta-group .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-cta-group .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #3db9b1);
    border: none;
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.hero-cta-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-arrow i {
    animation: scrollBounce 2s infinite;
    font-size: 0.9rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Animations */
.animate-fade-down {
    animation: fadeDown 0.8s ease both;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease 0.2s both;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease 0.4s both;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.6s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.8s;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.vision-card::before {
    background: linear-gradient(90deg, var(--primary-color), #3db9b1);
}

.mission-card::before {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vision-card .vm-icon {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
}

.vision-card .vm-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.05));
}

.mission-card .vm-icon i {
    font-size: 2.2rem;
    color: #667eea;
}

.vm-card h2 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.vm-tagline {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.mission-card .vm-tagline {
    color: #667eea;
}

.vm-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.vm-points {
    list-style: none;
    padding: 0;
}

.vm-points li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #444;
}

.vm-points li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.mission-card .vm-points li i {
    color: #667eea;
}

/* Core Values Section */
.values-section {
    padding: 100px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: var(--light-bg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    background: #fff;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content .section-badge {
    margin-bottom: 15px;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 25px;
}

.story-lead {
    font-size: 1.2rem;
    color: #444;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.story-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.story-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-image-wrapper:hover .story-image-overlay {
    opacity: 1;
}

.story-image-overlay i {
    font-size: 4rem;
    color: #fff;
    cursor: pointer;
}

.story-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    max-width: 280px;
}

.story-floating-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.story-floating-card p {
    font-size: 0.95rem;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* What We Do Section */
.whatwedo-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.whatwedo-section .section-header h2,
.whatwedo-section .section-header p {
    color: #fff;
}

.whatwedo-section .section-badge {
    background: rgba(78, 205, 196, 0.2);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-showcase-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-showcase-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-showcase-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-showcase-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.service-showcase-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: #fff;
}

.founder-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image-area {
    position: relative;
}

.founder-image-frame {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 8px;
}

.founder-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-placeholder i {
    font-size: 8rem;
    color: #bbb;
}

.founder-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.founder-social a {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.founder-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.founder-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #f6d365, #fda085);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(253, 160, 133, 0.4);
}

.founder-badge i {
    font-size: 1rem;
}

.founder-content .section-badge {
    margin-bottom: 15px;
}

.founder-content h2 {
    font-size: 2.2rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.founder-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.founder-title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-bio {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.expertise-tag {
    background: rgba(78, 205, 196, 0.1);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.expertise-tag i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.founder-quote {
    background: var(--light-bg);
    padding: 25px 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    margin-top: 25px;
}

.founder-quote i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: block;
}

.founder-quote p {
    font-size: 1.1rem;
    color: #444;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section */
.whychoose-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.whychoose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.whychoose-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.whychoose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.whychoose-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(78, 205, 196, 0.15);
    line-height: 1;
    margin-bottom: 15px;
}

.whychoose-card:hover .whychoose-number {
    color: rgba(78, 205, 196, 0.3);
}

.whychoose-card h3 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.whychoose-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg), #0d2145);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 1.1rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-visual {
        order: -1;
    }
    
    .story-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image-area {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .whychoose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }
    
    .hero-icon-wrapper i {
        font-size: 2.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-glow-1,
    .hero-glow-2 {
        width: 300px;
        height: 300px;
    }
    
    .vm-card {
        padding: 35px 25px;
    }
    
    .vm-card h2 {
        font-size: 1.6rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .stat-item {
        flex: 1 1 calc(33% - 20px);
        min-width: 100px;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .founder-content h2 {
        font-size: 1.8rem;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .whychoose-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

/* ==============================================
   UX ENHANCEMENTS - Sprint 1
   ============================================== */

/* UX-003: Enhanced Primary CTA Buttons */
.btn-primary-enhanced {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    padding: 18px 38px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-enhanced:hover::before {
    left: 100%;
}

.btn-primary-enhanced:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.5);
}

.btn-primary-enhanced:active {
    transform: translateY(-2px) scale(1.01);
}

/* Button pulse animation on page load */
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(78, 205, 196, 0.6); }
}

.btn-primary-enhanced {
    animation: btnPulse 2s ease-in-out infinite;
}

.btn-primary-enhanced:hover {
    animation: none;
}

/* UX-004: Hero Trust Badge */
.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    width: fit-content;
}

.hero-trust-badge i {
    color: var(--primary-color);
}

.hero-trust-badge .separator {
    opacity: 0.5;
}

/* UX-002: Mobile Hero Image Fix */
@media (max-width: 992px) {
    .hero-image {
        display: block;
        margin-top: 40px;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-trust-badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .hero-trust-badge .separator {
        display: none;
    }
    
    .btn-primary-enhanced {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* UX-005 & UX-006: Form Validation Styles */
.form-group {
    position: relative;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.05);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-group .validation-icon {
    position: absolute;
    right: 12px;
    top: 42px;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group.success .validation-icon.success-icon {
    opacity: 1;
    color: #10b981;
}

.form-group.error .validation-icon.error-icon {
    opacity: 1;
    color: #ef4444;
}

.form-group .error-message {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 5px;
    padding-left: 5px;
}

.form-group.error .error-message {
    display: block;
}

/* Form submission states */
.btn-submit {
    position: relative;
    min-width: 180px;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit .spinner {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(10, 22, 40, 0.3);
    border-top-color: var(--dark-bg);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-submit.loading .spinner {
    display: block;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success/Error alerts enhanced */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.alert-success i {
    color: #10b981;
    font-size: 1.5rem;
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

.alert-error i {
    color: #ef4444;
    font-size: 1.5rem;
}

/* Character counter styling */
.char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.char-count.warning {
    color: #f59e0b;
}

.char-count.error {
    color: #ef4444;
}

/* UX-014: Response time indicator */
.response-time-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 18px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #065f46;
}

.response-time-badge i {
    color: #10b981;
    font-size: 1.1rem;
}

/* ========================================
   SPRINT 2: UX Enhancements
   ======================================== */

/* UX-007: Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1f35 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(78, 205, 196, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 205, 196, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--primary-color);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

/* UX-008: Client Logos Section */
.clients-section {
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.clients-label {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo {
    transition: all 0.3s ease;
    opacity: 0.5;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    padding: 15px 25px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.client-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
}

.client-placeholder span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logo:hover .client-placeholder {
    border-color: var(--primary-color);
    background: rgba(78, 205, 196, 0.05);
    color: #fff;
}

@media (max-width: 768px) {
    .clients-logos {
        gap: 20px;
    }
    
    .client-placeholder {
        min-width: 100px;
        padding: 12px 18px;
    }
    
    .client-placeholder i {
        font-size: 1.5rem;
    }
}

/* UX-011: Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #3db9b0);
    color: var(--dark-bg);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
    transition: all 0.3s ease;
    animation: floatBounce 3s infinite;
}

.floating-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.5);
    color: var(--dark-bg);
}

.floating-cta-btn i {
    font-size: 1.2rem;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .floating-cta-text {
        display: none;
    }
    
    .floating-cta-btn {
        padding: 16px;
        border-radius: 50%;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.4);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* =============================================
   LEGAL & POLICY PAGES - Unified Styling
   ============================================= */

/* Small Hero for Legal Pages */
.small-hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0d2137 50%, var(--dark-bg) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.small-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(61, 185, 177, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.small-hero .container {
    position: relative;
    z-index: 1;
}

.small-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--light-text);
    font-weight: 700;
}

.small-hero h1 i {
    color: var(--primary-color);
    margin-right: 12px;
}

.small-hero .hero-subtitle {
    opacity: 0.8;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Legal Content Section */
.legal-content {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1f35 100%);
    min-height: 60vh;
}

/* Legal Card Container */
.legal-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #1e3352 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(78, 205, 196, 0.1);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
}

/* Table of Contents Sidebar */
.legal-toc {
    position: sticky;
    top: 100px;
    align-self: start;
    padding: 25px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.legal-toc h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-toc h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 12px;
}

.legal-toc a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 2px solid transparent;
}

.legal-toc a:hover {
    color: var(--primary-color);
    background: rgba(78, 205, 196, 0.08);
    border-left-color: var(--primary-color);
}

/* Legal Article Content */
.legal-article {
    color: var(--light-text);
}

.legal-article section {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.legal-article section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-article h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-article h2::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.legal-article h3 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-article p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1rem;
}

.legal-article strong {
    color: var(--light-text);
}

.legal-article ul {
    color: var(--text-muted);
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.legal-article li {
    margin-bottom: 12px;
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
}

.legal-article li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.legal-article a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-article a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(61, 185, 177, 0.05));
    border: 1px solid rgba(78, 205, 196, 0.25);
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
    text-align: center;
}

.highlight-box h3 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 1.4rem;
}

.highlight-box h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.highlight-box p {
    margin-bottom: 8px;
    color: var(--light-text);
}

/* Contact Info Box in Legal Pages */
.legal-article .contact-info {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.05));
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    border: 1px solid var(--border-color);
}

.legal-article .contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-article .contact-info p:last-child {
    margin-bottom: 0;
}

.legal-article .contact-info i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1.1rem;
}

.legal-article .contact-info a {
    color: var(--primary-color);
    font-weight: 500;
}

.legal-article .contact-info a:hover {
    color: var(--accent-color);
}

/* Policy Footer Note */
.policy-footer {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(78, 205, 196, 0.03));
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 20px;
}

.policy-footer p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.policy-footer strong {
    color: var(--primary-color);
}

/* Responsive Legal Pages */
@media (max-width: 991px) {
    .legal-card {
        grid-template-columns: 1fr;
        padding: 35px;
    }
    
    .legal-toc {
        position: static;
        margin-bottom: 30px;
    }
    
    .small-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .legal-card {
        padding: 25px;
    }
    
    .legal-toc {
        padding: 20px;
    }
    
    .small-hero {
        padding: 90px 0 40px;
    }
    
    .small-hero h1 {
        font-size: 1.75rem;
    }
    
    .small-hero h1 i {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .legal-article h2 {
        font-size: 1.3rem;
    }
    
    .legal-content {
        padding: 40px 0 70px;
    }
}
