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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    /* zoom: 80%; */
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
}
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px; /* Optional: match the SVG corner radius */
    object-fit: cover;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 3;
}

.carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}
.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Gray overlay */
    z-index: 2;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    max-width: 600px;
    position: relative;
    z-index: 4;
}

.slide.active::before {
    opacity: 1;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 4;
    pointer-events: none;
}

.bg-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    animation: floatBackground 12s linear infinite;
    pointer-events: none;
    z-index: 2;
}

.bg-icon:nth-child(1) {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
    font-size: 2.5rem;
    animation-duration: 14s;
}

.bg-icon:nth-child(2) {
    top: 20%;
    left: -5%;
    animation-delay: 0.5s;
    font-size: 3.2rem;
    animation-duration: 15s;
}

.bg-icon:nth-child(3) {
    top: 30%;
    left: -5%;
    animation-delay: 1s;
    font-size: 2.8rem;
    animation-duration: 13s;
}

.bg-icon:nth-child(4) {
    top: 40%;
    left: -5%;
    animation-delay: 1.5s;
    font-size: 3.5rem;
    animation-duration: 16s;
}

.bg-icon:nth-child(5) {
    top: 50%;
    left: -5%;
    animation-delay: 2s;
    font-size: 2.2rem;
    animation-duration: 12s;
}

.bg-icon:nth-child(6) {
    top: 60%;
    left: -5%;
    animation-delay: 2.5s;
    font-size: 3.8rem;
    animation-duration: 17s;
}

.bg-icon:nth-child(7) {
    top: 70%;
    left: -5%;
    animation-delay: 3s;
    font-size: 2.6rem;
    animation-duration: 14s;
}

.bg-icon:nth-child(8) {
    top: 80%;
    left: -5%;
    animation-delay: 3.5s;
    font-size: 3.1rem;
    animation-duration: 15s;
}

.bg-icon:nth-child(9) {
    top: 15%;
    left: -5%;
    animation-delay: 4s;
    font-size: 2.4rem;
    animation-duration: 13s;
}

.bg-icon:nth-child(10) {
    top: 45%;
    left: -5%;
    animation-delay: 4.5s;
    font-size: 3.3rem;
    animation-duration: 16s;
}

.bg-icon:nth-child(11) {
    top: 65%;
    left: -5%;
    animation-delay: 5s;
    font-size: 2.9rem;
    animation-duration: 12s;
}

.bg-icon:nth-child(12) {
    top: 85%;
    left: -5%;
    animation-delay: 5.5s;
    font-size: 2.7rem;
    animation-duration: 18s;
}

@keyframes floatBackground {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        opacity: 0.7;
        transform: translateX(50vw) translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateX(110vw) translateY(-40px) rotate(360deg);
        opacity: 0.6;
    }
}

.slide-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.telegram:hover {
    background: #0088cc;
}

/* About Section */
.about {
    padding: 60px 0 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 50%;
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-radius: 50%;
    z-index: 1;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.about-section.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 60px 0 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    transform: rotate(45deg);
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -3%;
    width: 230px;
    height: 230px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a202c;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    bottom: 0;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.14) 0%, rgba(118, 75, 162, 0.14) 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 1;
}

.expertise::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 8%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.11) 0%, rgba(118, 75, 162, 0.11) 100%);
    border-radius: 50% 0% 50% 0%;
    z-index: 1;
}

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

.expertise-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.expertise-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.expertise-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

/* Staffing, HR, Compliance Sections */
.staffing, .hr, .compliance {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.staffing::before, .hr::before, .compliance::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50% 0% 50% 0%;
    z-index: 1;
}

.staffing::after, .hr::after, .compliance::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    clip-path: circle(50% at 50% 50%);
    z-index: 1;
}

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

.page-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    position: relative;
}

.page-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

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

.content-part {
    margin-bottom: 40px;
}

.content-part h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.content-part p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.content-part ul {
    list-style: none;
    padding: 0;
}

.content-part li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #4a5568;
}

.content-part li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 10%;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.13) 0%, rgba(118, 75, 162, 0.13) 100%);
    border-radius: 0% 100% 0% 100%;
    z-index: 1;
}

.clients::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 15%;
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    z-index: 1;
}

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

.clients-carousel {
    display: flex;
    animation: autoScroll 20s linear infinite;
    width: 200%; /* Double width for seamless loop */
}

.client-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: calc(100% / 8); /* 8 cards total (4 original + 4 duplicates) */
    margin-right: 30px;
    flex-shrink: 0;
    min-width: 300px;
    max-width: 400px;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.client-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.client-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

/* Pause animation on hover */
.clients-carousel-wrapper:hover .clients-carousel {
    animation-play-state: paused;
}

/* WhatsApp Floating Button Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Contact Section */
.contact {
    padding: 60px 0 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -2%;
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.09) 0%, rgba(118, 75, 162, 0.09) 100%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.11) 0%, rgba(118, 75, 162, 0.11) 100%);
    transform: rotate(45deg);
    border-radius: 20px;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 5px;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        transition: left 0.3s ease;
        gap: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        border-radius: 8px;
        width: 200px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: translateY(-2px);
    }
    
    .hero {
        height: 80vh;
    }
    
    .slide-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .scroll-to-top {
        bottom: 80px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .about-section,
    .content-section,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-section.reverse {
        direction: ltr;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .image-placeholder {
        height: 250px;
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .expertise-card {
        padding: 25px 15px;
    }
    
    .expertise-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .clients-carousel {
        animation-duration: 15s;
    }
    
    .client-card {
        min-width: 280px;
        margin-right: 15px;
        padding: 30px 20px;
    }
    
    .client-logo {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 18px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .page-header h2 {
        font-size: 2.2rem;
    }
    
    .content-part h3 {
        font-size: 1.5rem;
    }
    
    .bg-icon {
        font-size: 2rem;
    }
    
    .service-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
    
    .hero {
        height: 75vh;
    }
    
    .slide-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .scroll-to-top {
        bottom: 70px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .image-placeholder {
        height: 200px;
        font-size: 2.5rem;
    }
    
    .services-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .expertise-card {
        padding: 20px 15px;
    }
    
    .expertise-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .expertise-card h3 {
        font-size: 1rem;
    }
    
    .client-card {
        min-width: 260px;
        margin-right: 10px;
        padding: 25px 15px;
    }
    
    .client-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .client-card p {
        font-size: 0.9rem;
    }
    
    .client-card h4 {
        font-size: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .contact-item div {
        text-align: center;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin: 0 auto;
    }
    
    .contact-item h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
        text-align: center;
    }
    
    .contact-item p {
        font-size: 0.8rem;
        margin: 0;
        text-align: center;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .page-header h2 {
        font-size: 1.8rem;
    }
    
    .content-part h3 {
        font-size: 1.3rem;
    }
    
    .content-part p {
        font-size: 0.95rem;
    }
    
    .content-part li {
        font-size: 0.9rem;
    }
    
    .bg-icon {
        font-size: 1.5rem;
    }
    
    .service-header {
        height: 15vh;
    }
    
    .service-header h1 {
        font-size: 1.8rem;
    }
    
    .service-intro h2 {
        font-size: 1.8rem;
    }
    
    .service-intro p {
        font-size: 1rem;
    }
    
    .service-cards {
        gap: 20px;
    }
    
    .service-detail-card {
        padding: 25px 20px;
    }
    
    .service-detail-card h3 {
        font-size: 1.2rem;
    }
    
    .service-detail-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .slide-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .nav-link {
        width: 180px;
        font-size: 1rem;
    }
    
    .client-card {
        min-width: 240px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Service Page Styles */
.service-page {
    padding-top: 70px;
    min-height: 100vh;
}

.service-header {
    height: 20vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-header .background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.service-header .bg-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
    animation: floatBackground 12s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.service-header .bg-icon:nth-child(1) {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
    font-size: 1.8rem;
    animation-duration: 14s;
}

.service-header .bg-icon:nth-child(2) {
    top: 30%;
    left: -5%;
    animation-delay: 0.5s;
    font-size: 2.2rem;
    animation-duration: 15s;
}

.service-header .bg-icon:nth-child(3) {
    top: 50%;
    left: -5%;
    animation-delay: 1s;
    font-size: 1.9rem;
    animation-duration: 13s;
}

.service-header .bg-icon:nth-child(4) {
    top: 70%;
    left: -5%;
    animation-delay: 1.5s;
    font-size: 2.4rem;
    animation-duration: 16s;
}

.service-header .bg-icon:nth-child(5) {
    top: 90%;
    left: -5%;
    animation-delay: 2s;
    font-size: 1.6rem;
    animation-duration: 12s;
}

.service-header .bg-icon:nth-child(6) {
    top: 20%;
    left: -5%;
    animation-delay: 2.5s;
    font-size: 2.1rem;
    animation-duration: 17s;
}

.service-header h1 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-content {
    padding: 80px 0;
    background: white;
}

.service-intro {
    text-align: left;
    margin-bottom: 60px;
}

.service-intro h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

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

.service-detail-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-left-color: #667eea;
}

.service-detail-card .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-detail-card p {
    color: #4a5568;
    line-height: 1.6;
}