* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0990AE;
    --secondary-color: #151515;
    --text-dark: #151515;
    --text-light: #666666;
    --bg-light: #E8F6F9;
    --bg-lighter: #D4EDF3;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Red Hat Display', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* Custom Cursor Effects */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(9, 144, 174, 0.6));
}

.navbar.scrolled .logo-icon {
    filter: drop-shadow(0 0 5px rgba(9, 144, 174, 0.3));
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo-text {
    background: linear-gradient(135deg, var(--primary-color), #077a93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 10px rgba(9, 144, 174, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-link:hover {
    color: var(--primary-color);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #077a93;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 144, 174, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .slide-bg-image {
    transform: scale(1);
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.tech-logo {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.tech-logo:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.tech-logo img,
.tech-logo svg {
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tech-logo-1 {
    top: 15%;
    right: 8%;
    animation: floatTechLogo 20s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4);
}

.tech-logo-2 {
    bottom: 30%;
    left: 8%;
    animation: floatTechLogo 15s ease-in-out infinite reverse;
    box-shadow: 0 8px 32px rgba(204, 41, 39, 0.4);
}

.tech-logo-3 {
    top: 45%;
    right: 12%;
    animation: floatTechLogo 18s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(81, 43, 212, 0.4);
}

.tech-logo-4 {
    bottom: 20%;
    right: 18%;
    animation: floatTechLogo 22s ease-in-out infinite reverse;
    box-shadow: 0 8px 32px rgba(2, 86, 155, 0.4);
}

.tech-logo-5 {
    top: 70%;
    left: 18%;
    animation: floatTechLogo 16s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(227, 79, 38, 0.4);
}

.tech-logo-6 {
    top: 20%;
    left: 8%;
    animation: floatTechLogo 19s ease-in-out infinite reverse;
    box-shadow: 0 8px 32px rgba(121, 82, 179, 0.4);
}

@keyframes floatTechLogo {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(15px, -15px) scale(1.03);
    }
    50% {
        transform: translate(-10px, 10px) scale(0.97);
    }
    75% {
        transform: translate(20px, 15px) scale(1.01);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 30px) rotate(270deg) scale(1.05);
    }
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: slideInContent 1s ease-out;
}

.hero-slide.active .slide-content {
    animation: slideInContent 1s ease-out;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.slide-title .highlight {
    color: var(--white);
    position: relative;
    display: inline-block;
}

.slide-title .highlight::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.slide-description {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slide-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.meta-item {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.meta-divider {
    font-size: 20px;
    opacity: 0.5;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.slide-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: var(--white);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Old Hero Section (keeping for reference) */
.hero {
    margin-top: 80px;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 144, 174, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(9, 144, 174, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    will-change: transform, opacity;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.03);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(90deg, rgba(9, 144, 174, 0.3), rgba(9, 144, 174, 0.1));
    z-index: -1;
    animation: highlightGrow 1s ease-out forwards;
}

@keyframes highlightGrow {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

.hero-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--white) 0%, rgba(9, 144, 174, 0.03) 100%);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #077a93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(9, 144, 174, 0.2);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
}

/* Clients Section */
.clients {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.clients-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.clients-track {
    display: flex;
    gap: 80px;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    opacity: 0.3;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: grayscale(100%);
    flex-shrink: 0;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-logo svg {
    max-width: 120px;
    height: auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease, transform 0.1s ease-out;
    cursor: pointer;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 144, 174, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.about-image {
    width: 100%;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.about-image-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.about-slide.active .about-img {
    transform: scale(1);
    animation: aboutKenBurns 8s ease-out forwards;
}

@keyframes aboutKenBurns {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.about-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.about-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.about-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.about-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease, transform 0.1s ease-out;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(9, 144, 174, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0);
}

.team-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.team-card:hover .team-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(9, 144, 174, 0.3);
    border-color: var(--primary-color);
}

.team-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}

.team-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-role {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 2px solid var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(9, 144, 174, 0.95), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Technologies Section */
.technologies {
    padding: 100px 0;
    background: var(--white);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.tech-category {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tech-category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tech-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.1);
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), #077a93);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(odd) .process-content {
    grid-column: 1;
    text-align: right;
}

.process-step:nth-child(odd) .process-icon {
    grid-column: 2;
}

.process-step:nth-child(even) .process-content {
    grid-column: 3;
    text-align: left;
}

.process-step:nth-child(even) .process-icon {
    grid-column: 2;
}

.process-number {
    position: absolute;
    font-size: 72px;
    font-weight: 800;
    color: rgba(9, 144, 174, 0.1);
    top: -20px;
    z-index: 0;
}

.process-step:nth-child(odd) .process-number {
    right: 0;
}

.process-step:nth-child(even) .process-number {
    left: 0;
}

.process-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.process-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-icon svg {
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon svg {
    transform: rotate(360deg) scale(1.1);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease, transform 0.1s ease-out;
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    color: #FFB800;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* Privacy Policy Section */
.privacy {
    padding: 100px 0;
    background: var(--white);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-item {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.privacy-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.privacy-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.privacy-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-lighter);
}

.privacy-footer p {
    font-size: 16px;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-map:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 32px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #077a93);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(9, 144, 174, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(9, 144, 174, 0.5);
}

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--bg-lighter);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Red Hat Display', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 144, 174, 0.9) 0%, rgba(7, 122, 147, 0.85) 100%);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin: 0;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    /* Navigation - Ensure visibility on all backgrounds */
    .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
    }

    .logo-text {
        background: linear-gradient(135deg, var(--primary-color), #077a93);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }

    .logo-icon {
        filter: drop-shadow(0 0 5px rgba(9, 144, 174, 0.3));
    }

    .nav-link {
        color: var(--text-dark);
        text-shadow: none;
    }

    .nav-link:hover {
        color: var(--primary-color);
    }

    .hamburger span {
        background: var(--text-dark);
    }

    /* Hero Slider */
    .hero-slider {
        min-height: 600px;
        height: 80vh;
    }

    .slide-content {
        max-width: 800px;
        padding: 0 30px;
    }

    .slide-title {
        font-size: 52px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .slide-description {
        font-size: 19px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .slide-meta {
        margin-bottom: 35px;
        font-size: 15px;
    }

    .meta-item {
        font-size: 13px;
    }

    .slide-buttons {
        gap: 18px;
    }

    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        padding: 13px 28px;
        font-size: 15px;
    }

    .slider-arrow {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .slider-prev {
        left: 30px;
    }

    .slider-next {
        right: 30px;
    }

    .slider-dots {
        bottom: 40px;
        gap: 12px;
    }

    /* Tech Logos in Hero */
    .tech-logo {
        padding: 15px;
        width: 85px;
        height: 85px;
    }

    .tech-logo img {
        width: 55px !important;
        height: 55px !important;
    }

    .tech-logo svg {
        width: 55px !important;
        height: 55px !important;
    }

    /* Sections */
    .section-title {
        font-size: 42px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }

    .stat-item {
        padding: 28px;
    }

    .stat-number {
        font-size: 44px;
    }

    /* Technologies */
    .tech-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape (968px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 768px;
        padding: 0 25px;
    }

    /* Navigation - Force scrolled state for better visibility */
    .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
    }

    .logo-text {
        background: linear-gradient(135deg, var(--primary-color), #077a93);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }

    .logo-icon {
        filter: drop-shadow(0 0 5px rgba(9, 144, 174, 0.3));
    }

    .nav-link {
        color: var(--text-dark);
        text-shadow: none;
        font-size: 15px;
    }

    .nav-link:hover {
        color: var(--primary-color);
    }

    .hamburger span {
        background: var(--text-dark);
    }

    .nav-menu {
        gap: 25px;
    }

    /* Hero Slider */
    .hero-slider {
        min-height: 550px;
        height: 75vh;
    }

    .slide-content {
        max-width: 750px;
        padding: 0 25px;
    }

    .slide-title {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .slide-description {
        font-size: 18px;
        margin-bottom: 22px;
        line-height: 1.65;
        max-width: 650px;
    }

    .slide-meta {
        margin-bottom: 30px;
        font-size: 14px;
        gap: 12px;
    }

    .meta-item {
        font-size: 12px;
    }

    .slide-buttons {
        gap: 16px;
        flex-wrap: wrap;
    }

    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        padding: 12px 26px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }

    .slider-dots {
        bottom: 35px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 35px;
    }

    /* Tech Logos in Hero */
    .tech-logo {
        padding: 12px;
        width: 75px;
        height: 75px;
    }

    .tech-logo img {
        width: 50px !important;
        height: 50px !important;
    }

    .tech-logo svg {
        width: 50px !important;
        height: 50px !important;
    }

    .tech-logo-1 {
        top: 18%;
        right: 10%;
    }

    .tech-logo-2 {
        bottom: 28%;
        left: 10%;
    }

    .tech-logo-3 {
        top: 48%;
        right: 13%;
    }

    .tech-logo-4 {
        bottom: 22%;
        right: 20%;
    }

    .tech-logo-5 {
        top: 68%;
        left: 20%;
    }

    .tech-logo-6 {
        top: 22%;
        left: 10%;
    }

    /* Stats */
    .stats-section {
        padding: 70px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .stat-item {
        padding: 25px;
    }

    /* Sections */
    .section-title {
        font-size: 40px;
    }

    .section-description {
        font-size: 17px;
    }

    /* Services */
    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }

    /* About */
    .about {
        padding: 80px 0;
    }

    .about-wrapper {
        gap: 60px;
    }

    .about-image-slider {
        height: 450px;
    }

    /* Team */
    .team {
        padding: 80px 0;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .team-card {
        padding: 25px 20px;
    }

    .team-image {
        width: 130px;
        height: 130px;
    }

    .team-name {
        font-size: 20px;
    }

    .team-role {
        font-size: 15px;
    }

    /* Portfolio */
    .portfolio {
        padding: 80px 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .portfolio-image {
        height: 230px;
    }

    /* Technologies */
    .technologies {
        padding: 80px 0;
    }

    .tech-categories {
        gap: 40px;
    }

    .tech-category {
        padding: 35px;
    }

    .tech-category-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .tech-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .tech-item {
        padding: 18px;
    }

    /* Process */
    .process {
        padding: 80px 0;
    }

    .process-timeline {
        max-width: 700px;
    }

    .process-step {
        gap: 35px;
        margin-bottom: 50px;
    }

    .process-content {
        padding: 28px;
    }

    .process-title {
        font-size: 20px;
    }

    .process-description {
        font-size: 15px;
    }

    /* Testimonials */
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonial-card {
        padding: 35px;
    }

    /* Privacy */
    .privacy {
        padding: 80px 0;
    }

    .privacy-item {
        padding: 25px;
        margin-bottom: 35px;
    }

    .privacy-heading {
        font-size: 20px;
    }

    .privacy-text {
        font-size: 15px;
    }

    /* Contact */
    .contact {
        padding: 80px 0;
    }

    .contact-wrapper {
        gap: 50px;
    }

    .info-icon {
        width: 65px;
        height: 65px;
    }

    .contact-map iframe {
        height: 400px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-section:first-child .footer-logo {
        justify-content: center;
    }
}

/* Tablet Portrait (768px - 968px) */
@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 40px 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu .nav-link {
        color: var(--text-dark);
        text-shadow: none;
        padding: 12px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Hero Slider Responsive */
    .hero-slider {
        min-height: 600px;
        height: auto;
    }

    .slide-title {
        font-size: 48px;
    }

    .slide-description {
        font-size: 18px;
        padding: 0 20px;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }

    .slider-dots {
        bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Tech Logos Responsive */
    .tech-logo {
        padding: 12px;
        width: 80px;
        height: 80px;
    }

    .tech-logo img,
    .tech-logo svg {
        width: 50px !important;
        height: 50px !important;
    }

    .tech-logo-5,
    .tech-logo-6 {
        display: none;
    }

    /* Sections */
    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-track {
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        padding: 30px 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-slider {
        height: 400px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-image {
        height: 220px;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-category {
        padding: 30px;
    }

    .tech-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .tech-item {
        padding: 15px;
    }

    /* Process Timeline */
    .process-timeline::before {
        left: 40px;
    }

    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

    .process-step:nth-child(odd) .process-content,
    .process-step:nth-child(even) .process-content {
        grid-column: 2;
        text-align: left;
    }

    .process-step:nth-child(odd) .process-icon,
    .process-step:nth-child(even) .process-icon {
        grid-column: 1;
    }

    .process-number {
        display: none;
    }

    .process-content {
        padding: 25px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacy-content {
        padding: 0 20px;
    }

    .privacy-item {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .privacy-item ul {
        margin-left: 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map iframe {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Small Tablets (600px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 25px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px;
    }

    .privacy-item {
        padding: 20px;
    }

    .privacy-heading {
        font-size: 20px;
    }

    .privacy-text {
        font-size: 15px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile Landscape (480px - 600px) */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    /* Logo & Navigation */
    .logo-text {
        font-size: 24px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .nav-menu {
        top: 70px;
        padding: 30px 0;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        min-height: 100vh;
        height: 100vh;
    }

    .slide-content {
        padding: 0 15px;
    }

    .slide-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .slide-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .slide-meta {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 30px;
    }

    .meta-divider {
        display: none;
    }

    .slide-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .slide-buttons .btn-primary,
    .slide-buttons .btn-secondary {
        width: 100%;
        padding: 14px 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 30px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 25px;
    }

    .stat-number {
        font-size: 40px;
    }

    /* Tech Logos Mobile */
    .tech-logo {
        padding: 8px;
        width: 70px;
        height: 70px;
    }

    .tech-logo img,
    .tech-logo svg {
        width: 40px !important;
        height: 40px !important;
    }

    .tech-logo-3,
    .tech-logo-4 {
        display: none;
    }

    .tech-logo-1 {
        top: 15%;
        right: 5%;
    }

    .tech-logo-2 {
        bottom: 25%;
        left: 5%;
    }

    /* Sections */
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-illustration {
        max-width: 100%;
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 20px;
    }

    .services-illustration {
        padding: 0 15px;
    }

    .services-illustration svg {
        height: 250px;
    }

    /* Clients */
    .clients-track {
        gap: 40px;
    }

    .client-logo {
        min-width: 120px;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-text {
        font-size: 16px;
    }

    .about-image-slider {
        height: 300px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Team */
    .team {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-card {
        padding: 25px;
    }

    .team-image {
        width: 120px;
        height: 120px;
    }

    /* Portfolio */
    .portfolio {
        padding: 60px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-image {
        height: 200px;
    }

    /* Technologies */
    .technologies {
        padding: 60px 0;
    }

    .tech-category {
        padding: 25px 20px;
    }

    .tech-category-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .tech-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tech-item {
        padding: 12px;
    }

    .tech-item span {
        font-size: 13px;
    }

    /* Process */
    .process {
        padding: 60px 0;
    }

    .process-timeline {
        padding: 0 10px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .process-icon svg {
        width: 50px;
        height: 50px;
    }

    .process-content {
        padding: 20px;
    }

    .process-title {
        font-size: 18px;
    }

    .process-description {
        font-size: 14px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    /* Privacy */
    .privacy {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 0 10px;
    }

    .privacy-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .privacy-heading {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .privacy-text {
        font-size: 14px;
    }

    .privacy-item ul {
        margin-left: 12px;
        font-size: 14px;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-item h4 {
        font-size: 16px;
    }

    .info-item p {
        font-size: 14px;
    }

    .contact-map iframe {
        height: 300px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    .tech-items {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 25px;
    }

    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 12px;
    }

    .process-icon svg {
        width: 40px;
        height: 40px;
    }

    .privacy-heading {
        font-size: 16px;
    }

    .privacy-text {
        font-size: 13px;
    }

    .about-image-slider {
        height: 250px;
    }

    .portfolio-image {
        height: 180px;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), #077a93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-lighter);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
/* Hero Illustration */
.hero-illustration {
    max-width: 800px;
    margin: 60px auto 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-illustration svg {
    width: 100%;
    height: auto;
}

/* Services Illustration */
.services-illustration {
    margin: 40px auto 60px;
    max-width: 100%;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.services-illustration svg {
    width: 100%;
    height: auto;
}

/* Animated Elements */
.float-element {
    animation: floatSlow 6s ease-in-out infinite;
}

.float-element-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.dash-animate {
    stroke-dasharray: 10, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

.pulse-dot {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(-30px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: popupIconBounce 0.6s ease-out 0.2s;
}

.popup-icon.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.popup-icon.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.popup-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.popup-icon.info {
    background: linear-gradient(135deg, var(--primary-color), #077a93);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(9, 144, 174, 0.4);
}

@keyframes popupIconBounce {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.popup-message {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.popup-button {
    width: 100%;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Red Hat Display', sans-serif;
}

.popup-button.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.popup-button.success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.popup-button.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
}

.popup-button.error:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.popup-button.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
}

.popup-button.warning:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.popup-button.info {
    background: linear-gradient(135deg, var(--primary-color), #077a93);
    color: var(--white);
}

.popup-button.info:hover {
    background: linear-gradient(135deg, #077a93, #065a6f);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 144, 174, 0.4);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-lighter);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 600px) {
    .popup-content {
        padding: 30px 24px;
        max-width: 90%;
    }

    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .popup-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .popup-message {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .popup-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Content Protection - Prevent Copying and Selection */

/* Disable text selection on entire website */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Allow text selection only in input fields and textareas */
input, textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

/* Image Protection - Prevent Copying */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: auto;
}

/* Disable right-click context menu on images */
img {
    -webkit-context-menu: none;
    context-menu: none;
}

/* Additional protection for background images and sections with images */
.hero, .services-grid, .portfolio-grid, .team-grid, .popup-img,
.team-photo, .about-img, .portfolio-image img, .slide-bg-image,
.client-logo, .tech-logo img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
