/* ===================================
   DIGITAL CORE IT SOLUTIONS - CSS
   Professional Styling v2.0
   ==================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

:root {
    --primary-color: #2563eb;
    --primary-light: #dbeafe;
    --secondary-color: #3859b3;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-bg: #f7f9fc;
    --dark-text: #1a1a2e;
    --light-text: #6c757d;
    --border-color: #d1d5db;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: #fff;
    font-weight: 400;
    letter-spacing: -0.3px;
}

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

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(135deg, #87ceeb 0%, #87ceeb 100%);
    color: #1a1a2e;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffc107;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s ease;
}

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

.cta-link {
    background: rgba(255, 193, 7, 0.2);
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #ffc107;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* ===== CONTACT STRIP ===== */
.contact-strip {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    padding: 16px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-strip-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-text);
    transition: var(--transition-fast);
}

.strip-item:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.strip-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.strip-item a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.strip-item a:hover {
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    background: transparent;
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-left-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    background-color: #f0f4f8;
}

.growing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.growing-img:hover {
    transform: scale(1.02);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    width: 100%;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: white;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #ffc107;
}

.hero-subtitle-right {
    position: absolute;
    right: 30px;
    bottom: 60px;
    z-index: 3;
    width: 35%;
    text-align: right;
}

.hero-services-animation {
    font-size: 1.2rem;
    margin-bottom: 60px;
    height: 45px;
    font-weight: 600;
}

.animated-text {
    color: #ffc107;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-background {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.15;
}

.floating-icon {
    position: absolute;
    font-size: 5rem;
    animation: float 6s ease-in-out infinite;
}

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

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, #60a5fa 100%);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideTransition 10s ease-in-out infinite;
}

.carousel-slide:nth-child(2) {
    animation-delay: 3.33s;
}

.carousel-slide:nth-child(3) {
    animation-delay: 6.66s;
}

@keyframes slideTransition {
    0% { opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.6) 0%, rgba(0, 123, 255, 0.4) 100%);
    z-index: 2;
}

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

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

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== REFLECTIVE IMAGE STYLING ===== */
.reflective-image {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reflective-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.3);
}

.reflective-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
}

.reflective-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.25) 0%, rgba(13, 71, 161, 0.15) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.reflective-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    z-index: 2;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.05rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

section.alternate {
    background: var(--light-bg);
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    letter-spacing: -1px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

h3 {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.92;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* ===== QUICK INTRO ===== */
.quick-intro {
    background: var(--light-bg);
    padding: 60px 0;
}

.quick-intro h2 {
    margin-bottom: 20px;
}

.quick-intro > .container > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.highlight-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
    transition: top 0.3s ease;
    z-index: -1;
}

.highlight-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.highlight-item:hover::before {
    top: 0;
}

.highlight-item i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.highlight-item:hover i {
    transform: scale(1.2) rotateZ(-10deg);
}

/* ===== SERVICES GRID ===== */
.services-grid,
.projects-preview,
.testimonials-grid,
.services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card,
.project-card,
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1.5px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #0052a3);
}

.service-card:hover,
.project-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon,
.project-image {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon,
.project-card:hover .project-image {
    transform: scale(1.15) rotateY(10deg);
    color: var(--secondary-color);
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 15px;
}

.service-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-card a:hover {
    color: var(--secondary-color);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background: var(--light-bg);
}

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

.reason {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reason::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.reason:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

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

.reason-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.reason h3 {
    margin: 20px 0 10px;
    position: relative;
    z-index: 1;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, white 0%, var(--primary-light) 100%);
}

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

.featured-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price {
    margin: 30px 0;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    color: var(--light-text);
    font-size: 0.95rem;
}

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

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--success-color);
    font-weight: bold;
}

/* ===== TESTIMONIALS ===== */
.testimonials-preview {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, var(--primary-light) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-preview::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-preview .container {
    position: relative;
    z-index: 1;
}

.testimonials-preview h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.testimonials-preview > .container > p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 60px;
    font-weight: 500;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    height: 450px;
}

.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    width: 100%;
    max-width: 700px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px) scale(0.9);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
    animation: testimonialSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes testimonialSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.08;
    font-weight: 900;
}

.testimonial-card:hover {
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.2);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 4px;
    color: #fbbf24;
    font-weight: bold;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 2;
    color: #334155;
    margin-bottom: 35px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.testimonial-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Carousel indicators */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.author-info strong {
    display: block;
    color: var(--dark-text);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--light-text);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0a1428 0%, #1a1a2e 100%);
    color: white;
    padding: 70px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-section p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
    display: inline-block;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* ===== FORMS ===== */
.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 13px 15px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-light);
    background: #fafbfc;
}

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

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ===== PORTFOLIO ===== */
.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    display: none;
}

.portfolio-item.active {
    display: block;
}

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

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-info {
    padding: 30px;
}

.portfolio-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-strip-content {
        gap: 15px;
        flex-direction: column;
    }
    
    .strip-item {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn,
    .cta-buttons .btn {
        width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 50px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Stagger animations for cards */
.service-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0s forwards; }
.service-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.1s forwards; }
.service-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.2s forwards; }
.service-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.3s forwards; }
.service-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.4s forwards; }
.service-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.5s forwards; }
.service-card:nth-child(n+7) { animation: fadeInUp 0.6s ease-out 0.6s forwards; }

.reason:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s forwards; }
.reason:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s forwards; }
.reason:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s forwards; }
.reason:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s forwards; }
.reason:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s forwards; }
.reason:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s forwards; }

.pricing-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s forwards; }
.pricing-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s forwards; }
.pricing-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s forwards; }

/* ===== UTILITY ANIMATIONS ===== */
.pulse-animation {
    animation: pulse 2s infinite;
}

.loading-animation {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    background: white;
    padding: 50px;
    border-radius: 10px;
    line-height: 1.8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-text h3 {
    color: var(--dark-text);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-text ul li {
    margin-bottom: 8px;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-full {
    padding: 60px 0;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.testimonial-meta h4 {
    color: var(--dark-text);
    margin-bottom: 3px;
}

.testimonial-meta span {
    font-size: 0.85rem;
    color: var(--light-text);
}

.testimonial-service {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 15px;
}

.testimonial-stats {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    color: white;
}

.testimonial-stats h2 {
    color: white;
    margin-bottom: 50px;
}

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

.testimonial-stats .stat-card {
    text-align: center;
    padding: 30px;
}

.testimonial-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-stats .stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.why-clients-choose .reason {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

/* ===== SERVICE PRICING TABLE ===== */
.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-pricing-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-pricing-card h3 {
    margin-bottom: 20px;
    color: var(--dark-text);
}

.service-pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.service-pricing-card ul li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.btn-small {
    width: 100%;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-info-section {
    padding: 60px 0;
}

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

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
}

.info-desc {
    font-size: 0.9rem;
    color: var(--light-text);
}

.contact-form-section {
    padding: 60px 0;
}

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

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-map-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.map-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.map-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
}

.map-info h3 {
    margin-bottom: 10px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 15px;
}

.quick-contact {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.quick-contact h2 {
    margin-bottom: 15px;
}

.quick-contact p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-text);
    min-width: 150px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.quick-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: var(--primary-color);
}

.quick-btn i {
    font-size: 2rem;
    color: var(--primary-color);
}

.why-contact {
    background: white;
    padding: 60px 0;
}

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

.why-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.emergency-support {
    background: var(--danger-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.emergency-support h3 {
    color: white;
    margin-bottom: 10px;
}

.emergency-support a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

/* ===== FAQ PAGE ===== */
.faq-content {
    padding: 60px 0;
}

.faq-categories {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-category {
    padding: 40px;
    border-bottom: 1px solid var(--border-color);
}

.faq-category:last-child {
    border-bottom: none;
}

.category-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-text);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-item.expandable .faq-question::after {
    content: '▼';
    font-size: 0.75rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 15px;
    background: white;
    display: none;
    border-left: 3px solid var(--primary-color);
    margin-top: 10px;
    color: var(--light-text);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer ul {
    margin-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

.still-questions {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.still-questions h2 {
    margin-bottom: 15px;
}

.still-questions p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.pricing-intro {
    background: var(--light-bg);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 0;
}

.pricing-category {
    padding: 80px 0;
}

.pricing-category:nth-child(even) {
    background: var(--light-bg);
}

.services-nav {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.services-nav-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-nav-btn {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.service-nav-btn:hover,
.service-nav-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.service-detail {
    padding: 60px 0;
}

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

.service-content.alternate {
    direction: rtl;
}

.service-content.alternate > * {
    direction: ltr;
}

.service-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-info h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-info p {
    margin-bottom: 20px;
    text-align: left;
}

.service-info h3 {
    text-align: left;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.feature {
    background: var(--light-bg);
    padding: 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature i {
    color: var(--primary-color);
}

.important-note {
    background: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 280px;
        order: -1;
    }

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

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

    .quick-contact-buttons {
        flex-direction: column;
    }

    .quick-btn {
        min-width: 100%;
    }

    .legal-text {
        padding: 25px;
    }

    .services-nav-buttons {
        overflow-x: auto;
    }
}

/* ===== ANIMATED TESTIMONIALS CAROUSEL ===== */
.testimonials-carousel-section {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(13, 71, 161, 0.05) 100%);
    padding: 60px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    margin-bottom: 60px;
}

.animated-testimonials-carousel {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: fadeInOut 8s ease-in-out infinite;
}

.carousel-testimonial.active {
    position: relative;
    opacity: 1;
    animation: fadeInOut 8s ease-in-out infinite;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

.testimonial-content-animated {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text-animated {
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin: 20px 0;
    font-style: italic;
    font-weight: 500;
}

.testimonial-attribution {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.testimonial-attribution strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-attribution span {
    display: block;
    color: var(--light-text);
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: var(--primary-color);
    transform: scale(1.3);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    animation: slideUpFade 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:nth-child(5) { animation-delay: 0.4s; }
.testimonial-card:nth-child(6) { animation-delay: 0.5s; }
.testimonial-card:nth-child(7) { animation-delay: 0.6s; }
.testimonial-card:nth-child(8) { animation-delay: 0.7s; }
.testimonial-card:nth-child(9) { animation-delay: 0.8s; }
.testimonial-card:nth-child(10) { animation-delay: 0.9s; }
.testimonial-card:nth-child(11) { animation-delay: 1s; }
.testimonial-card:nth-child(12) { animation-delay: 1.1s; }

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

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

.testimonial-stars {
    margin: 15px 0;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--light-text);
    line-height: 1.7;
    margin: 15px 0;
    min-height: 80px;
}

@media (max-width: 768px) {
    .testimonials-carousel-section {
        padding: 30px;
    }

    .testimonial-content-animated {
        padding: 20px;
    }

    .testimonial-text-animated {
        font-size: 1rem;
    }

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

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 28px;
    }
}

/* ===== ENHANCED ABOUT PAGE STYLING ===== */
.core-values {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 100px 0;
}

.core-values h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.core-values h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 50px;
    margin-top: 20px;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,123,255,0.2);
    border-top-color: var(--secondary-color);
}

.value-card:hover::before {
    right: -20px;
}

.value-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(13,71,161,0.05) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(20deg) scale(1.1);
    color: var(--secondary-color);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin: 20px 0 15px;
    font-weight: 700;
}

.value-card p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== ENHANCED OBJECTIVES STYLING ===== */
.business-objectives {
    background: #ffffff;
    color: var(--dark-text);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.business-objectives::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.business-objectives h2 {
    color: var(--dark-text);
    margin-bottom: 60px;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.business-objectives h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-top: 15px;
    border-radius: 2px;
}

.objectives-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.objective {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 45px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.objective::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transition: height 0.3s ease;
}

.objective:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.objective-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.8;
}

.objective h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.objective p {
    color: var(--light-text);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== ENHANCED PORTFOLIO STYLING ===== */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,123,255,0.25);
}

.portfolio-image {
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(13,71,161,0.05) 100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,123,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-image {
    background: linear-gradient(135deg, rgba(13,71,161,0.15) 0%, rgba(0,123,255,0.1) 100%);
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image i {
    transform: scale(1.2) rotateZ(5deg);
    color: var(--secondary-color);
}

.portfolio-image i {
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.portfolio-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.portfolio-icon-box i {
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-icon-box i {
    transform: scale(1.2) rotateZ(5deg);
    color: var(--secondary-color);
}

.portfolio-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-item h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.portfolio-item p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 15px;
}

.portfolio-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    margin-top: auto;
}

/* ===== ENHANCED PORTFOLIO FILTERS ===== */
.portfolio-filters {
    background: var(--light-bg);
    padding: 30px 0;
    margin: 40px 0;
    border-radius: 10px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--dark-text);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

/* ===== ENHANCED COMPANY OVERVIEW ===== */
.company-overview {
    padding: 80px 0;
}

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

.overview-text h2 {
    font-size: 2.2rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.overview-text p {
    color: var(--light-text);
    line-height: 2;
    margin-bottom: 20px;
    font-size: 1rem;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0,123,255,0.15) 0%, rgba(13,71,161,0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary-color);
    border: 3px solid rgba(0,123,255,0.2);
    transition: all 0.4s ease;
}

.overview-content:hover .image-placeholder {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0,123,255,0.15);
}

/* ===== ENHANCED MISSION VISION ===== */
.mission-vision {
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    padding: 80px 0;
}

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

.mission-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,123,255,0.2);
    border-left-color: var(--secondary-color);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.6rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--light-text);
    line-height: 1.9;
    font-size: 1rem;
}

/* ===== ENHANCED COMMITMENT ===== */
.commitment {
    padding: 80px 0;
}

.commitment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 50px;
    position: relative;
}

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

.commitment-card {
    background: linear-gradient(135deg, white 0%, #f9f9f9 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-color);
}

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

.commitment-card h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.commitment-card p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== ENHANCED WHY CHOOSE ===== */
.why-extended h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 50px;
}

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

.reason-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-color);
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,123,255,0.15);
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reason-item i {
    font-size: 1.4rem;
}

.reason-item p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .overview-content,
    .mission-vision .container {
        grid-template-columns: 1fr;
    }

    .core-values h2,
    .business-objectives h2,
    .commitment h2,
    .why-extended h2 {
        font-size: 1.8rem;
    }

    .value-card,
    .objective,
    .portfolio-item {
        padding: 25px;
    }

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

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== ENHANCED SUCCESS STATS SECTION ===== */
.success-stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.success-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.success-stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.success-stats h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.success-stats h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}

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

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
    animation: countUp 0.6s ease-out forwards;
}

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

.stat-card p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== ENHANCED CLIENT INDUSTRIES SECTION ===== */
.client-industries {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.client-industries h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    position: relative;
}

.client-industries h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.industry-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(13,71,161,0.05) 100%);
    transition: top 0.4s ease;
    z-index: -1;
}

.industry-card:hover::before {
    top: 0;
}

.industry-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,123,255,0.25);
    border-color: var(--primary-color);
}

.industry-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}

.industry-card:hover i {
    transform: rotateY(360deg) scale(1.2);
    color: var(--secondary-color);
}

.industry-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.industry-card:hover h3 {
    color: var(--primary-color);
}

.industry-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.industry-card:hover p {
    color: var(--dark-text);
}

/* ===== ALTERNATIVE LAYOUT FOR INDUSTRIES (2-COLUMN ON LARGER SCREENS) ===== */
@media (min-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== ANIMATIONS FOR STAT CARDS ===== */
@keyframes slideInStats {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: slideInStats 0.6s ease-out forwards;
}

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

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

.industry-card {
    animation: slideInIndustries 0.6s ease-out forwards;
}

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

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .success-stats {
        padding: 60px 0;
    }

    .success-stats h2,
    .client-industries h2 {
        font-size: 2rem;
    }

    .stats-grid,
    .industries-grid {
        gap: 25px;
        margin-top: 40px;
    }

    .stat-card {
        padding: 35px 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .industry-card {
        padding: 35px 25px;
    }

    .industry-card i {
        font-size: 3rem;
    }

    .industry-card h3 {
        font-size: 1.2rem;
    }

    .client-industries {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .stats-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .industry-card i {
        font-size: 2.5rem;
    }

    .success-stats h2::after,
    .client-industries h2::after {
        margin: 15px auto 0;
    }
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */

/* Tablet Devices (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 20px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-carousel {
        width: 35%;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .service-detail {
        padding: 40px 0;
    }

    .service-image {
        height: 300px;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    section {
        padding: 40px 0;
    }

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

/* Small Mobile Devices (360px - 480px) */
@media (max-width: 480px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        font-size: 16px; /* Prevents zoom on input focus */
    }

    .container {
        padding: 0 12px;
    }

    .hero-carousel {
        position: static;
        width: 100%;
        height: 250px;
        margin-top: 20px;
        border-radius: 12px;
    }

    .carousel-overlay {
        background: linear-gradient(135deg, rgba(13, 71, 161, 0.4) 0%, rgba(0, 123, 255, 0.3) 100%);
    }

    .carousel-dots {
        bottom: 10px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .reflective-image {
        max-width: 100%;
        max-width: 400px;
        margin-top: 20px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-wrapper {
        padding: 0 12px;
    }

    .logo {
        font-size: 1.2rem;
        gap: 5px;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .menu-toggle {
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }

    .menu-toggle span {
        height: 2px;
    }

    .nav-links {
        padding: 15px;
        gap: 8px;
        font-size: 0.85rem;
    }

    .nav-links a {
        padding: 8px 0;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-cta {
        gap: 8px;
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .btn-large {
        width: 100%;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    section {
        padding: 30px 0;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Services */
    .service-detail {
        padding: 25px 0;
    }

    .service-content {
        gap: 20px;
    }

    .service-image {
        height: 220px;
        border-radius: 10px;
    }

    .service-info h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .service-info p {
        font-size: 0.85rem;
    }

    .service-info h3 {
        font-size: 1rem;
        margin-top: 15px;
    }

    .service-list {
        margin-bottom: 15px;
    }

    .service-list li {
        padding: 8px 0;
        padding-left: 20px;
        font-size: 0.85rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature {
        padding: 10px;
        font-size: 0.85rem;
    }

    .feature i {
        font-size: 1rem;
        min-width: 20px;
    }

    /* Grids */
    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .portfolio-grid,
    .stats-grid,
    .industries-grid,
    .reasons-grid,
    .additional-grid,
    .guarantee-cards {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    /* Cards */
    .service-card,
    .pricing-card,
    .testimonial-card,
    .portfolio-item,
    .stat-item,
    .additional-card,
    .guarantee-card {
        padding: 15px;
    }

    .service-card h3,
    .pricing-card h3,
    .testimonial-card h3,
    .portfolio-item h3,
    .additional-card h3,
    .guarantee-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .service-card p,
    .pricing-card p,
    .testimonial-card p,
    .portfolio-item p,
    .additional-card p,
    .guarantee-card p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .pricing-card {
        transform: scale(1) !important;
    }

    .pricing-card.featured {
        margin: 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Contact */
    .contact-strip-content {
        gap: 10px;
        flex-direction: column;
        padding: 20px 0;
    }

    .strip-item {
        padding: 15px;
    }

    .strip-item i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .strip-item p {
        font-size: 0.8rem;
    }

    .contact-content {
        gap: 20px;
    }

    .contact-form-group {
        margin-bottom: 12px;
    }

    .contact-form-group label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .contact-form-group input,
    .contact-form-group textarea,
    .contact-form-group select {
        font-size: 16px; /* Prevents zoom on focus */
        padding: 10px;
    }

    .cta-section {
        padding: 30px 0;
    }

    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .cta-buttons {
        gap: 10px;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-section ul {
        gap: 5px;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0 0;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .footer-bottom p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .footer-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    /* Testimonials */
    .testimonials-carousel-section {
        padding: 30px 0;
    }

    .carousel-slide {
        padding: 20px;
    }

    .carousel-slide p {
        font-size: 0.85rem;
    }

    .carousel-slide .author {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .carousel-dots {
        gap: 6px;
        margin-top: 15px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-controls {
        gap: 10px;
        margin-top: 15px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    /* Portfolio */
    .portfolio-item {
        overflow: hidden;
    }

    .portfolio-item img {
        height: 250px;
    }

    .portfolio-overlay {
        bottom: 0;
    }

    /* FAQ */
    .faq-item {
        margin-bottom: 12px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }

    .faq-question {
        padding: 12px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 12px;
        font-size: 0.85rem;
    }

    /* Forms */
    .quick-contact-buttons {
        gap: 8px;
        flex-direction: column;
    }

    .quick-btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .quick-btn i {
        font-size: 0.9rem;
        margin-right: 5px;
    }

    /* Legal Pages */
    .legal-text {
        padding: 20px;
        font-size: 0.9rem;
    }

    .legal-text h3 {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .legal-text p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .legal-text ul,
    .legal-text ol {
        font-size: 0.85rem;
        padding-left: 20px;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Buttons */
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 6px;
        display: inline-block;
        text-decoration: none;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-weight: 600;
    }

    .btn:active {
        transform: scale(0.98);
    }

    .important-note {
        padding: 12px;
        font-size: 0.8rem;
        border-left: 3px solid var(--warning-color);
        margin: 15px 0;
    }

    /* Utilities */
    .mt-20 {
        margin-top: 15px;
    }

    .mb-20 {
        margin-bottom: 15px;
    }

    .pt-20 {
        padding-top: 15px;
    }

    .pb-20 {
        padding-bottom: 15px;
    }
}

/* Extra Small Devices (max 359px) */
@media (max-width: 359px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.8rem;
    }

    .nav-links {
        font-size: 0.8rem;
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .service-image {
        height: 200px;
    }

    .feature i {
        font-size: 0.9rem;
        min-width: 18px;
    }
}

/* Medium Devices (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
    .container {
        max-width: 970px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    section {
        padding: 50px 0;
    }

    .service-image {
        height: 320px;
    }
}

/* Large Devices (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .reflective-image {
        max-width: 550px;
    }

    .service-image {
        height: 350px;
    }

    .portfolio-item {
        transition: transform 0.3s ease;
    }

    .portfolio-item:hover {
        transform: scale(1.02);
    }
}

/* ===== TESTIMONIALS CTA ===== */
.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.testimonials-cta .btn {
    display: inline-block;
    font-size: 1.05rem;
    padding: 14px 40px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.testimonials-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

/* ===== RESPONSIVE TESTIMONIALS ===== */
@media (max-width: 1024px) {
    .testimonials-preview h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-preview {
        padding: 80px 0;
    }
    
    .testimonials-preview h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        height: 500px;
    }
    
    .testimonial-card {
        padding: 35px;
        border-radius: 16px;
    }
    
    .testimonial-card p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .testimonial-author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .author-info strong {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
    
    .testimonials-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .testimonials-preview {
        padding: 60px 20px;
    }
    
    .testimonials-preview h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .testimonials-grid {
        height: 450px;
    }
    
    .testimonial-card {
        padding: 25px;
        max-width: 95vw;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

/* ===== MOBILE-FRIENDLY FIXES ===== */
img, video, iframe { max-width: 100%; height: auto; }
.logo-img { max-height: 80px; height: auto; width: auto; }
.container { width: 100%; box-sizing: border-box; padding-left: 16px; padding-right: 16px; }
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .menu-toggle { display: flex !important; }
  .logo-img { max-height: 48px; }
  .hero, .commitment-card, .reason-item, .stat-card { padding-left: 16px; padding-right: 16px; }
}
/* End mobile fixes */
