

/* Utility Classes */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mt-1 {
    margin-top: var(--space-sm);
}

.mt-2 {
    margin-top: var(--space-md);
}

.mt-3 {
    margin-top: var(--space-lg);
}

/* Component: Card */
.card {
    background: white;
    border-radius: 15px;
    padding: var(--space-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
    }

/* Base Styles */
:root {
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    /* Breakpoints */
    --bp-mobile: 576px;
    --bp-tablet: 768px;
    --bp-desktop: 992px;
    --bp-large: 1200px;
    /* Z-index */
    --z-base: 1;
    --z-nav: 1000;
    --z-modal: 2000;
    /* Colors */
    --primary-color: #6c63ff;
    --secondary-color: #4d44db;
    --accent-color: #ff6584;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --gray-color: #a0aec0;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    --glass-color: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    /* Transitions */
    --transition: all 0.3s ease;
}

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


body {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    color: var(--dark-color);
    background-color: #f5f7fa;
    overflow-x: hidden;
    position: relative;
}

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .feature-card,
[dir="rtl"] .team-member,
[dir="rtl"] .testimonial,
[dir="rtl"] .contact-form,
[dir="rtl"] .footer-about,
[dir="rtl"] .footer-links,
[dir="rtl"] .footer-newsletter {
    text-align: right;
}

[dir="rtl"] .nav-links li {
    margin-left: 0;
    margin-right: 30px;
}

[dir="rtl"] .section-title::after,
[dir="rtl"] .footer-links h3::after,
[dir="rtl"] .footer-newsletter h3::after {
    left: auto;
    right: 0;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    text-decoration: none;
}

.cta-buttons a {
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    display: inline-block;
    padding: 10px 22px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    text-decoration: none;
}

/* Language Switcher */
.language-switcher {
    margin-left: auto;
    margin-right: 20px;
}

.language-switcher select {
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.glass-nav.scrolled .language-switcher select {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: var(--glass-color);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 15px 0;
    background: rgba(108, 99, 255, 0.9);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.brand {
    color: var(--dark-color);
}

.plus {
    color: var(--primary-color);
}

.glass-nav.scrolled .brand {
    color: white;
}
.glass-nav.scrolled .plus {
    color: var(--dark-color);
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.glass-nav.scrolled .nav-links a {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.glass-nav.scrolled .nav-links a::after {
    background: white;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

.glass-nav.scrolled .mobile-menu-btn {
    color: white;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}
.hero-image img,
.slideshow-image {
    loading: lazy;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Slideshow */
.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
}

.image-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: float-animation 15s ease-in-out infinite;
}

.slideshow-image.active {
    opacity: 1;
}

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

/* Clients Section */
.clients {
    padding: 50px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.circle-badge {
    position: absolute;
    top: 40%;
    right: 20px;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
    font-size: 18px;
    z-index: 10;
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

.logo-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.logo-carousel {
    height: 150px;
    display: flex;
    gap: 60px;
    animation: scroll 35s linear infinite;
    width: max-content;
}

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

.logo-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-item img {
    width: 100px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item.active img {
    filter: none;
}

.running-bar {
    position: absolute;
    top: -30px;
    background-color: #343a40;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
}

.tag {
    position: absolute;
    bottom: 10px;
    background-color: #6c63ff;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
}

/* Features Section */
.features {
    background: white;
}

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

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Team Section */
.team {
    background: #f9fafb;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.social-links {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background: rgba(108, 99, 255, 0.8);
    transition: var(--transition);
}

.team-member:hover .social-links {
    bottom: 0;
}

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

.social-links a:hover {
    background: white;
    color: var(--primary-color);
}

.team-member h3 {
    font-size: 1.3rem;
    margin: 20px 0 5px;
}

.team-member p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 99, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: white;
}

.testimonials .section-title::after {
    background: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: white;
    border-radius: 15px;
    padding: 40px;
    color: var(--dark-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: none;
}

.testimonial.active {
    display: block;
}

.quote {
    position: relative;
    margin-bottom: 30px;
}

.quote i:first-child {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 3rem;
    color: rgba(108, 99, 255, 0.1);
}

.quote i:last-child {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 3rem;
    color: rgba(108, 99, 255, 0.1);
}

.quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-controls button {
    background: white;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--primary-color);
    color: white;
}

.dots {
    display: flex;
    gap: 10px;
}

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

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

/* Contact Section */
.contact .container {
    display: flex;
    gap: 50px;
}

.contact-content {
    flex: 1;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

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

.map-container {
    flex: 1;
    position: relative;
}

#google-map {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.info-item p {
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

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

.footer-about .logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about .brand {
    color: white;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

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

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: white;
}


.image-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}



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

    50% {
        transform: translateY(-15px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-carousel {
    display: flex;
    gap: 60px;
    animation: scroll 20s ease-in-out infinite alternate;
    width: max-content;
}

.map-container {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 5px 10px;
    background: #1a73e8;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

    .lang-btn.active {
        background: #6c63ff;
        font-weight: bold;
    }

/* Font classes */
.arabic-font {
    font-family: 'Noto Sans Arabic', sans-serif;
}

.bengali-font {
    font-family: 'Noto Sans Bengali', sans-serif;
}

/* RTL adjustments for Arabic */
body[style="direction: rtl;"] .hero-content,
body[style="direction: rtl;"] .feature-card,
body[style="direction: rtl;"] .team-member,
body[style="direction: rtl;"] .testimonial,
body[style="direction: rtl;"] .contact-content {
    text-align: right;
}

body[style="direction: rtl;"] .nav-links {
    margin-right: auto;
    margin-left: 0;
}

body[style="direction: rtl;"] .logo-carousel {
    direction: ltr; /* Keep carousel direction LTR even in RTL */
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        height:600px
    }
    
    .hero-content {
        margin-bottom: 50px;
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .contact .container {
        flex-direction: column;
    }
    
    .circle-badge {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: none;
        background: rgba(108, 99, 255, 0.95);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        color: white;
        font-size: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
/*    .hero-title {
        font-size: 2.5rem;
    }*/
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial {
        padding: 30px 20px;
    }

    .language-switcher {
        margin-right: 10px;
        margin-top: 43px;
    }
}
@media (max-width: var(--bp-tablet)) {
    .mt-1 {
        margin-top: var(--space-xs);
    }
}
@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-carousel {
        gap: 30px;
    }
    
    .logo-item img {
        width: 80px;
    }
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}




/* Pricing Section Styles */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

    .pricing .container {
        position: relative;
        z-index: 4;
    }

    .pricing .section-title {
        margin-bottom: 15px;
    }

    .pricing .section-subtitle {
        margin-bottom: 40px;
    }

.offer-banner {
    background: linear-gradient(90deg, #f03535 0%, #9e0000 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

    .offer-banner i {
        margin: 0 10px;
        font-size: 1.2rem;
    }

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

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

    .pricing-card.popular {
        border: 2px solid #4e73df;
        transform: translateY(-10px);
    }

        .pricing-card.popular::before {
            content: '';
            position: absolute;
            top: -2px;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid #4e73df;
            transform: rotate(180deg);
        }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4e73df;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(78, 115, 223, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 10px;
}

    .price .amount {
        font-size: 2.5rem;
        font-weight: 700;
        color: #4e73df;
    }

    .price .period {
        font-size: 1rem;
        color: #6c757d;
    }

.yearly-price {
    display: block;
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 5px;
}

.setup-fee {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 25px;
    font-style: italic;
}

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

    .package_features li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
    }

    .package_features i {
        color: #4e73df;
        margin-right: 10px;
        margin-top: 3px;
        font-size: 0.9rem;
    }

    .package_features span {
        color: #495057;
        font-size: 0.95rem;
    }

.btn-outline, .btn-package {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration:none;
}

.btn-outline {
    border: 2px solid #4e73df;
    color: #4e73df;
    background: transparent;
}

    .btn-outline:hover {
        background: #4e73df;
        color: white;
    }

.btn-package {
    background: #4e73df;
    color: white;
    border: 2px solid #4e73df;
}

    .btn-package:hover {
        background: #3a5ccc;
        border-color: #3a5ccc;
    }

.pricing-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

    .pricing-footer p {
        color: #6c757d;
        margin-bottom: 10px;
    }

    .pricing-footer .highlight {
        color: #4e73df;
        font-weight: 600;
    }

/* Pulse animation for offer banner */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .pricing-card.popular {
        transform: none;
    }
}