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

/* Custom Logo Cursor - Global */
/* Using company logo as cursor */
* {
    cursor: url('logo.jpg') 12 12, auto;
}

/* Pointer cursor for interactive elements - Logo cursor */
a, button, .btn, .service-link, .nav-menu a, .dropdown-menu a, 
.client-carousel-btn, .hero-carousel-arrow, .mobile-menu-toggle,
input[type="submit"], input[type="button"], [role="button"],
.whatsapp-button, label, select, .client-logo-enhanced {
    cursor: url('logo.jpg') 12 12, pointer !important;
}

:root {
    /* ============================================
       COLOR SCHEME - Engineering Feel
       ============================================ */
    /* Primary Colors */
    --navy-blue: #1e3a5f;        /* Navy Blue - Primary dark */
    --steel-blue: #2c5282;       /* Steel Blue - Primary medium */
    --charcoal-grey: #36454f;    /* Charcoal Grey - Secondary dark */
    --white: #ffffff;            /* White - Background & text */
    
    /* Accent Colors - Use Sparingly */
    --accent-orange: #ff6b35;    /* Orange - Accent (sparingly) */
    --accent-green: #4caf50;     /* Green - Accent (sparingly) */
    
    /* Supporting Colors */
    --light-grey: #f5f5f5;       /* Light Grey - Backgrounds */
    --text-color: #333;          /* Text Color - Dark grey */
    
    /* Design colors from image */
    --dark-blue-overlay: #1a2d47;
    --teal-gradient-start: #20b2aa;
    --teal-gradient-end: #87ceeb;
    
    /* Legacy variables mapped to new scheme */
    --primary-color: var(--steel-blue);
    --secondary-color: var(--navy-blue);
    --dark-color: var(--charcoal-grey);
    --light-color: var(--light-grey);
    
    /* Fonts - Engineering Feel */
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Roboto', 'Open Sans', sans-serif;
    --font-primary: var(--font-body);
    
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    background-attachment: fixed;
}

/* Animated Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(44, 82, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 58, 95, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
        opacity: 0.8;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.15);
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-color);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(30, 58, 95, 0.2));
}

.logo-img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 6px 12px rgba(30, 58, 95, 0.3));
}

.logo-text {
    display: none;
}

.logo-title {
    display: none;
}

.logo-tagline {
    display: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--steel-blue), var(--accent-orange));
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--steel-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--steel-blue);
}

.nav-contact-numbers {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-contact-number {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-contact-number:hover {
    color: var(--steel-blue);
}

.nav-contact-number svg {
    flex-shrink: 0;
    color: var(--steel-blue);
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 10px 0;
    margin-top: 10px;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--steel-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--charcoal-grey) 100%);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 900px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/corporate-team-workers-it-company.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 0.8s ease-in-out;
    opacity: 1;
}

.hero-background.fade-out {
    opacity: 0;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-triangular-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 0;
    border-right: 60vw solid transparent;
    border-bottom: 100vh solid var(--dark-blue-overlay);
    z-index: 1;
    opacity: 0.85;
}


.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.hero-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left {
    left: 20px;
}

.hero-arrow-right {
    right: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    margin-left: 0;
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.highlight {
    color: var(--accent-orange);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--navy-blue) 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    padding: 14px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::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:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-blue) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Services Overview */
.services-overview {
    padding: 0px 0;
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-blue) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--steel-blue), var(--accent-orange));
    border-radius: 2px;
    animation: expandLine 1s ease forwards;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(30, 58, 95, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95) rotateX(10deg);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(44, 82, 130, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.service-card.scroll-in {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
}

.service-card.scroll-in:hover {
    transform: translateY(-15px) scale(1.03) rotateY(5deg);
    box-shadow: 
        0 20px 60px rgba(30, 58, 95, 0.2),
        0 0 40px rgba(44, 82, 130, 0.1);
    border-color: rgba(44, 82, 130, 0.3);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 14px;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    filter: drop-shadow(0 8px 16px rgba(44, 82, 130, 0.3));
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--steel-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    color: var(--navy-blue);
    transform: translateX(5px);
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.about-text strong {
    color: var(--steel-blue);
}

.about-image {
    height: 400px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(30, 58, 95, 0.2),
        0 0 40px rgba(44, 82, 130, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 30px 80px rgba(30, 58, 95, 0.3),
        0 0 60px rgba(44, 82, 130, 0.2);
}

.about-image:hover .about-img::after {
    opacity: 1;
}

.image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: var(--light-color);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
}

.client-logos {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.client-logo {
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: 
        0 8px 32px rgba(30, 58, 95, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
    display: block;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(30, 58, 95, 0.2),
        0 0 30px rgba(44, 82, 130, 0.1);
    border-color: rgba(44, 82, 130, 0.3);
}

.client-logo:hover img {
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.client-logo span {
    font-weight: 600;
    color: var(--dark-color);
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--steel-blue), var(--navy-blue));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Enhanced Sections for Index Page */

/* Section Header with Badge */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
    border: 1px solid rgba(44, 82, 130, 0.2);
    border-radius: 50px;
    color: var(--steel-blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.section-badge::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;
}

.section-header:hover .section-badge::before {
    left: 100%;
}

/* Enhanced Service Cards */
.service-card-enhanced {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.service-card-inner {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(30, 58, 95, 0.1),
        0 0 20px rgba(44, 82, 130, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--steel-blue), var(--accent-orange), var(--steel-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

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

.service-card-enhanced:hover .service-card-inner {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(30, 58, 95, 0.2),
        0 0 40px rgba(44, 82, 130, 0.15);
    border-color: rgba(44, 82, 130, 0.3);
}

.service-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.service-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card-enhanced:hover .service-icon-bg {
    transform: translate(-50%, -50%) scale(1.5);
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.2) 0%, rgba(30, 58, 95, 0.2) 100%);
}

.service-card-enhanced .service-icon {
    position: relative;
    z-index: 1;
    font-size: 48px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-enhanced:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card-enhanced h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--navy-blue);
    transition: color 0.3s ease;
}

.service-card-enhanced:hover h3 {
    color: var(--steel-blue);
}

.service-card-enhanced p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card-enhanced .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--steel-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-card-enhanced .service-link svg {
    transition: transform 0.3s ease;
}

.service-card-enhanced .service-link:hover {
    color: var(--navy-blue);
    gap: 12px;
}

.service-card-enhanced .service-link:hover svg {
    transform: translateX(5px);
}

/* Enhanced Stats Section */
.stats-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-grey) 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(44, 82, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-container-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-box-enhanced {
    position: relative;
}

.stat-box-inner {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(30, 58, 95, 0.1),
        0 0 20px rgba(44, 82, 130, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-box-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(44, 82, 130, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-box-enhanced:hover::before {
    opacity: 1;
    animation: shimmer 2s ease infinite;
}

.stat-box-enhanced:hover .stat-box-inner {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(30, 58, 95, 0.2),
        0 0 40px rgba(44, 82, 130, 0.15);
    border-color: rgba(44, 82, 130, 0.3);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.stat-box-enhanced:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.stat-box-enhanced .counter-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 10px;
    display: block;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-blue) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-box-enhanced:hover .counter-number {
    transform: scale(1.1);
}

.stat-box-enhanced .counter-label {
    font-size: 14px;
    color: var(--charcoal-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--steel-blue), var(--accent-orange));
    margin: 20px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.stat-box-enhanced:hover .stat-divider {
    width: 80px;
}

/* Enhanced About Preview */
.about-preview-enhanced {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-preview-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.about-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image-enhanced {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(30, 58, 95, 0.2),
        0 0 40px rgba(44, 82, 130, 0.1);
    aspect-ratio: 16 / 9;
    min-height: 480px;
}

.about-img-enhanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.about-image-enhanced:hover .about-img-enhanced {
    transform: scale(1.05);
}

.about-image-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.about-image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.2);
    z-index: 2;
}

.about-image-badge span {
    display: block;
    font-weight: 700;
    color: var(--navy-blue);
}

.about-image-badge span:first-child {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 5px;
}

.about-image-badge span:last-child {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--steel-blue);
}

.about-text-enhanced {
    position: relative;
}

.about-text-enhanced h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--navy-blue);
    line-height: 1.2;
}

.about-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

.about-text-enhanced strong {
    color: var(--steel-blue);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(44, 82, 130, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--steel-blue);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(44, 82, 130, 0.1);
    transform: translateX(5px);
}

.about-feature-item svg {
    color: var(--steel-blue);
    flex-shrink: 0;
}

.about-feature-item span {
    color: var(--charcoal-grey);
    font-weight: 500;
}

.btn-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-enhanced svg {
    transition: transform 0.3s ease;
}

.btn-enhanced:hover svg {
    transform: translateX(5px);
}

/* Enhanced Clients Section */
.clients-section-enhanced {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.clients-carousel-enhanced {
    position: relative;
    overflow: hidden;
    padding: 40px 60px;
}

.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.client-logos-enhanced {
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.client-logos-enhanced.auto-scroll {
    animation: scrollClients 30s linear infinite;
}

.client-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid rgba(44, 82, 130, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.1);
}

.client-carousel-btn:hover {
    background: var(--steel-blue);
    border-color: var(--steel-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.2);
}

.client-carousel-btn:hover svg {
    color: var(--white);
}

.client-carousel-btn svg {
    color: var(--steel-blue);
    transition: color 0.3s ease;
}

.client-carousel-prev {
    left: 0;
}

.client-carousel-next {
    right: 0;
}

.client-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.client-logo-enhanced {
    flex-shrink: 0;
    width: 220px;
    height: 150px;
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 5px 20px rgba(30, 58, 95, 0.1),
        0 0 15px rgba(44, 82, 130, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.client-logo-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 82, 130, 0.1), transparent);
    transition: left 0.6s ease;
}

.client-logo-enhanced:hover::before {
    left: 100%;
}

.client-logo-enhanced:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(30, 58, 95, 0.2),
        0 0 30px rgba(44, 82, 130, 0.15);
    border-color: rgba(44, 82, 130, 0.3);
}

.client-logo-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}

.client-logo-enhanced:hover img {
    transform: scale(1.05);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(44, 82, 130, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-enhanced {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-icon-wrapper {
    margin-bottom: 30px;
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.cta-icon-wrapper svg {
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cta-content-enhanced h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content-enhanced p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 968px) {
    .about-content-enhanced {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-enhanced {
        order: -1;
    }
    
    .about-image-wrapper {
        aspect-ratio: 4 / 3;
        min-height: 420px;
    }
    
    .stats-container-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .stats-container-enhanced {
        grid-template-columns: 1fr;
    }
    
    .about-text-enhanced h2 {
        font-size: 32px;
    }
    
    .about-image-wrapper {
        aspect-ratio: 16 / 10;
        min-height: 360px;
    }
    
    .cta-content-enhanced h2 {
        font-size: 32px;
    }
    
    .client-logo-enhanced {
        width: 180px;
        height: 120px;
    }
    
    .clients-carousel-enhanced {
        padding: 40px 50px;
    }
    
    .client-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .client-carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Footer */
.footer {
    background: var(--dark-blue-overlay);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 16px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--white);
}

.footer-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    opacity: 0.8;
}

.footer-cta {
    margin-left: 40px;
}

.btn-footer-cta {
    background: var(--dark-blue-overlay);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-footer-cta:hover {
    background: var(--white);
    color: var(--dark-blue-overlay);
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    padding: 8px 15px;
    background: var(--steel-blue);
    border-radius: 5px;
    color: var(--white);
}

.social-links a:hover {
    background: var(--navy-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--charcoal-grey));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.breadcrumb {
    margin-top: 15px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--steel-blue);
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
    color: #666;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--steel-blue);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 15px;
    }

    .nav-wrapper {
        justify-content: space-between;
        position: relative;
        min-height: 70px;
        align-items: center;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        margin: 0;
        width: auto;
        max-width: calc(100% - 120px);
    }

    .logo-img {
        height: 75px;
        max-width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        margin-top: 10px;
    }

    /* Mobile Navbar - Black Color for Links and Dropdowns */
    .navbar-collapse .nav-link,
    .navbar-collapse .dropdown-toggle {
        color: black !important;
    }

    .navbar-collapse .dropdown-menu {
        background: var(--light-color);
    }

    .navbar-collapse .dropdown-item {
        color: black !important;
    }

    .navbar-collapse .dropdown-item:hover,
    .navbar-collapse .dropdown-item:focus {
        color: black !important;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:focus {
        color: black !important;
    }

    /* Active dropdown should be blue in mobile view - specifically nav-link.active */
    .navbar-collapse .nav-link.active.dropdown-toggle,
    .navbar-collapse .nav-link.dropdown-toggle.active,
    .navbar-collapse .dropdown-toggle.active,
    .navbar-collapse .nav-item.dropdown.active .dropdown-toggle,
    .navbar-collapse .nav-item.dropdown .nav-link.active.dropdown-toggle {
        color: var(--steel-blue) !important;
    }

    /* Active nav link should be blue in mobile view */
    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link.active {
        color: var(--steel-blue) !important;
    }

    /* Regular nav-link.active (not dropdown) should be black */
    .navbar-collapse .nav-link.active:not(.dropdown-toggle) {
        color: black !important;
    }

    /* Specifically target Home link in mobile view */
    .navbar-collapse .nav-link[href="index.html"],
    .navbar-collapse .nav-link[href*="index.html"] {
        color: black !important;
    }

    .navbar-collapse .nav-link[href="index.html"]:hover,
    .navbar-collapse .nav-link[href="index.html"]:focus,
    .navbar-collapse .nav-link[href="index.html"].active {
        color: black !important;
    }

    .navbar-collapse .dropdown-toggle::after {
        border-top-color: black !important;
    }

    /* Active dropdown arrow should be blue - specifically nav-link.active */
    .navbar-collapse .nav-link.active.dropdown-toggle::after,
    .navbar-collapse .nav-link.dropdown-toggle.active::after,
    .navbar-collapse .dropdown-toggle.active::after,
    .navbar-collapse .nav-item.dropdown.active .dropdown-toggle::after,
    .navbar-collapse .nav-item.dropdown .nav-link.active.dropdown-toggle::after {
        border-top-color: var(--steel-blue) !important;
    }

    /* When dropdown is shown/open, make toggle blue */
    .navbar-collapse .dropdown.show .dropdown-toggle,
    .navbar-collapse .nav-item.dropdown.show .dropdown-toggle {
        color: var(--steel-blue) !important;
    }

    .navbar-collapse .dropdown.show .dropdown-toggle::after,
    .navbar-collapse .nav-item.dropdown.show .dropdown-toggle::after {
        border-top-color: var(--steel-blue) !important;
    }

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

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

    .hero-content {
        text-align: center;
        padding-left: 20px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-triangular-overlay {
        border-right-width: 100vw;
        border-bottom-width: 100vh;
    }


    .hero-carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow-left {
        left: 10px;
    }

    .hero-arrow-right {
        right: 10px;
    }

    .footer-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-cta {
        margin-left: 0;
        width: 100%;
    }

    .btn-footer-cta {
        width: 100%;
        text-align: center;
    }

    .floating-sidebar {
        right: 10px;
        padding: 10px 8px;
        gap: 10px;
    }

    .sidebar-icon {
        width: 35px;
        height: 35px;
    }

    .nav-contact-numbers {
        gap: 15px;
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }

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

    .logo-img {
        height: 65px;
    }

    .nav-wrapper {
        min-height: 50px;
    }
}

/* Floating WhatsApp Buttons - WhatsApp brand color #25D366 */
.whatsapp-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-buttons a,
.whatsapp-buttons .btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-buttons a:hover,
.whatsapp-buttons .btn:hover {
    background-color: #20bd5a !important;
    border-color: #20bd5a !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Floating WhatsApp buttons without class (fallback for inline-styled containers) */
div[style*="position:fixed"][style*="bottom"] a[href*="wa.me"] {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

div[style*="position:fixed"][style*="bottom"] a[href*="wa.me"]:hover {
    background-color: #20bd5a !important;
    border-color: #20bd5a !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

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

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-button .tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-button .tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #333;
}

.whatsapp-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-button .tooltip {
        display: none;
    }
}


/* ============================================
   SCROLL-BASED ANIMATIONS
   ============================================ */

/* Fade in and slide up animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-up.animate {
    opacity: 1;
    transform: scale(1);
}

/* Service button enlargement on scroll */
.service-card.scroll-in:hover .service-link {
    transform: scale(1.15) translateX(5px);
    font-weight: 600;
}

/* Client logo scroll animation */
.client-logo {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.3s ease;
}

.client-logo.scroll-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.client-logo.scroll-in:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Section title animation */
.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.scroll-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section subtitle animation */
.section-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-subtitle.scroll-in {
    opacity: 1;
    transform: translateY(0);
}

/* About content animation */
.about-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text.scroll-in {
    opacity: 1;
    transform: translateX(0);
}

.about-image {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image.scroll-in {
    opacity: 1;
    transform: translateX(0);
}

/* Hero content animation */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

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

/* Stagger animation for service cards */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }
.service-card:nth-child(7) { transition-delay: 0.7s; }

/* Parallax effect for hero */
.hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Back to top button */
.back-to-top {
    background: var(--steel-blue) !important;
}

.back-to-top:hover {
    background: var(--navy-blue) !important;
    transform: translateY(-5px);
}

/* ============================================
   UNIVERSAL PAGE ANIMATIONS
   ============================================ */

/* Page header animations */
.page-header h1 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-header h1.scroll-in,
.page-header h1.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.page-header .breadcrumb {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.page-header .breadcrumb.scroll-in,
.page-header .breadcrumb.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Content section animations */
.content-section h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section h2.scroll-in,
.content-section h2.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.content-section h3 {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section h3.scroll-in,
.content-section h3.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.content-section p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-section p.scroll-in,
.content-section p.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.content-section ul,
.content-section ol {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section ul.scroll-in,
.content-section ol.scroll-in,
.content-section ul.fade-in-right.animate,
.content-section ol.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* CTA section animations */
.cta-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-content.scroll-in,
.cta-content.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Image animations */
.content-section img {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section img.scroll-in {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   ADVANCED ANIMATION EFFECTS
   ============================================ */

/* Counter Animation */
.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--steel-blue);
    display: inline-block;
}

.counter-label {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    display: block;
}

/* Progress Bar Animation */
.progress-bar-container {
    width: 100%;
    height: 8px;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--steel-blue), var(--navy-blue));
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease;
}

.progress-bar.animate {
    animation: progressFill 2s ease forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: var(--progress-width, 100%);
    }
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
    position: relative;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.text-reveal.revealed::after {
    transform: translateX(100%);
}

/* Gradient Animation */
.gradient-animated {
    background: linear-gradient(-45deg, var(--steel-blue), var(--navy-blue), var(--charcoal-grey), var(--steel-blue));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.05);
}

/* Parallax Container */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Sticky Navbar with Background Change */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Particle/Background Effect */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--steel-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 20s infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Image Overlay Effect */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.8), rgba(30, 58, 95, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.image-overlay:hover::before {
    opacity: 1;
}

.image-overlay img {
    transition: transform 0.5s ease;
}

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

/* Section Divider Animation */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--steel-blue), transparent);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    animation: dividerFlow 3s ease infinite;
}

@keyframes dividerFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Shimmer Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Number Counter Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Smooth Section Transitions */
.section-transition {
    position: relative;
    overflow: hidden;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 1;
}

.section-transition.visible::before {
    transform: translateX(100%);
}

/* ============================================
   PAGE LOADER / SPINNER
   ============================================ */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--steel-blue);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--navy-blue);
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--accent-orange);
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
}

.spinner-ring:nth-child(4) {
    border-top-color: var(--teal-gradient-start);
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   ABOUT PAGE REDESIGN
   ============================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--navy-blue) 50%, var(--charcoal-grey) 100%);
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(44, 82, 130, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

/* About Intro Section */
.about-intro-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-blue) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-text {
    font-size: 20px;
    color: var(--steel-blue);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--steel-blue), var(--navy-blue));
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro-visual {
    position: relative;
}

.visual-card {
    background: #ffffff !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(30, 58, 95, 0.2),
        0 0 30px rgba(44, 82, 130, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-color);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(44, 82, 130, 0.15), transparent);
    transform: rotate(45deg);
    animation: shimmer 4s ease-in-out infinite;
    z-index: 0;
}

.visual-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(44, 82, 130, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(30, 58, 95, 0.25),
        0 0 60px rgba(44, 82, 130, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(44, 82, 130, 0.3);
}

.visual-card > * {
    position: relative;
    z-index: 2;
}

.visual-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 10px 20px rgba(44, 82, 130, 0.2));
    transition: transform 0.5s ease;
}

.visual-card:hover .visual-icon {
    transform: scale(1.1) rotate(5deg);
    animation: float 2s ease-in-out infinite;
}

.visual-stats {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    position: relative;
    z-index: 10;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 12px;
    background: #ffffff !important;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 58, 95, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 90px;
    position: relative;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.15);
    z-index: 5;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 82, 130, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 35px rgba(44, 82, 130, 0.3);
    border-color: rgba(44, 82, 130, 0.5);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    display: block;
    margin-bottom: 5px;
    line-height: 1;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
    text-shadow: none;
    letter-spacing: -1px;
    opacity: 1 !important;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--steel-blue) !important;
    -webkit-text-fill-color: var(--steel-blue) !important;
    text-shadow: 0 2px 8px rgba(44, 82, 130, 0.3);
}

.stat-label {
    font-size: 11px;
    color: #1e3a5f !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    opacity: 1 !important;
    margin-top: 3px;
    position: relative;
    z-index: 10;
}

.stat-item:hover .stat-label {
    color: var(--steel-blue);
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 
        0 15px 50px rgba(30, 58, 95, 0.1),
        0 0 30px rgba(44, 82, 130, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 82, 130, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 70px rgba(30, 58, 95, 0.15),
        0 0 50px rgba(44, 82, 130, 0.1);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 25px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.mission-card strong,
.vision-card strong {
    color: var(--steel-blue);
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-blue) 50%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(30, 58, 95, 0.1),
        0 0 20px rgba(44, 82, 130, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 82, 130, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(30, 58, 95, 0.15),
        0 0 40px rgba(44, 82, 130, 0.1);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Team & Approach Section */
.team-approach-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.team-card,
.approach-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 
        0 15px 50px rgba(30, 58, 95, 0.1),
        0 0 30px rgba(44, 82, 130, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover,
.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 70px rgba(30, 58, 95, 0.15),
        0 0 50px rgba(44, 82, 130, 0.1);
}

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

.card-icon-large {
    font-size: 50px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--steel-blue), var(--navy-blue));
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(44, 82, 130, 0.2);
}

.card-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 0;
}

.team-features,
.approach-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.team-features li,
.approach-features li {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-features li:hover,
.approach-features li:hover {
    padding-left: 10px;
    color: var(--steel-blue);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(30, 58, 95, 0.1),
        0 0 20px rgba(44, 82, 130, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 82, 130, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 70px rgba(30, 58, 95, 0.15),
        0 0 50px rgba(44, 82, 130, 0.1);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(44, 82, 130, 0.1);
    line-height: 1;
}

.feature-icon {
    font-size: 60px;
    margin: 20px 0 25px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .about-intro-grid,
    .mission-vision-grid,
    .team-approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-text h2 {
        font-size: 32px;
    }
    
    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* ============================================
   SERVICE PAGES REDESIGN STYLES
   ============================================ */

/* Service Hero Section */
.service-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--steel-blue) 100%);
    color: var(--white);
    overflow: hidden;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-hero .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
}

.service-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
}

.service-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.service-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.service-hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.service-hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.service-hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Service Intro Section */
.service-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-intro-text .lead-text {
    font-size: 20px;
    color: var(--steel-blue);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.service-intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-stats-card {
    background: linear-gradient(135deg, var(--steel-blue), var(--navy-blue));
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.3);
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 400px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* Service Features Section */
.service-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--steel-blue), var(--navy-blue));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 82, 130, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-feature-card:hover::before {
    left: 100%;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--steel-blue), var(--navy-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(44, 82, 130, 0.3);
    transition: transform 0.5s ease;
}

.service-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    font-size: 40px;
}

.service-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
    text-align: center;
}

.feature-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

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

.feature-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--steel-blue);
    font-weight: 700;
}

.feature-list li:hover {
    padding-left: 30px;
    color: var(--steel-blue);
}

.service-feature-card .service-link {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--steel-blue), var(--navy-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-shadow: 0 5px 15px rgba(44, 82, 130, 0.3);
}

.service-feature-card .service-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.4);
    background: linear-gradient(135deg, var(--navy-blue), var(--steel-blue));
}

/* Methodologies Section */
.methodologies-section {
    padding: 100px 0;
    background: var(--white);
}

.methodologies-card {
    background: linear-gradient(135deg, var(--navy-blue), var(--steel-blue));
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(30, 58, 95, 0.3);
    color: var(--white);
}

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

.methodologies-card .section-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.methodologies-card h2 {
    color: var(--white);
}

.methodologies-card .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.methodologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.methodology-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.methodology-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.methodology-icon {
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.methodology-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

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

.methodology-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.methodology-list li:last-child {
    border-bottom: none;
}

.methodology-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 20px;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 32px;
    }
    
    .service-hero-subtitle {
        font-size: 16px;
    }
    
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-intro-text h2 {
        font-size: 32px;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .methodologies-grid {
        grid-template-columns: 1fr;
    }
    
    .methodologies-card {
        padding: 40px 30px;
    }
}

/* Job Listings Styles */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.job-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--steel-blue);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.2);
    border-left-color: var(--navy-blue);
}

.job-content {
    flex: 1;
}

.job-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.job-meta {
    font-size: 15px;
    color: var(--steel-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.job-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.job-card .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-card .btn {
        width: 100%;
    }
}

/* Our Clients Horizontal Scroll */
.clients-scroll-wrapper {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.clients-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}
.clients-scroll-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.clients-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--steel-blue);
  border-radius: 4px;
}
.client-logo-scroll {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.client-logo-scroll:hover {
  opacity: 1;
}

/* Insights Page Newsletter Form */
.methodologies-card form input[type="email"] {
    color: var(--white) !important;
}

.methodologies-card form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.methodologies-card form button {
    cursor: pointer;
}

.methodologies-card form button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
}

.ftco-navbar-light {
    background: white !important;
}

/* Active nav link should be blue */
.ftco-navbar-light .navbar-nav>.nav-item>.nav-link.active {
    color: brown !important;
}

/* Navbar Toggler - Black Color */
.navbar-toggler {
    color: black !important;
    border-color: black !important;
}

.navbar-toggler .fa-solid,
.navbar-toggler span {
    color: black !important;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    color: black !important;
    border-color: black !important;
}

