:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --background-light: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #475569;
}

/* Enhanced Animations */
.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

/* Enhanced Card Styles */
.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

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

/* Enhanced Button Styles */
.hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Animation Keyframes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* Enhanced Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Additional styles remain the same but organized better */

.about-section .section-subtitle {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Ensure last card row is centered */
.about-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
}

.about-icon-grid .about-icon-card:nth-last-child(1) {
    grid-column: 2 / 3;
}

@media (max-width: 991px) {
    .about-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-icon-grid .about-icon-card:nth-last-child(1) {
        grid-column: 1 / -1; /* Center the last card in a row of 2 */
        justify-self: center;
    }
}

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

    .about-icon-grid .about-icon-card:nth-last-child(1) {
        grid-column: auto;
        justify-self: center;
    }
}





.about-icon-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(-10deg) scale(0.9);
    opacity: 0;
}

.about-icon-card.show {
    transform: perspective(1000px) rotateX(0) scale(1);
    opacity: 1;
}

.about-icon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle closest-side, 
        rgba(37, 99, 235, 0.1), 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-icon-card:hover::before {
    opacity: 1;
}

.about-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.about-icon-card:hover .about-icon-wrapper {
    transform: rotate(15deg) scale(1.1);
}

.about-icon-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.about-icon-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .about-icon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Subtle Animation Delay */
.about-icon-card:nth-child(1) { transition-delay: 0.1s; }
.about-icon-card:nth-child(2) { transition-delay: 0.2s; }
.about-icon-card:nth-child(3) { transition-delay: 0.3s; }
.about-icon-card:nth-child(4) { transition-delay: 0.4s; }
.about-icon-card:nth-child(5) { transition-delay: 0.5s; }

.statistics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.stat-card-modern {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stat-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

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

.stat-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.stat-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(96, 165, 250, 0.05));
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 0;
}

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

.stat-card-modern:hover .stat-icon-bg {
    transform: rotate(225deg) scale(1.2);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(96, 165, 250, 0.2));
}

.stat-card-modern:hover .stat-icon-wrapper i {
    transform: scale(1.2);
}





/* Section feaures */

.features-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.features-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-title-decoration {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 3rem;
    border-radius: 2px;
    position: relative;
}

.feature-title-decoration::before,
.feature-title-decoration::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    top: -2px;
}

.feature-title-decoration::before {
    left: -4px;
}

.feature-title-decoration::after {
    right: -4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.feature-card {
    position: relative;
    perspective: 1000px;
}

.feature-card-inner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 24px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

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

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.feature-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-details li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.feature-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(96, 165, 250, 0.05));
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Hover Effects */
.feature-card:hover .feature-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.feature-card:hover .feature-icon-bg {
    transform: rotate(225deg) scale(1.2);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(96, 165, 250, 0.2));
}

.feature-card:hover .feature-icon-wrapper i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.feature-card:hover .feature-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover .feature-card-decoration {
    opacity: 1;
    transform: translate(30%, -30%) scale(1.2);
}

/* Animation Delays */
.feature-card:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.2s;
}




/* Integrated System */

.integration-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.system-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.4s ease;
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.system-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
}

.system-content {
    flex-grow: 1;
}

.system-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.system-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.system-card:hover .system-icon-wrapper::before {
    transform: translateX(100%);
}

.system-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.system-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.system-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.system-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.system-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.system-features i {
    color: #2563eb;
}

.system-action {
    margin-top: auto;
}

.system-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.system-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.system-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    color: white;
}

.system-button:hover::before {
    transform: translateX(100%);
}

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

/* hero */

/* Enhanced Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}


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

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-cta:hover::before {
    transform: translateX(100%);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.hero-illustration {
    max-width: 80%;
    transform: scale(1.05);
    transition: all 0.6s ease;
    border-radius: 16px;
    background: none !important; /* Ensure no background is applied */
    box-shadow: none; /* Remove any shadow */
    padding: 0; /* Remove any padding that might simulate a background */
    border: none; /* Ensure no border is added */
}

.hero-illustration:hover {
    transform: scale(1.1) rotate(2deg);
    background: none !important; /* Ensure no background is applied */
    box-shadow: none; /* Remove any shadow */
    padding: 0; /* Remove any padding that might simulate a background */
    border: none; /* Ensure no border is added */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0;
    }

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

    .hero-title .text-gradient {
        font-size: 1.8rem;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title .text-gradient {
        font-size: 1.4rem;
    }
}