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

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

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease forwards;
}

.bounce-in {
    animation: bounceIn 1s ease forwards;
}

/* Staggered Animations */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

:root {
    /* Primary Color Palette */
    --primary-black: #1A1A1A;
    --secondary-black: #2D2D2D;
    --primary-white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #495057;

    /* Accent Colors */
    --blue-accent: #007BFF;
    --green-accent: #28A745;
    --red-accent: #DC3545;

    /* Additional Colors */
    --border-gray: #E9ECEF;
    --shadow-gray: rgba(0, 0, 0, 0.1);
    --overlay-gray: rgba(26, 26, 26, 0.8);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--primary-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--blue-accent);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--light-gray);
    border-color: var(--medium-gray);
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    position: relative;
    background-color: var(--primary-white);
    box-shadow: 0 2px 20px var(--shadow-gray);
}

.header-top {
    background-color: var(--secondary-black);
    color: var(--primary-white);
    padding: 3px 0;
    font-size: 0.75rem;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
}

.header-top .contact-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-direction: row;
}

.header-top .contact-info span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 0;
}

.contact-info i {
    margin-right: 8px;
    color: var(--blue-accent);
}

.promo-badge {
    background-color: var(--green-accent);
    padding: 3px 10px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 0.7rem;
    margin-left: auto;
}

.header-middle {
    padding: 16px 0;
    background-color: var(--primary-white);
    border-bottom: 1px solid var(--border-gray);
}

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    animation: logoIconGlow 3s ease-in-out infinite;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: logoIconShine 2s ease-in-out infinite;
}

@keyframes logoIconGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    }
}

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

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.logo-text h1 {
    color: var(--primary-black);
    margin-bottom: 0;
    font-size: 1.8rem;
}

.logo-text p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.8rem;
}

.offer-card {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-black), var(--secondary-black), var(--primary-black));
    background-size: 200% 200%;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid var(--blue-accent);
    animation: offerGlow 3s ease-in-out infinite, offerPulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    color: var(--primary-white);
    font-weight: 500;
    transform: scale(1);
    font-size: 0.8rem;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: offerShine 2s ease-in-out infinite;
}

@keyframes offerGlow {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3), 0 0 8px rgba(0, 123, 255, 0.2);
    }
}

@keyframes offerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

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

.offer-card i {
    color: var(--blue-accent);
    margin-right: 8px;
    font-size: 0.9rem;
    animation: offerIconBounce 2s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

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

.header-nav {
    background-color: var(--primary-white);
    padding: 0;
    border-bottom: 1px solid var(--border-gray);
    min-height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li:last-child {
    margin-left: auto;
}

.nav-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-size: 0.9rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--blue-accent);
    border-bottom-color: var(--blue-accent);
    background-color: var(--light-gray);
}

/* Contact Menu Animation - Using padding instead of margin */
.nav-menu li:last-child a {
    position: relative;
    overflow: visible;
    background: transparent;
    background-size: auto;
    animation: none;
    border-radius: 0;
    color: var(--primary-black);
    font-weight: 500;
    text-shadow: none;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    padding: 12px 16px;
    margin: 0;
}

.nav-menu li:last-child a::before {
    display: none;
}

.nav-menu li:last-child a::after {
    display: none;
}

.nav-menu li:last-child a:hover {
    animation: none;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    color: var(--blue-accent);
    border-bottom-color: var(--blue-accent);
    background-color: var(--light-gray);
}

@keyframes contactMenuGlow {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6), 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

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

@keyframes contactMenuPulse {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
    100% {
        transform: translateY(-3px) scale(1.05);
    }
}

@keyframes rainbowBorder {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Sidebar Styles */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--primary-black);
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--secondary-black);
    background-color: var(--secondary-black);
}

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

.sidebar-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-logo span {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-white);
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light-gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.sidebar-nav {
    padding: 20px 0;
}

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

.sidebar-menu li {
    border-bottom: 1px solid var(--secondary-black);
}

.sidebar-link {
    display: block;
    padding: 16px 20px;
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
    background-color: var(--primary-black);
    color: var(--blue-accent);
    border-left-color: var(--blue-accent);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--secondary-black);
    background-color: var(--secondary-black);
    margin-top: auto;
}

.sidebar-contact {
    margin-bottom: 20px;
}

.sidebar-contact p {
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.sidebar-contact i {
    color: var(--blue-accent);
    margin-right: 8px;
    width: 16px;
}

.sidebar-social {
    display: flex;
    gap: 12px;
}

.sidebar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-white);
    border-radius: 50%;
    color: var(--medium-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-social a:hover {
    background-color: var(--blue-accent);
    color: var(--primary-white);
    transform: translateY(-2px);
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
    overflow: hidden;
}

/* Ensure sidebar is above all content */
.mobile-sidebar {
    z-index: 10000;
}

.mobile-sidebar-overlay {
    z-index: 9999;
}

/* Hero Section */
.hero-section {
    margin-top: 0;
    position: relative;
    height: 60vh;
    min-height: 450px;
    overflow: hidden;
    background-image: url('https://www.michaelpage.com.hk/sites/michaelpage.com.hk/files/2022-05/Software%20Developer.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hide Hero Section for Mobile */
@media (max-width: 768px) {
    .hero-section {
        display: none;
    }
}

/* Mobile Hero Section - Background Image Style */
.mobile-hero-section {
    display: none;
    position: relative;
    height: 50vh;
    width: 100%;
    background: var(--primary-black);
}

.mobile-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    z-index: 1;
}

.mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.mobile-hero-content {
    position: relative;
    z-index: 3;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
    padding: 0 20px;
}

.mobile-hero-description-section {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    padding: 30px 0;
    border-radius: 0;
    border: none;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.mobile-hero-description {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    padding: 0 20px;
}

.mobile-hero-cta {
    width: calc(100% - 40px);
    max-width: 200px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    background: var(--blue-accent);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.mobile-hero-cta:hover {
    transform: translateY(-2px);
    background: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Show Mobile Hero Section on Mobile */
@media (max-width: 768px) {
    .mobile-hero-section {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-hero-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    .mobile-hero-description-section {
        padding: 20px 0;
    }
    
    .mobile-hero-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    .mobile-hero-cta {
        width: calc(100% - 30px);
        padding: 10px 16px;
        font-size: 0.9rem;
        max-width: 180px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .hero-section::before {
        background: rgba(0, 0, 0, 0.8);
    }
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    display: flex;
    align-items: center;
    padding: 0;
    z-index: 2;
    overflow: hidden;
    transform: translateX(100%);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.carousel-slide.active::before {
    opacity: 0;
}

.carousel-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.carousel-slide.next {
    transform: translateX(100%);
    opacity: 0;
}

/* Hero Content Layout */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 40px;
}

.hero-text-content {
    text-align: left;
    max-width: 480px;
    animation: slideInLeft 1.2s ease-out 0.4s both;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1.2s ease-out 0.6s both;
}

/* Hero Graphics */
.hero-graphics {
    position: relative;
    margin-bottom: 1.5rem;
    height: 80px;
}

.graphic-icon {
    font-size: 2.5rem;
    color: var(--blue-accent);
    margin-bottom: 0.75rem;
    animation: iconFloat 3s ease-in-out infinite;
    text-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle,
.floating-square,
.floating-triangle,
.floating-diamond,
.floating-hexagon,
.floating-star,
.floating-pentagon,
.floating-oval,
.floating-cross {
    position: absolute;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
}

.floating-circle {
    width: 12px;
    height: 12px;
    background: var(--blue-accent);
    border-radius: 50%;
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.floating-square {
    width: 10px;
    height: 10px;
    background: var(--green-accent);
    top: 35px;
    right: 20px;
    animation-delay: 1s;
}

.floating-triangle {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--red-accent);
    top: 25px;
    left: 35px;
    animation-delay: 2s;
}

.floating-diamond {
    width: 10px;
    height: 10px;
    background: var(--blue-accent);
    transform: rotate(45deg);
    top: 18px;
    right: 30px;
    animation-delay: 0.5s;
}

.floating-hexagon {
    width: 12px;
    height: 12px;
    background: var(--green-accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 45px;
    left: 25px;
    animation-delay: 1.5s;
}

.floating-star {
    width: 12px;
    height: 12px;
    background: var(--red-accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    top: 15px;
    right: 10px;
    animation-delay: 2.5s;
}

.floating-pentagon {
    width: 10px;
    height: 10px;
    background: var(--blue-accent);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    top: 32px;
    left: 18px;
    animation-delay: 0.8s;
}

.floating-oval {
    width: 16px;
    height: 10px;
    background: var(--green-accent);
    border-radius: 50%;
    top: 22px;
    right: 25px;
    animation-delay: 1.8s;
}

.floating-cross {
    width: 12px;
    height: 12px;
    background: var(--red-accent);
    clip-path: polygon(40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%);
    top: 40px;
    left: 32px;
    animation-delay: 3s;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-8px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-8px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Professional Typography */
.hero-text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-text-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
    max-width: 480px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Enhanced Feature List */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-white);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    padding: 6px 0;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(6px);
}

.feature-item i {
    color: var(--green-accent);
    font-size: 1.1rem;
    animation: featurePulse 2.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

@keyframes featurePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--blue-accent), #0056b3);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, var(--blue-accent));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

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

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

/* Hero Image Styling */
.hero-image {
    width: 350px;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.animated-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: imageFloat 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

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

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-6px) rotate(-0.5deg);
    }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 4;
}

.carousel-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: var(--primary-black);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background-color: var(--blue-accent);
    color: var(--primary-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: var(--blue-accent);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background-color: var(--blue-accent);
    transform: scale(1.2);
}

/* Slide Animations */
@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);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease;
}

.section-header h2 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

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

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;
}

.services-title h2 {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.services-title p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    line-height: 1.7;
    margin: 0;
}

.services-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.services-search {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 12px 45px 12px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 25px;
    font-size: 1rem;
    width: 300px;
    background: var(--primary-white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-input:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 4px 20px rgba(0,123,255,0.15);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    right: 15px;
    color: var(--medium-gray);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: var(--blue-accent);
}

/* Enhanced Responsive adjustments for services section */
@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 280px 1fr;
        gap: 30px;
        min-height: 500px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .search-input {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-header {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
    }
    
    .services-title h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .services-title p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .services-controls {
        align-items: center;
        width: 100%;
    }
    
    .search-input {
        width: 100%;
        max-width: 400px;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    
    .services-sidebar {
        position: sticky;
        top: 20px;
        order: 2;
        margin-top: 20px;
        max-height: calc(100vh - 40px);
        height: fit-content;
        z-index: 10;
    }
    
    .services-main {
        order: 1;
        min-height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .service-banner h3 {
        font-size: 1.2rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title h2 {
        font-size: 2rem;
    }
    
    .services-title p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-banner h3 {
        font-size: 1.1rem;
    }
    
    .service-icon i {
        font-size: 2.5rem;
    }
    
    .services-sidebar {
        padding: 20px;
    }
    
    .category-item {
        padding: 12px 15px;
    }
    
    .service-stats {
        padding: 20px;
    }
    
    .services-main {
        min-height: 350px;
    }
}

/* Removed carousel navigation styles */

.services-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
    min-height: 600px; /* Ensure minimum height for proper alignment */
}

.services-sidebar {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    z-index: 10;
    transition: all 0.3s ease;
}

.services-sidebar.sticky-active {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(0);
}

.sidebar-title {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--light-gray);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--blue-accent), #667eea);
    border-radius: 2px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--medium-gray);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue-accent), #667eea);
    transition: left 0.3s ease;
    z-index: 0;
}

.category-item:hover {
    color: var(--primary-white);
    transform: translateX(5px);
    border-color: var(--blue-accent);
    box-shadow: 0 5px 20px rgba(0,123,255,0.2);
}

.category-item:hover::before {
    left: 0;
}

.category-item.active {
    background: linear-gradient(135deg, var(--blue-accent), #667eea);
    color: var(--primary-white);
    box-shadow: 0 5px 20px rgba(0,123,255,0.3);
}

.category-item.active::before {
    left: 0;
}

.category-item > * {
    position: relative;
    z-index: 1;
}

.category-item i {
    font-size: 1.3rem;
    width: 24px;
    transition: transform 0.3s ease;
}

.category-item:hover i {
    transform: scale(1.1);
}

.service-count {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.service-stats {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-gray);
}

.service-stats h4 {
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0,123,255,0.05);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue-accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-align: center;
    line-height: 1.3;
}

.services-main {
    position: relative;
    min-height: 500px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
    width: 100%;
}

/* Service card styling for grid layout */
.service-card {
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    backdrop-filter: blur(10px);
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.05), rgba(118,75,162,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

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

.service-banner {
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-white);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    position: relative;
}

.service-icon {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 3rem;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.service-banner h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.service-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

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

.service-btn {
    background: linear-gradient(135deg, var(--blue-accent), #667eea);
    color: var(--primary-white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.service-card:hover .service-btn {
    transform: translateY(0);
}

.service-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.service-banner.gradient-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.service-banner.red-bg {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.service-banner.bug-fix-bg {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.service-banner.backend-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.service-banner.frontend-bg {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.service-banner.website-bg {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.service-banner.mern-bg {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.service-banner.saas-bg {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.service-banner.whmcs-bg {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

.service-banner span {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tech-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tech-icons i {
    font-size: 1.2rem;
    background: rgba(255,255,255,0.2);
    padding: 8px;
    border-radius: 8px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.service-tags span {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.2);
    padding: 6px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.feature-item {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 6px;
    text-align: left;
}

.tech-stack {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.tech-stack i {
    font-size: 1.1rem;
    background: rgba(255,255,255,0.2);
    padding: 6px;
    border-radius: 6px;
}

.service-illustration {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.play-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    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: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.play-button i {
    font-size: 1.2rem;
    color: var(--primary-white);
}

.like-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--medium-gray);
}

.like-btn:hover {
    background: var(--primary-white);
    color: #ff4757;
    transform: scale(1.1);
}

.service-content {
    padding: 15px;
}

.service-content h3 {
    color: var(--primary-black);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}



.service-rating {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-accent);
    margin-bottom: 15px;
}

.service-badge {
    display: inline-block;
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-sidebar {
        position: sticky;
        top: 20px;
        order: 2;
        z-index: 10;
    }
    
    .services-carousel {
        order: 1;
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .services-title h2 {
        font-size: 2rem;
    }
    
    .services-navigation {
        justify-content: center;
    }
    
    .service-card {
        min-width: 280px;
    }
    
    .service-banner h3 {
        font-size: 1.5rem;
    }
    

}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        min-width: 260px;
    }
    
    .service-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-duration i {
    color: var(--blue-accent);
}

.service-price {
    background: linear-gradient(135deg, var(--green-accent), #20c997);
    color: var(--primary-white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40,167,69,0.3);
}

.service-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    color: var(--blue-accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102,126,234,0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, var(--blue-accent), #667eea);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

/* Removed pagination styles */

/* Enhanced Service Card Animations */
.service-card {
    animation: slideInUp 0.6s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card.animate-in {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced hover effects for service cards */
.service-card:hover .service-icon i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Loading animation for search */
.search-input:focus {
    animation: searchFocus 0.3s ease;
}

@keyframes searchFocus {
    0% {
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0,123,255,0.15);
    }
}

/* Category item animations */
.category-item {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats counter animation */
.stat-number {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature tag hover animation */
.feature-tag {
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

/* Service overlay animation */
.service-overlay {
    animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

/* Enhanced button animations */
.service-btn {
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

/* Pagination dot animation */
.dot {
    position: relative;
    overflow: hidden;
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot:hover::after {
    opacity: 1;
}

/* Scroll indicator */
.services-carousel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 60px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-carousel:hover::after {
    opacity: 1;
    }
    
    .service-banner {
        padding: 15px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile Header Responsive Styles */
@media (max-width: 768px) {
    .header-top {
        padding: 8px 0;
    }
    
    .header-top .contact-info {
        display: none;
    }
    
    .header-top .promotion {
        text-align: center;
        width: 100%;
    }
    
    .header-top .promo-badge {
        font-size: 0.85rem;
        padding: 4px 12px;
    }
    
    .header-middle {
        padding: 12px 0;
    }
    
    .middle-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }
    
    .logo {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        flex: 1;
        justify-content: flex-start;
        /* padding-left: 50px; */
    }
    .logo-text {
        text-align: left;
    }
    .logo-text h1 {
        font-size: 1.6rem;
        margin-bottom: 2px;

    }
    
    .logo-text p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .offer {
        display: none;
    }
    
    .header-nav {
        padding: 0;
        border-top: none;
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        font-size: 1.2rem;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: var(--primary-black);
        z-index: 10;
    }
    
    .mobile-menu-toggle.active i {
        transform: translateY(-50%) rotate(90deg);
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 6px 0;
    }
    
    .header-top .promo-badge {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
    
    .header-middle {
        padding: 10px 0;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
    
    .header-nav {
        padding: 0;
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        
        font-size: 1.1rem;
        background: transparent;
        border: none;
        color: var(--primary-black);
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.about-text {
    animation: fadeInLeft 1s ease;
}

.ceo-message {
    animation: fadeInRight 1s ease;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.about-text h2 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.ceo-message {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--blue-accent);
}

.ceo-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px var(--shadow-gray);
}

.ceo-avatar i {
    font-size: 2rem;
    color: var(--blue-accent);
}

.ceo-message blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.ceo-message cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-black);
}

/* About Section Responsive Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .ceo-message {
        padding: 30px 20px;
    }
    
    .ceo-avatar {
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .ceo-message {
        padding: 25px 15px;
    }
    
    .ceo-message blockquote {
        font-size: 1rem;
    }
}

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

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.tech-grid .tech-item {
    animation: scaleIn 0.6s ease;
    animation-fill-mode: both;
}

.tech-grid .tech-item:nth-child(1) { animation-delay: 0.1s; }
.tech-grid .tech-item:nth-child(2) { animation-delay: 0.2s; }
.tech-grid .tech-item:nth-child(3) { animation-delay: 0.3s; }
.tech-grid .tech-item:nth-child(4) { animation-delay: 0.4s; }
.tech-grid .tech-item:nth-child(5) { animation-delay: 0.5s; }
.tech-grid .tech-item:nth-child(6) { animation-delay: 0.6s; }

.tech-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--primary-white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 3rem;
    color: var(--blue-accent);
    margin-bottom: 16px;
    display: block;
}

.tech-item span {
    font-weight: 600;
    color: var(--primary-black);
}

/* Technology Categories */
.tech-category {
    margin-bottom: 60px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.tech-category .section-header h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.tech-category .section-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-accent), var(--purple-accent));
    border-radius: 2px;
}

.tech-category .section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Remove duplicate title styling for tech-category */
.tech-category > h3 {
    display: none;
}

/* Tech Carousel Layout */
.tech-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    max-width: 100%;
}

.tech-carousel-track {
    display: flex;
    gap: 25px;
    animation: slideTech 30s linear infinite;
    width: max-content;
}

.tech-carousel-track:hover {
    animation-play-state: paused;
}

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

.tech-card {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 320px;
    flex-shrink: 0;
    min-height: 450px;
}

.tech-card:hover {
    transform: translateY(-8px);
}

.tech-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.tech-card-image .service-banner {
    padding: 30px 25px;
    text-align: center;
    color: var(--primary-white);
    position: relative;
}

.tech-card-image .service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    pointer-events: none;
}

.tech-card-image .service-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.tech-card-image h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Technology Card Background Variants */
.frontend-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.backend-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.database-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tools-bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.marketing-bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.tech-card-content {
    padding: 25px;
}

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

.tech-skills-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

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

.tech-skills-list li:hover {
    background-color: var(--light-gray);
    margin: 0 -25px;
    padding: 12px 25px;
    border-radius: 8px;
}

.tech-skills-list li i {
    font-size: 1.2rem;
    color: var(--blue-accent);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.tech-skills-list li span {
    font-weight: 500;
    color: var(--primary-black);
}

/* Responsive adjustments for technology categories */
@media (max-width: 768px) {
    .tech-category .section-header h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .tech-category .section-header p {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .tech-category .section-header {
        margin-bottom: 30px;
    }
    
    .tech-category {
        margin-bottom: 40px;
    }
    
    .tech-carousel {
        padding: 15px 0;
    }
    
    .tech-carousel-track {
        gap: 20px;
        animation-duration: 25s;
    }
    
    .tech-card {
        width: 280px;
        min-height: 400px;
    }
    
    @media (max-width: 480px) {
        .tech-carousel-track {
            gap: 15px;
            animation-duration: 20s;
        }
        
        .tech-card {
            width: 260px;
            min-height: 380px;
        }
    }
    
    .tech-card-header {
        padding: 20px;
    }
    
    .tech-card-content {
        padding: 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    animation: fadeInLeft 1s ease;
}

.contact-info {
    animation: fadeInRight 1s ease;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--primary-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--blue-accent);
    margin-top: 4px;
}

.contact-item h4 {
    color: var(--primary-black);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--dark-gray);
    margin-bottom: 12px;
}

/* Contact Section Responsive Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-item i {
        margin-top: 0;
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 18px 15px;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 0.95rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--secondary-black);
    color: var(--primary-white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-black);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--blue-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-black);
    color: var(--medium-gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-white) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--blue-accent);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--medium-gray);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.benefits-grid .benefit-card {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.benefits-grid .benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { animation-delay: 0.3s; }

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-gray);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--blue-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

/* Landing Types Section */
.landing-types-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.landing-type-card {
    background-color: var(--primary-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-gray);
    transition: all 0.3s ease;
}

.landing-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-gray);
}

.type-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.type-icon i {
    font-size: 1.8rem;
    color: var(--blue-accent);
}

.landing-type-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.landing-type-card li {
    padding: 6px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 20px;
}

.landing-type-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
}

/* Conversion Section */
.conversion-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.conversion-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.conversion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-gray);
}

.conversion-icon {
    width: 60px;
    height: 60px;
    background-color: var(--blue-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conversion-icon i {
    font-size: 1.5rem;
    color: var(--primary-white);
}

.conversion-content h3 {
    color: var(--primary-black);
    margin-bottom: 12px;
}

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

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--primary-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-gray);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--blue-accent);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps .process-step {
    animation: slideInUp 0.8s ease;
    animation-fill-mode: both;
}

.process-steps .process-step:nth-child(1) { animation-delay: 0.1s; }
.process-steps .process-step:nth-child(2) { animation-delay: 0.2s; }
.process-steps .process-step:nth-child(3) { animation-delay: 0.3s; }
.process-steps .process-step:nth-child(4) { animation-delay: 0.4s; }

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-gray);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--blue-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    flex-shrink: 0;
}

/* Tech Categories */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.tech-category h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-black);
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.industry-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.industry-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.industry-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-outline:hover:before {
    left: 100%;
}

/* Disabled Coming Soon Button */
.btn-outline.coming-soon {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
    position: relative;
}

.btn-outline.coming-soon:hover {
    background: #f5f5f5;
    color: #999;
    transform: none;
    box-shadow: none;
}

.btn-outline.coming-soon:before {
    display: none;
}

.btn-outline.coming-soon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #ddd;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Active View Package Button */
.btn-outline.view-package {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

.btn-outline.view-package:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: white;
}

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

.news-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px dashed #dee2e6;
}

.news-placeholder i {
    font-size: 64px;
    color: #667eea;
    margin-bottom: 20px;
}

.news-placeholder h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.news-placeholder p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-grid .pricing-card {
    animation: scaleIn 0.8s ease;
    animation-fill-mode: both;
}

.pricing-grid .pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-grid .pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card {
    background-color: var(--primary-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px var(--shadow-gray);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-gray);
}

.pricing-card.featured {
    border: 3px solid var(--blue-accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-accent);
    margin-bottom: 0.5rem;
}

.price-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium-gray);
    margin-left: 0.25rem;
}

.pricing-header p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--blue-accent);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--secondary-black);
    color: var(--primary-white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .top-content {
        flex-direction: column;
        gap: 6px;
    }

    .header-top .contact-info {
        gap: 14px;
    }

    .header-middle .middle-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-menu {
        display: none;
    }
    
    .nav-menu a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .mobile-menu-toggle {
        display: block;
        border: 1px solid var(--primary-black);
        border-radius: 20%; 
        width: 40px;
        height: 40px; 
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
        margin-left: 50px; 
    }

    /* Hero section styles are now handled in the dedicated mobile responsive section above */

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    /* New page sections responsive */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid,
    .landing-types-grid,
    .conversion-grid,
    .features-grid,
    .process-steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

    .hero-content h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .carousel-controls {
        padding: 0 15px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }
    .mobile-menu-toggle { 
        margin-left: 0px; 
    }
    
    /* Mobile Back to Top Button */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Missing Content Sections */
/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--primary-white); 
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-gray);
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-gray);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--blue-accent);
}

.service-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 8px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 24px;
}

/* Removed duplicate tick mark - using FontAwesome icons instead */

/* Enhanced About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aboutGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutGrid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

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

.about-section .section-header h2 {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-section .section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--primary-white);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--blue-accent);
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.5;
}

.company-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--primary-white);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-accent);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.ceo-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ceo-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.ceo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.ceo-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--blue-accent);
}

.ceo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-white);
}

.ceo-badge i {
    font-size: 1rem;
    color: #b8860b;
}

.ceo-info h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 5px;
    font-weight: 600;
}

.ceo-title {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.ceo-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.ceo-social .social-link {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ceo-social .social-link:hover {
    background: var(--blue-accent);
    color: var(--primary-white);
    transform: scale(1.1);
}

.ceo-message {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    border-left: 4px solid var(--blue-accent);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: var(--blue-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
}

.quote-icon i {
    font-size: 0.8rem;
}

.ceo-message blockquote {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 20px 0;
    font-style: italic;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

.team-preview {
    text-align: center;
    margin-top: 60px;
}

.team-preview h3 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-preview p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-accent), #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.member-avatar i {
    font-size: 2rem;
    color: var(--primary-white);
}

.member-info h4 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 8px;
    font-weight: 600;
}

.member-info p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    background: var(--light-gray);
    color: var(--primary-black);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--blue-accent);
    color: var(--primary-white);
}

/* Enhanced About Section Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-section .section-header p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .about-main {
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .ceo-card {
        padding: 25px;
    }
    
    .ceo-avatar {
        width: 100px;
        height: 100px;
    }
    
    .ceo-info h3 {
        font-size: 1.3rem;
    }
    
    .ceo-message {
        padding: 25px;
    }
    
    .ceo-message blockquote {
        font-size: 1rem;
    }
    
    .team-preview h3 {
        font-size: 2rem;
    }
    
    .team-preview p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .member-avatar {
        width: 70px;
        height: 70px;
    }
    
    .member-info h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .section-header h2 {
        font-size: 2rem;
    }
    
    .about-section .section-header p {
        font-size: 1rem;
    }
    
    .about-content {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .about-main {
        gap: 25px;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 1.2rem;
        margin-top: 0;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .ceo-card {
        padding: 20px;
    }
    
    .ceo-avatar {
        width: 80px;
        height: 80px;
    }
    
    .ceo-badge {
        width: 25px;
        height: 25px;
    }
    
    .ceo-badge i {
        font-size: 0.8rem;
    }
    
    .ceo-info h3 {
        font-size: 1.2rem;
    }
    
    .ceo-title {
        font-size: 0.9rem;
    }
    
    .ceo-social .social-link {
        width: 35px;
        height: 35px;
    }
    
    .ceo-message {
        padding: 20px;
    }
    
    .quote-icon {
        width: 25px;
        height: 25px;
        top: -12px;
        left: 20px;
    }
    
    .quote-icon i {
        font-size: 0.7rem;
    }
    
    .ceo-message blockquote {
        font-size: 0.95rem;
        margin: 15px 0;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .team-preview h3 {
        font-size: 1.8rem;
    }
    
    .team-preview p {
        font-size: 0.95rem;
    }
    
    .team-member {
        padding: 20px;
    }
    
    .member-avatar {
        width: 60px;
        height: 60px;
    }
    
    .member-avatar i {
        font-size: 1.5rem;
    }
    
    .member-info h4 {
        font-size: 1.1rem;
    }
    
    .member-info p {
        font-size: 0.9rem;
    }
    
    .skill-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

.ceo-avatar i {
    font-size: 2rem;
    color: var(--blue-accent);
}

.ceo-message blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.ceo-message cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-black);
}

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

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.tech-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--primary-white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 3rem;
    color: var(--blue-accent);
    margin-bottom: 16px;
    display: block;
}

.tech-item span {
    font-weight: 600;
    color: var(--primary-black);
}

/* Enhanced Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contactGrid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

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

.contact-section .section-header h2 {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-section .section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Styling */
.contact-form-container {
    background: var(--primary-white);
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-form-header {
    margin-bottom: 30px;
    text-align: center;
    padding: 40px 40px 0 40px;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 40px 40px 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--primary-white);
    color: var(--primary-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
    font-style: italic;
}

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

.form-error {
    color: var(--red-accent);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

/* Checkbox Styling */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--blue-accent);
    border-color: var(--blue-accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: var(--blue-accent);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn .btn-loading {
    display: none;
}

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

.submit-btn.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

/* Contact Info Styling */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--primary-white);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-accent), #667eea);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-style: italic;
}

.contact-action {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-action:hover {
    background: var(--blue-accent);
    color: var(--primary-white);
    transform: scale(1.1);
}

/* Business Hours */
.business-hours {
    background: var(--primary-white);
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.business-hours h4 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--primary-black);
}

.hours-item .time {
    color: var(--medium-gray);
    font-weight: 500;
}

/* Social Contact */
.social-contact {
    background: var(--primary-white);
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-contact h4 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: stretch;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    min-height: 50px;
}

.social-link.facebook {
    background: rgba(24,119,242,0.1);
    color: #1877f2;
}

.social-link.twitter {
    background: rgba(29,161,242,0.1);
    color: #1da1f2;
}

.social-link.linkedin {
    background: rgba(0,119,181,0.1);
    color: #0077b5;
}

.social-link.instagram {
    background: rgba(225,48,108,0.1);
    color: #e1306c;
}

.social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-link i {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: auto;
    text-align: center;
}

/* Enhanced Contact Section Responsive Styles */
@media (max-width: 1024px) {
    .contact-content {
        gap: 40px;
    }
    
    .contact-form-header {
        padding: 30px 30px 0 30px;
    }
    
    .contact-form {
        padding: 0 30px 30px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-section .section-header p {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-header {
        padding: 25px 25px 0 25px;
    }
    
    .contact-form {
        padding: 0 25px 25px 25px;
    }
    
    .contact-form-header h3 {
        font-size: 1.6rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-method {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: stretch;
    }
    
    .social-link {
        min-height: 45px;
        padding: 12px;
    }
    
    .business-hours,
    .social-contact {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-section .section-header p {
        font-size: 1rem;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-form-header {
        padding: 20px 20px 0 20px;
    }
    
    .contact-form {
        padding: 0 20px 20px 20px;
    }
    
    .contact-form-header h3 {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-action {
        width: 40px;
        height: 40px;
    }
    
    .business-hours,
    .social-contact {
        padding: 15px;
    }
    
    .business-hours h4,
    .social-contact h4 {
        font-size: 1.1rem;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .social-link {
        padding: 12px;
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    .social-link i {
        font-size: 1.3rem;
        width: auto;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background-color: var(--secondary-black);
    color: var(--primary-white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-black);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--blue-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-black);
    color: var(--medium-gray);
}

/* About Page Styles */
.about-story-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.story-text {
    animation: fadeInLeft 1s ease;
}

.story-image {
    position: relative;
    animation: fadeInRight 1s ease;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow-gray);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.overlay-content {
    text-align: center;
    color: var(--primary-white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--blue-accent);
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.story-description {
    margin-bottom: 40px;
}

.story-description p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.mission-card,
.vision-card {
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-gray);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-accent), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.mission-card h3,
.vision-card h3 {
    color: var(--primary-black);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mission-card p,
.vision-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.mission-points li i,
.vision-points li i {
    color: var(--green-accent);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.founder-image {
    position: relative;
    animation: fadeInLeft 1s ease;
}

.founder-photo {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow-gray);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--blue-accent), #0056b3);
    color: var(--primary-white);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.founder-info {
    animation: fadeInRight 1s ease;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.founder-header h2 {
    color: var(--primary-black);
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.founder-title {
    color: var(--blue-accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-description p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.founder-quote {
    margin: 30px 0;
    padding: 25px;
    background-color: var(--light-gray);
    border-left: 4px solid var(--blue-accent);
    border-radius: 8px;
}

.founder-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.founder-expertise h4 {
    color: var(--primary-black);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tags .tag {
    background-color: var(--light-gray);
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.expertise-tags .tag:hover {
    background-color: var(--blue-accent);
    color: var(--primary-white);
    border-color: var(--blue-accent);
}

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

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

.value-card {
    background-color: var(--primary-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-gray);
    text-align: center;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-accent), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-white);
}

.value-card h3 {
    color: var(--primary-black);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.choose-item:nth-child(1) { animation-delay: 0.1s; }
.choose-item:nth-child(2) { animation-delay: 0.2s; }
.choose-item:nth-child(3) { animation-delay: 0.3s; }
.choose-item:nth-child(4) { animation-delay: 0.4s; }
.choose-item:nth-child(5) { animation-delay: 0.5s; }
.choose-item:nth-child(6) { animation-delay: 0.6s; }

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-accent), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.choose-icon i {
    font-size: 1.5rem;
    color: var(--primary-white);
}

.choose-content h3 {
    color: var(--primary-black);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.choose-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .story-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-photo {
        height: 400px;
    }
    
    .story-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-story-section,
    .mission-vision-section,
    .founder-section,
    .values-section,
    .why-choose-section {
        padding: 60px 0;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .choose-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .founder-photo {
        height: 350px;
    }
}

/* Legal Pages Styles */
.legal-content-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-gray);
    line-height: 1.7;
}

.last-updated {
    background-color: var(--light-gray);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--blue-accent);
}

.last-updated p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.terms-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-gray);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}

.terms-section h3 {
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.terms-section p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.terms-footer {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    border: 2px solid var(--border-gray);
}

.terms-footer p {
    margin: 8px 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.terms-footer p:last-child {
    font-weight: 600;
    color: var(--primary-black);
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content-section {
        padding: 60px 0;
    }
    
    .legal-content {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .terms-section ul {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .legal-content-section {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .terms-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
    
    .terms-section h3 {
        font-size: 1rem;
    }
    
    .last-updated {
        padding: 12px 15px;
    }
    
    .terms-footer {
        padding: 20px 15px;
    }
}

/* Enhanced CEO Styling */
.ceo-message {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.ceo-avatar {
    flex-shrink: 0;
}

.ceo-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ceo-info {
    flex: 1;
}

.ceo-info h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 8px;
    font-weight: 600;
    margin-top: 0;
    letter-spacing: 0.3px;
}

.ceo-title {
    font-size: 1.1rem;
    color: var(--blue-accent);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ceo-info blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.ceo-info blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--blue-accent);
    position: absolute;
    left: -10px;
    top: -10px;
    font-family: serif;
    opacity: 0.3;
}

/* Mobile responsive for CEO section */
@media (max-width: 768px) {
    .ceo-message {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .ceo-photo {
        width: 100px;
        height: 100px;
    }
    
    .ceo-info h3 {
        font-size: 1.5rem;
    }
    
    .ceo-title {
        font-size: 1rem;
    }
}