

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.client-info strong {
    display: block;
    color: #dc3545;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-controls {
    margin-top: 2rem;
}

.testimonial-controls .btn {
    width: 45px;
    height: 45px;
    border: 2px solid #e9ecef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    color: #666;
}

.testimonial-controls .btn:hover {
    border-color: #dc3545;
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}




/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #f093fb;
    --dark: #1a202c;
    --light: #f7fafc;
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #f56565;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ====== HEADER STYLES (Beautiful Clean Design) ====== */
header {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #2c3e50 60%, #2c3e50 100%);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #dc3545, #667eea, #764ba2) 1;
}

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

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

.logo img {
    width: 200px;
    height: 64px;
    
    transition: transform 0.3s ease;
}

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

.menu {
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc3545, #667eea);
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #dc3545;
}

.menu a:hover::after {
    width: 100%;
}

/* Services Dropdown */
.menu li {
    position: relative;
}

.menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    display: none;
    flex-direction: column;
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    margin-top: 15px;
    border: 1px solid #f0f0f0;
}

.menu li:hover ul {
    display: flex;
}

.menu li ul::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.menu li ul li {
    margin: 8px 0;
}

.menu li ul li a {
    padding: 8px 24px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}

.menu li ul li a::after {
    display: none;
}

.menu li ul li a:hover {
    background: #f8f9fa;
    color: #dc3545;
    padding-left: 25px;
}


/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.hamburger:hover {
    background: #e9ecef;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ====== HERO SECTION (Same as webservice) ====== */
.hero-web {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-web::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6) 0%, rgba(44, 62, 80, 0.45) 55%, rgba(44, 62, 80, 0.35) 100%);
    z-index: 1;
}

.hero-web::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridPulse 4s ease-in-out infinite, gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-code {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-code span {
    position: absolute;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    animation: particleFloat 12s infinite linear;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(102, 126, 234, 0.4);
    pointer-events: none;
    will-change: transform;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    25% {
        transform: translateY(75vh) translateX(20px) rotate(90deg) scale(1);
    }
    50% {
        transform: translateY(50vh) translateX(-30px) rotate(180deg) scale(1.1);
    }
    75% {
        transform: translateY(25vh) translateX(40px) rotate(270deg) scale(0.9);
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) rotate(360deg) scale(0.7);
        opacity: 0;
    }
}

.floating-code span:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 1.8rem;
    animation-delay: 0s;
    animation-duration: 15s;
}

.floating-code span:nth-child(2) {
    top: 60%;
    right: 15%;
    font-size: 1.4rem;
    animation-delay: -2s;
    animation-duration: 18s;
}

.floating-code span:nth-child(3) {
    bottom: 30%;
    left: 20%;
    font-size: 1.6rem;
    animation-delay: -4s;
    animation-duration: 14s;
}

.floating-code span:nth-child(4) {
    top: 40%;
    right: 30%;
    font-size: 1.2rem;
    animation-delay: -6s;
    animation-duration: 16s;
}

.floating-code span:nth-child(5) {
    bottom: 20%;
    right: 10%;
    font-size: 1.5rem;
    animation-delay: -8s;
    animation-duration: 13s;
}

.floating-code span:nth-child(6) {
    top: 70%;
    left: 40%;
    font-size: 1.3rem;
    animation-delay: -10s;
    animation-duration: 17s;
}

.floating-code span:nth-child(7) {
    top: 15%;
    right: 25%;
    font-size: 1.1rem;
    animation-delay: -12s;
    animation-duration: 19s;
}

.floating-code span:nth-child(8) {
    bottom: 40%;
    left: 60%;
    font-size: 1.4rem;
    animation-delay: -14s;
    animation-duration: 15s;
}

.floating-code span:nth-child(9) {
    top: 35%;
    left: 5%;
    font-size: 1.0rem;
    animation-delay: -16s;
    animation-duration: 20s;
}

.floating-code span:nth-child(10) {
    bottom: 15%;
    right: 35%;
    font-size: 1.3rem;
    animation-delay: -18s;
    animation-duration: 14s;
}

.floating-code span:nth-child(11) {
    top: 80%;
    left: 25%;
    font-size: 0.9rem;
    animation-delay: -20s;
    animation-duration: 16s;
}

.floating-code span:nth-child(12) {
    top: 50%;
    right: 5%;
    font-size: 1.2rem;
    animation-delay: -22s;
    animation-duration: 18s;
}

.floating-code span:nth-child(13) {
    bottom: 60%;
    left: 80%;
    font-size: 1.1rem;
    animation-delay: -24s;
    animation-duration: 13s;
}

.floating-code span:nth-child(14) {
    top: 25%;
    left: 70%;
    font-size: 1.0rem;
    animation-delay: -26s;
    animation-duration: 17s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-web h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero-web .lead {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}




/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes togglePulse {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.08); }
    100% { transform: rotate(90deg) scale(1); }
}

/* ====== BUTTONS ====== */
.btn-gradient {
    background: linear-gradient(135deg, #2c3e50 0%, #1f2d3a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.35);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

/* ====== ANIMATIONS & EFFECTS ====== */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgba(255, 255, 255, 0.75) }
}

.glow-effect {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    to { box-shadow: 0 0 30px rgba(102, 126, 234, 0.8), 0 0 40px rgba(102, 126, 234, 0.6); }
}

@keyframes textGlow {
    from { 
        text-shadow: 0 0 10px rgba(44, 62, 80, 0.3);
    }
    to { 
        text-shadow: 0 0 15px rgba(44, 62, 80, 0.6), 0 0 20px rgba(44, 62, 80, 0.4);
    }
}

@keyframes subtleGlow {
    from { 
        text-shadow: 0 0 8px rgba(108, 117, 125, 0.4);
    }
    to { 
        text-shadow: 0 0 12px rgba(108, 117, 125, 0.6);
    }
}

@keyframes activeTextGlow {
    from { 
        text-shadow: 0 0 12px rgba(108, 117, 125, 0.6);
    }
    to { 
        text-shadow: 0 0 18px rgba(108, 117, 125, 0.8), 0 0 25px rgba(108, 117, 125, 0.5);
    }
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.expertise-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Expertise Carousel Text */
.expertise-carousel-text {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.carousel-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(108, 117, 125, 0.4);
    animation: subtleGlow 4s ease-in-out infinite alternate;
}

.carousel-text.active {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 12px rgba(108, 117, 125, 0.6);
    animation: activeTextGlow 3s ease-in-out infinite alternate;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-controls .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
}

.carousel-controls .btn:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.carousel-controls .btn.active {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* Expertise Cards */
.expertise-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

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

.large-card {
    background-image: url(images/logistics.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
}




.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Small Cards */
.small-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    min-height: 150px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.small-card .card-icon {
    margin-right: 1rem;
    font-size: 2rem;
}

.small-card .card-content {
    color: #333;
    padding: 0;
}

.small-card .card-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.small-card .card-description {
    font-size: 0.9rem;
    color: #6c757d;
    opacity: 1;
}

/* Mini Cards */
.mini-card {
    background: #fff;
    border: 1px solid #e9ecef;
    min-height: 180px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mini-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mini-card .card-content {
    color: #333;
    padding: 0;
}

.mini-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.mini-card .card-description {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service-card:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(44, 62, 80, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.service-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Success Section */
.success-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.success-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.grid-item.large {
    grid-row: span 2;
    background: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item.medium {
    background: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item.small {
    background: url('images/business.jpeg');
    background-size: cover;
    background-position: center;
}

.business-img {
    background-image: url('images/business.jpeg');
    background-size: cover;
    background-position: center;
}

.stat-card {
    text-align: center;
    color: white;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.success-content {
    padding-left: 2rem;
}

.success-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a1a2e !important;
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand img {
    background: #f2f2f2;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 6px 10px;
    display: block;
}

.footer-description {
    color: #adb5bd;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #dc3545;
}


.social-links{
    display: flex;
}


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

.social-link:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-2px);
}

.contact-info {
    color: #adb5bd;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item:last-child span {
    white-space: nowrap;
}

.contact-item i {
    margin-top: 2px;
}


.contact-item a{
    text-decoration: none;
  color: #adb5bd;
}


.contact-item a:hover{
    color: #dc3545;
}

.newsletter-text {
    color: #adb5bd;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 25px 0 0 25px;
}

.newsletter-form .form-control::placeholder {
    color: #adb5bd;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    border: none;
}

.copyright {
    color: #6c757d;
    font-size: 0.85rem;
}

.footer-legal a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #dc3545;
}

/* ====== PARTNERS SECTION ====== */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 53, 69, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(118, 75, 162, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.partners-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="partnerGrid" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(102,126,234,0.15)"/><circle cx="0" cy="0" r="0.5" fill="rgba(220,53,69,0.1)"/><circle cx="40" cy="40" r="0.5" fill="rgba(220,53,69,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23partnerGrid)"/></svg>');
    animation: patternFloat 20s linear infinite;
    z-index: 1;
}

@keyframes patternFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, 40px) rotate(360deg); }
}

.partners-section .container {
    position: relative;
    z-index: 2;
}

.partners-section .section-title {
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partners-section .section-subtitle {
    color: #6c757d;
    font-weight: 500;
}

.partners-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.partners-carousel-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, rgba(248, 249, 250, 1), transparent);
    z-index: 3;
}

.partners-carousel-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, rgba(248, 249, 250, 1), transparent);
    z-index: 3;
}

.partners-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    /*animation: autoScroll 30s linear infinite;*/
    width: calc(100% + 8rem);
}

.partner-item {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.partner-item img {
    height: 180px;
    width: 150px;
    background-position: center;
    border-radius: 8px;
}

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

/* ====== TESTIMONIALS SECTION ====== */
.testimonials-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 53, 69, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title {
    color: #ecf0f1;
}

.testimonials-section .section-subtitle {
    color: #ecf0f1;
    font-weight: 500;
}

.testimonials-row {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.testimonials-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:images/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonialPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="0" cy="0" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialPattern)"/></svg>');
    animation: testimonialFloat 15s linear infinite;
    z-index: 1;
}

.testimonials-row::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: testimonialPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes testimonialFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes testimonialPulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

.testimonials-row .col-lg-4 {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    animation: testimonialFloat 6s ease-in-out infinite;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.testimonial-card:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 4s;
}

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

.stars i {
    animation: starTwinkle 2s ease-in-out infinite;
}

.stars i:nth-child(1) { animation-delay: 0.1s; }
.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.3s; }
.stars i:nth-child(4) { animation-delay: 0.4s; }
.stars i:nth-child(5) { animation-delay: 0.5s; }

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

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.client-info strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

/* ====== MINI CTA SECTION ====== */
.mini-cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1f2d3a 100%);
    color: white;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}










@media (max-width: 991px) {
    header {
        background: #ffffff;
        border-image: none;
        --mobile-header-height: 90px;
    }


.hero-web {
    min-height: 50vh;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}





    .menu {
        position: fixed;
        top: var(--mobile-header-height);
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 8px 16px 16px;
        display: flex !important;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        box-shadow: 0 16px 40px rgba(44, 62, 80, 0.18);
        border-top: 1px solid rgba(44, 62, 80, 0.08);
        border-radius: 0 0 18px 18px;
        z-index: 1002;
        gap: 12px;
    }

    .menu.show {
        max-height: 80vh;
        opacity: 1;
        display: flex !important;
    }

    .hamburger {
        background: #2c3e50;
    }

    .hamburger span {
        background: #ffffff;
    }

    .hamburger.active {
        animation: togglePulse 0.4s ease;
        transform: rotate(90deg);
    }

    .menu a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 44px;
        padding: 10px 12px;
        color: #333;
        border-radius: 999px;
        background: rgba(44, 62, 80, 0.04);
        border: 1px solid rgba(44, 62, 80, 0.08);
        letter-spacing: 0.2px;
    }

    .menu a:hover {
        background: rgba(44, 62, 80, 0.1);
        color: #2c3e50;
    }

    .get-started-btn {
        background: #dc3545;
        color: white !important;
        border-radius: 25px;
        padding: 12px 20px;
        border-bottom: none !important;
        text-align: center;
    }

    .menu li ul {
        position: static;
        display: block !important;
        background: #f8f9fa;
        margin: 8px 0;
        padding: 8px;
        border-radius: 8px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.3s ease;
    }

    .menu li.show ul {
        max-height: 500px;
        opacity: 1;
        transform: translateX(0);
    }

    .menu li ul li a {
        padding: 8px 12px;
        font-size: 14px;
        color: #666;
        border-bottom: none;
        background: transparent;
        border: none;
        border-radius: 8px;
    }

    .menu li ul li a:hover {
        background: #ffffff;
        color: #2c3e50;
    }

    .menu-overlay {
        position: fixed;
        top: var(--mobile-header-height);
        left: 0;
        width: 100%;
        height: calc(100% - var(--mobile-header-height));
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }


    
.partners-carousel {
    display: flex;
    align-items: center;
    
    gap: 4rem;
    animation: autoScroll 5s linear infinite;
    width: calc(200% + 8rem);
}




}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 150px;
    height: 150px;
    border: 4px solid rgba(44, 62, 80, 0.2);
    border-top: 4px solid #2c3e50;
    border-radius: 50%;
   animation: spin 1s linear infinite;
    background-image: url('images/load.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}
