/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Red, Black, White Theme */
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --accent-bg: #f1f3f4;
    --primary-color: #dc2626;
    --secondary-color: #b91c1c;
    --accent-color: #ef4444;
    --success-color: #dc2626;
    --warning-color: #f59e0b;
    --error-color: #dc2626;
    --black-color: #000000;
    
    /* Gradients - Red Theme */
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    --gradient-secondary: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    --gradient-accent: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f4 100%);
    --gradient-red-glow: linear-gradient(135deg, #dc2626 0%, #ef4444 25%, #fca5a5 50%, #ef4444 75%, #dc2626 100%);
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-red-glow: 0 0 20px rgba(220, 38, 38, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}
html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* toggle bar styles */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.logo-icon-rc {
  width: 50px; /* Smaller overall size */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-red-glow);
  background-color: #ffffff;
  padding: 5px; /* Add some padding around the image */
}

.custom-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-text-rc{
    color: #000000;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(220, 38, 38, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}
@media screen and (max-width: 768px){
    .cta-btn{
        font-size: 0.8rem;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-md);
        height: 40px;
        width: 120px;
        
    
    }
    .custom-logo{
        width: 80px;
        height: 40px;
    }
    .logo-text{
        font-size: 1.1rem;
    }
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* Hero Section */
.highlight-text{
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 800;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: var(--spacing-lg); /* Add bottom padding */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(185, 28, 28, 0.05) 0%, transparent 50%);
    animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(185, 28, 28, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-50px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-2xl) var(--spacing-lg); /* Add bottom padding */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2; /* Increase line-height slightly to prevent cutoff */
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    padding-bottom: var(--spacing-sm); /* Add padding to ensure descenders are visible */
    white-space: nowrap; /* Keep text on same line */
    /* Alternative approach - you can use one of these instead: */
    /* overflow: visible; */
    /* min-height: 1.2em; */
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    padding-bottom: 0.1em; /* Ensure space for descenders */
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Ensure the highlight doesn't interfere with text rendering */
    padding-bottom: inherit;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.4; /* Better line-height for readability */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    margin-top: var(--spacing-md); /* Add some top margin for spacing */
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(220, 38, 38, 0.3);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-color);
}
/* Add margin-top to hero-visual */

.hero-visual {
    margin-top: var(--spacing-3xl); /* Add top margin */
    position: relative;
    height: 400px;
}


        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-card {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(220, 38, 38, 0.15);
            border-radius: var(--radius-xl);
            padding: var(--spacing-lg);
            box-shadow: var(--shadow-xl);
            animation: float 6s ease-in-out infinite;
            max-width: 450px;
            width: 100%;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(1deg);
            }
        }

        .brand-showcase {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
        }

        .brand-image-container {
            position: relative;
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: var(--spacing-md);
            transition: transform 0.5s ease;
        }

        .floating-card:hover .brand-image {
            transform: scale(1.08);
        }

        .brand-placeholder {
            font-size: 3rem;
            color: #9ca3af;
        }

        .brand-info {
            margin-top: var(--spacing-lg);
            text-align: center;
        }

        .brand-label {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: var(--spacing-md);
            border: #b91c1c;
        }

        .brand-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .brand-description {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }

        .scroll-arrow {
            width: 30px;
            height: 50px;
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            position: relative;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: scrollDown 2s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
            50% {
                transform: translateX(-50%) translateY(20px);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: var(--spacing-2xl);
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-visual {
                height: 300px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }
            .floating-card:nth-child(1) {
                animation-delay: 0s;
                size: 200px;
            }
            .floating-card:nth-child(2) {
                animation-delay: 0.5s;
            }
        }

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-color);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* See More Button Styles */
.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-weight: 600;
    color: white !important;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
}

.see-more-btn:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
        padding-bottom: var(--spacing-3xl); /* Extra padding on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2; /* Maintain good line-height on mobile */
        white-space: normal; /* Allow wrapping on mobile if needed */
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        position: relative;
        margin: var(--spacing-md) auto;
    }
    
    .floating-card:nth-child(1) {
        top: auto;
        left: auto;
    }
    
    .floating-card:nth-child(2) {
        top: auto;
        right: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.25; /* Slightly more line-height for smaller screens */
        padding-bottom: var(--spacing-sm); /* Ensure descenders are visible */
        white-space: normal; /* Allow wrapping on very small screens */
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* service  section  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 2rem;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #b91c1c, #dc2626);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    text-align: left;
}

.service-card:hover .service-title {
    color: #dc2626;
}

.service-description {
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: left
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.feature:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Team Section Styles */
.team-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.1rem;    
    padding: 2rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    margin: 0 auto;
    max-width: 100%;
    padding: 20px;
    justify-content: flex-start;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.team-grid::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 auto;
    width: 280px;
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.our-team {
    padding: 4rem 0;
    background: var(--secondary-bg);
    overflow: hidden;
}

.our-team .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* See More Button */
.see-more-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.see-more-btn:hover::before {
    left: 100%;
}

.see-more-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.see-more-btn:hover i {
    transform: translateX(5px);
}

.see-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.see-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
a.see-more-btn {
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-features {
        justify-content: center;
    }
}

/* Animation for loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Add these styles to ensure consistent card heights and button alignment */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Keep your existing service-card styles */
}

.service-description {
    /* Keep your existing service-description styles */
    flex-grow: 0;
}

.key-points {
    flex-grow: 1;
    margin-bottom: 20px;
}

.see-more-btn {
    margin-top: auto;
    align-self: flex-start;
    /* Keep your existing see-more-btn styles */
}

.key-points p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555555;
    font-size: 0.95rem;
}

.key-points i {
    color: #dc2626;
    margin-right: 10px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-card:hover .key-points i {
    transform: translateX(3px);
}
/* team section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #ffffff;
    min-height: 100vh;
}

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 40px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.team-grid::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 calc(20% - 16px); /* 20% width for 5 cards with gap consideration */
    min-width: 220px; /* Minimum width to prevent cards from becoming too small */
}

/* Team Card */
.team-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: slideInUp 0.6s ease-out forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.02), rgba(255, 0, 0, 0.01));
    border-radius: 24px;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.15);
    background: #ffffff;
    border-color: rgba(255, 0, 0, 0.2);
}

.team-card:hover::before {
    opacity: 0.8;
}

/* Profile Circle */
.profile-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    animation: float 3s ease-in-out infinite;
}

.member-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e5e5;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.profile-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    background: conic-gradient(from 0deg, #ff0000, #ff6b6b, #ff0000);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
    animation: rotate 3s linear infinite;
}

.team-card:hover .profile-ring {
    opacity: 1;
}

.team-card:hover .member-photo {
    transform: scale(1.05);
    border-color: rgba(255, 0, 0, 0.5);
}

/* Content */
.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.team-card:hover .member-name {
    color: #ff0000;
}

.member-role {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 0.85rem;
    color: #888888;
    line-height: 1.5;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.team-card:hover .member-description {
    color: #555555;
}

/* Connect Button */
.connect-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.connect-btn:hover::before {
    left: 100%;
}

.connect-btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .team-card {
        padding: 35px 25px;
    }
    
    .profile-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .connect-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .team-card {
        padding: 30px 20px;
    }
    
    .profile-circle {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .member-description {
        font-size: 0.9rem;
    }
}

/* Enhanced glassmorphism for better visual appeal */
@supports (backdrop-filter: blur(20px)) {
    .team-card {
        background: #ffffff;
    }
    
    .team-card:hover {
        background: #ffffff;
    }
}
/* our clients section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #000;
}

.oc-clients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    overflow: hidden;
}

.oc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.oc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.oc-section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff0000, #000, #ff0000);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: oc-gradientShift 3s ease-in-out infinite;
}

.oc-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@keyframes oc-gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.oc-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin: -20px 0;
    mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
}

.oc-carousel {
    display: flex;
    animation: oc-scroll 45s linear infinite;
    width: calc(220px * 30); /* 15 items * 2 for seamless loop */
}

.oc-carousel:hover {
    animation-play-state: paused;
}

@keyframes oc-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-220px * 15));
    }
}

.oc-client-logo {
    flex: 0 0 200px;
    height: 140px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.oc-client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transition: left 0.5s;
}

.oc-client-logo:hover::before {
    left: 100%;
}

.oc-client-logo:hover {
    transform: translateY(-8px);
    border-color: #ff0000;
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.2);
}

.oc-client-image {
    width: 160px;
    height: 100px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.oc-client-logo:hover .oc-client-image {
    filter: brightness(1.1) contrast(1.2);
    transform: scale(1.05);
}

/* Fallback placeholder for missing images */
.oc-image-placeholder {
    width: 160px;
    height: 100px;
    background: rgba(0, 0, 0, 0.05);
    border: 2px dashed rgba(255, 0, 0, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
    text-align: center;
}

.oc-stats-section {
    margin-top: 80px;
    text-align: center;
}

.oc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.oc-stat-item {
    padding: 20px;
}

.oc-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 10px;
}

.oc-stat-label {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .oc-section-title {
        font-size: 2rem;
    }
    
    .oc-client-logo {
        flex: 0 0 180px;
        height: 120px;
        margin: 0 8px;
    }
    
    .oc-client-image {
        width: 140px;
        height: 80px;
    }
    
    .oc-image-placeholder {
        width: 140px;
        height: 80px;
    }
    
    .oc-carousel {
        width: calc(196px * 30);
    }
    
    @keyframes oc-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-196px * 15));
        }
    }
}

/* WhatsApp Floating Button */
.oc-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}

.oc-whatsapp-float img {
    width: 35px;
    height: 35px;
}
.oc-whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}


/* footer */


        .agencyfooter__wrapper {
            background: #ffffff;
            color: #000000;
            position: relative;
            overflow: hidden;
            box-shadow: 0 -5px 30px rgba(255, 0, 0, 0.1);
        }

        .agencyfooter__animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(220, 0, 0, 0.03) 0%, transparent 50%);
            animation: agencyfooter__pulse 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes agencyfooter__pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        .agencyfooter__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px 0;
            position: relative;
            z-index: 1;
        }

        .agencyfooter__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .agencyfooter__column {
            animation: agencyfooter__fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .agencyfooter__column:nth-child(1) { animation-delay: 0.1s; }
        .agencyfooter__column:nth-child(2) { animation-delay: 0.2s; }
        .agencyfooter__column:nth-child(3) { animation-delay: 0.3s; }
        .agencyfooter__column:nth-child(4) { animation-delay: 0.4s; }
        .agencyfooter__column:nth-child(5) { animation-delay: 0.5s; }

        @keyframes agencyfooter__fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .agencyfooter__brand-section h2 {
            font-size: 25px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .agencyfooter__brand-tagline {
            font-size: 16px;
            color: #333333;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .agencyfooter__social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .agencyfooter__social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ff0000;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 2px solid transparent;
            font-weight: bold;
        }

        .agencyfooter__social-icon:hover {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: #ffffff;
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
            border-color: rgba(255, 0, 0, 0.3);
        }

        .agencyfooter__column-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            color: #000000;
        }

        .agencyfooter__column-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #ff0000, #cc0000);
            transition: width 0.4s ease;
        }

        .agencyfooter__column:hover .agencyfooter__column-title::after {
            width: 80px;
        }

        .agencyfooter__link-list {
            list-style: none;
        }

        .agencyfooter__link-item {
            margin-bottom: 15px;
        }

        .agencyfooter__link {
            color: #333333;
            text-decoration: none;
            font-size: 13px;
            display: inline-block;
            position: relative;
            transition: all 0.3s ease;
            padding-left: 0;
        }

        .agencyfooter__link::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
            color: #ff0000;
        }

        .agencyfooter__link:hover {
            color: #ff0000;
            padding-left: 25px;
            transform: translateX(5px);
        }

        .agencyfooter__link:hover::before {
            left: 0;
            opacity: 1;
        }

        .agencyfooter__industry-item {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            padding: 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 0, 0.1);
        }

        .agencyfooter__industry-item:hover {
            background: rgba(255, 0, 0, 0.05);
            transform: translateX(5px);
            border-color: rgba(255, 0, 0, 0.3);
        }

        .agencyfooter__industry-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            overflow: hidden;
            padding: 8px;
        }

        .agencyfooter__industry-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .agencyfooter__industry-item:hover .agencyfooter__industry-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
        }

        .agencyfooter__industry-item:hover .agencyfooter__industry-icon img {
            transform: scale(1.1);
        }

        .agencyfooter__industry-text {
            flex: 1;
        }

        .agencyfooter__industry-name {
            font-size: 15px;
            color: #000000;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .agencyfooter__industry-desc {
            font-size: 12px;
            color: #666666;
        }

        .agencyfooter__awards {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .agencyfooter__award-badge {
            padding: 8px 16px;
            background: rgba(255, 0, 0, 0.1);
            border-radius: 20px;
            font-size: 12px;
            border: 1px solid rgba(255, 0, 0, 0.2);
            transition: all 0.3s ease;
            color: #000000;
        }

        .agencyfooter__award-badge:hover {
            background: rgba(255, 0, 0, 0.2);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
        }

        .agencyfooter__bottom {
            border-top: 1px solid rgba(255, 0, 0, 0.1);
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .agencyfooter__copyright {
            color: #666666;
            font-size: 14px;
        }

        .agencyfooter__legal-links {
            display: flex;
            gap: 30px;
        }

        .agencyfooter__legal-link {
            color: #666666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .agencyfooter__legal-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff0000;
            transition: width 0.3s ease;
        }

        .agencyfooter__legal-link:hover {
            color: #ff0000;
        }

        .agencyfooter__legal-link:hover::after {
            width: 100%;
        }

        @media (max-width: 1200px) {
            .agencyfooter__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .agencyfooter__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .agencyfooter__container {
                padding: 60px 20px 0;
            }

            .agencyfooter__bottom {
                flex-direction: column;
                text-align: center;
            }

            .agencyfooter__legal-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* WhatsApp Floating Button */
.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp_float img {
    width: 35px;
    height: 35px;
}
.whatsapp_float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}
