/* Reset and Base Styles */
:root {
    --primary-color: #3498DB;
    --primary-dark: #2980B9;
    --primary-light: #5DADE2;
    --secondary-color: #2C3E50;
    --secondary-dark: #1B2631;
    --accent-color: #E74C3C;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --info-color: #17A2B8;

    --text-primary: #2C3E50;
    --text-secondary: #5A6C7D;
    --text-light: #7F8C8D;
    --text-white: #FFFFFF;

    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #2C3E50;
    --bg-gradient: linear-gradient(135deg, #3498DB 0%, #2C3E50 100%);

    --border-color: #E5E5E5;
    --border-light: #F0F0F0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);

    --border-radius: 12px;
    --border-radius-small: 8px;
    --border-radius-large: 20px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 14px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1010;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #2C3E50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #3498DB;
}

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

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3498DB;
}

.nav-link::after {
    content: '';

    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;

    transition: width 0.3s ease;
}

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

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.7em;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    z-index: 1001;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    margin: 2px 8px;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: #3498DB;
    color: white;
    transform: translateX(5px);
}


.login-btn,
.signup-btn {
    padding: 8px 16px !important;
    border-radius: 6px;
    font-size: 13px;
}

.login-btn {
    color: #3498DB !important;
    border: 1px solid #3498DB;
}

.login-btn:hover {
    background: #3498DB;
    color: white !important;
}

.signup-btn {
    background: #3498DB;
    color: white !important;
    border: 1px solid #3498DB;
}

.signup-btn:hover {
    background: #2980B9;
    border-color: #2980B9;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.typing::after {
    content: '|';
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-content {
    padding: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid #3498db;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2c3e50;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
    transform: rotateY(360deg);
}

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    padding: 9px 9px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background: #3498db;
    border-color: #fff;
    transform: scale(1.2);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advanced-features {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    margin-top: 0;
}

.features-container {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2. Smaller font for feature items */
.feature-item h4 {
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}


.features-list {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 70px;
}


.feature-item:hover,
.feature-item.active {
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    border-left-color: #2980b9;
    background: #f8f9fa;
}

.feature-item .feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}


.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.feature-description {
    flex: 1;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-content p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-description h3 {
    font-size: 1.5rem;
    /* Reduced from 2rem */
    font-weight: 700;
    margin-bottom: 1rem;
    /* Reduced margin */
    color: #2c3e50;
}

.feature-description p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
    /* Reduced margin */
    font-size: 0.95rem;
    /* Added smaller font size */
}

.advanced-features .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.advanced-features .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.feature-card .feature-icon {
    font-size: 2rem;
    /* Reduced from 3rem */
    margin-bottom: 1rem;
    color: #3498db;
    background: none;
    width: auto;
    height: auto;
}

.feature-description .highlight {
    background: linear-gradient(135deg, #3498db, #2980b9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.features {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
}

.features-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.features-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.feature-card {
    margin-bottom: 2rem;
    margin-top: 2rem;
    background: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex: 0 0 350px;
    /* Fixed width for consistent sizing */
    height: 350px;
    /* Fixed height */
    display: flex;
    flex-direction: column;
}

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

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.6;
    padding: 0 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 3.5rem;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-nav.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Features Indicators */
.features-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.features-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.features-indicators .indicator.active,
.features-indicators .indicator:hover {
    background: #3498db;
    border-color: #2980b9;
    transform: scale(1.2);
}



/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

/* Achievements Banner */
.achievements-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.15);
    position: relative;
    overflow: hidden;
}

.achievements-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Why Choose Us Section */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    margin: 0 auto;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.benefit-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.05), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

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

.card-number {
    position: absolute;
    top: 1rem;
    right: 0.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(52, 152, 219, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.benefit-card:hover .card-number {
    color: rgba(52, 152, 219, 0.2);
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 2;
}

.benefit-card h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.benefit-card:hover .accent-line {
    width: 80px;
}

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

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .achievements-banner {
        padding: 40px 20px;
        margin-bottom: 60px;
        border-radius: 16px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

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

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

    .container {
        padding: 0 15px;
    }

    .achievements-banner {
        margin: 0 -10px 60px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* FAQ Section */
.faq-wrapper {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

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

.faq {
    padding: 30px 0;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.faq .section-header h2 {
    color: var(--text-white);
}

.faq .title-underline {
    background: linear-gradient(135deg, var(--text-white), rgba(255, 255, 255, 0.7));
}

.faq .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.faq-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-tab {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 20px;
    border-radius: var(--border-radius);
    color: var(--text-white);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.faq-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-tab:hover::before,
.faq-tab.active::before {
    left: 100%;
}

.faq-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.faq-tab.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.faq-tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.faq-tab.active .faq-tab-icon {
    background: var(--text-white);
    color: var(--primary-color);
}

.faq-tab h4 {
    font-size: var(--font-size-base);
    margin: 0;
    font-weight: 600;
}

.faq-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-large);
    padding: 40px;
    color: var(--text-primary);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-heavy);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.faq-content h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-primary);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.faq-item-content {
    display: none;
}

.faq-item-content.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 20px;
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

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

.faq-question h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    background: var(--bg-primary);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3498DB, #2C3E50);
    color: white;
    padding: 60px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

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

.image-placeholder {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
}

.image-placeholder span {
    font-size: 64px;
    margin-bottom: 15px;
}

.image-placeholder p {
    color: #666;
    font-weight: 500;
}

/* Mission & Vision */

/* Mission Section */
.mission {
    padding: 50px 0;
    background: #f8f9fa;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.mission-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.mission-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* .mission-vision {
    padding: 40px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.mv-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
} */

/* Team Section */
.team {
    padding: 40px 0;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2C3E50;
}

.mission-vision h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2C3E50;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    font-size: 64px;
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2C3E50;
}

.member-role {
    color: #3498DB;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.member-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2C3E50;
}

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.contact-info>p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-text h4 {
    color: #2C3E50;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.office-hours h4 {
    color: #2C3E50;
    margin-bottom: 20px;
    font-size: 18px;
}

.hours-list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.hours-item:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.form-group label {
    margin-bottom: 6px;
    color: #2C3E50;
    font-weight: 500;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498DB;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.submit-btn {
    background: #3498DB;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980B9;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2C3E50;
}

.map-placeholder {
    height: 400px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
}

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

.map-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.map-content p {
    font-size: 18px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.map-content small {
    color: #666;
}

/* Auth Section */
.auth-section {
    padding: 100px 0 80px;
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    max-width: 1000px;
    margin: 0 auto;
}

.auth-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 15px;
}

.auth-header h1 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.forgot-link {
    color: #3498DB;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-btn {
    background: #3498DB;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-btn:hover {
    background: #2980B9;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.auth-divider span {
    background: white;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
}

.social-btn:hover {
    background: #f8f9fa;
}

.social-icon {
    font-size: 18px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-footer a {
    color: #3498DB;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-info {
    background: linear-gradient(135deg, #3498DB, #2C3E50);
    color: white;
    padding: 40px;
    border-radius: 12px;
}

.info-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.info-features {
    margin-bottom: 40px;
}

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

.info-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.info-item p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.signup-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.stat p {
    font-size: 12px;
    opacity: 0.8;
}

.password-hint {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

/* Solutions Pages */
.solutions-overview {
    padding: 60px 0;
}

.solutions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.solutions-intro p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.solutions-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.solution-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.solution-card.featured {
    border: 2px solid #3498DB;
    position: relative;
}



.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.solution-card>p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin-bottom: 15px;
}

.solution-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: bold;
}

.solution-btn {
    background: #3498DB;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
}

.solution-btn:hover {
    background: #2980B9;
}

/* Industry Solutions */

/* Solution Overview Section */
.solution-overview {
    padding: 60px 0;
    background: white;
}

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

.overview-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2C3E50;
}

.overview-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

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

.overview-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card Icon Styles */
.card-icon {
    width: 40px;
    height: 40px;
    background: #3498DB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.content-section {
    margin-bottom: 2rem;
}

.card-icon i {
    font-size: 14px;
    color: white;
}


.industry-solutions {
    padding: 80px 0;
}

.industry-solutions h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #2C3E50;
}

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

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

.industry-card:hover {
    transform: translateY(-3px);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.industry-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.industry-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #2C3E50;
}

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

.process-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.process-number {
    width: 50px;
    height: 50px;
    background: #3498DB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.process-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Services Categories */
.services-categories {
    padding: 30px 0;
}

.category-tabs {

    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #3498DB;
    background: white;
    color: #3498DB;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #3498DB;
    color: white;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

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

.service-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.service-card>p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-features li {
    padding: 5px 0;
    color: #666;
    font-size: 13px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
}

.service-price {
    font-size: 18px;
    font-weight: bold;
    color: #3498DB;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-top: 20px;
}

/* Service Process */
.service-process {
    padding: 30px 0;
    background: #f8f9fa;
}

.service-process h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2C3E50;
}

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

.process-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498DB, #2C3E50);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-primary,
.cta-secondary {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: white;
    color: #3498DB;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #3498DB;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.contact-info i {
    margin-right: 10px;
    color: #3498db;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Mobile Responsive Updates */
@media (max-width: 1200px) {
    .feature-card {
        flex: 0 0 320px;
    }

    .features-track {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .slide {
        grid-template-columns: 1fr;
        grid-template-rows: 50% 50%;
    }

    .slide-content {
        padding: 30px 25px;
        order: 2;
        border-left: none;
        border-top: 2px solid #3498db;
    }

    .slide-image {
        order: 1;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 50px;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-slider {
        height: 500px;
    }

    .slide {
        grid-template-columns: 1fr;
        grid-template-rows: 50% 50%;
    }

    .slide-content {
        padding: 30px 25px;
        order: 2;
        border-left: none;
        border-top: 2px solid #3498db;
    }

    .slide-image {
        order: 1;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

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

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }

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

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .cta-primary,
    .cta-secondary {
        width: 200px;
        text-align: center;
    }



    .signup-stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-carousel-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .carousel-nav {
        display: none;
        /* Hide navigation buttons on mobile */
    }

    .features-carousel {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .features-carousel::-webkit-scrollbar {
        display: none;
    }

    .features-track {
        transform: none !important;
        transition: none;
        padding: 0 1rem;
    }

    .feature-card {
        flex: 0 0 280px;
        height: 350px;
    }

    .feature-image {
        height: 160px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

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

@media (max-width: 480px) {

    .solutions-grid-section {
        padding: 40px 15px;
    }

    .Solution-Title {
        font-size: 1.6rem;
        margin-top: 0.5rem;
        text-align: center;
    }

    .carousel-slide {
        display: flex;
        flex-direction: column !important;
        /* padding: 1rem; */
        padding: 1rem 0; 
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
         height: auto !important;
  overflow: visible !important;
    }

    .slide-left img {
        width: 100%;
        height: auto;
        border-radius: 8px 8px 0 0;
    }

    .slide-left {
        margin-bottom: 1rem;
        width: 100% !important;
    }

    .slide-right {
        padding: 1rem;
        text-align: center;
        width:100% !important
    }

    .slide-right h2 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
    }

    .solution-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .solution-features li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .solution-features li::before {
        content: "✔️";
        position: absolute;
        left: 0;
        color: #198754;
    }

    .solution-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .solution-features li {
        position: relative;
        padding-left: 1.5rem;
    }
    /* For soloution page to make responsive for mobile */
    .overview-content {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    padding: 1rem;
  }

  .overview-text,
  .overview-image {
    width: 100%;
    text-align: center;
  }

  .overview-text h2.solution1_description {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .overview-text p.solution1_description {
    font-size: 1rem;
    padding: 0 1rem;
    text-align: justify;
  }

  .overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }

  .solution-card {
    width: 100%;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
  }

  .notification-image-wrapper {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 1rem;
  }

  .notification-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .solution-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .solution-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 1rem;
  }
    /* code end */

    /* Old Code */
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .features {
        padding: 60px 0;
    }

    .features h2 {
        font-size: 28px;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .faq {
        padding: 60px 0;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .about-content {
        padding: 60px 0;
    }

    .mission-vision {
        padding: 30px 0;
    }

    .team {
        padding: 30px 0;
    }

    .values {
        padding: 60px 0;
    }

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

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

    .solutions-overview {
        padding: 40px 0;
    }

    /* .solutions-grid-section {
        padding: 60px 0;
    } */

    .industry-solutions {
        padding: 60px 0;
    }

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

    .services-categories {
        padding: 60px 0;
    }

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

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

    .feature-card {
        flex: 0 0 250px;
        height: 320px;
    }

    .features-track {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}