/* Products Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #797a80 0%, #764ba2 100%);
    min-height: 100vh;
}

.containerr {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0px;
}
.product-version{
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .version-cards {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 12px;
            border-left: 5px solid #4caf50;
            padding: 30px 25px;
            flex: 1;
            min-width: 280px;
            max-width: 320px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .version-cards:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        

.version-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #81c784);
}


        

        

        /* Responsive Design */
        @media (max-width: 1200px) {
            .product-version {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .version-cards {
                flex: 1 1 calc(50% - 20px);
                min-width: 280px;
            }
        }

        @media (max-width: 768px) {
            .product-version {
                flex-direction: column;
                align-items: center;
            }
            
            .version-cards {
                flex: none;
                width: 100%;
                max-width: 400px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
            }
        }

        /* Animation for smooth loading */
        .version-cards {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .version-cards:nth-child(1) { animation-delay: 0.1s; }
        .version-cards:nth-child(2) { animation-delay: 0.2s; }
        .version-cards:nth-child(3) { animation-delay: 0.3s; }
        .version-cards:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.hero {
    text-align: center;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    color: black;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    font-family: 'Times New Roman', Times, serif;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.product-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.sections-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2e7d32;
}

.sections-icon {
            width: 120px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            padding: 8px;
        }

        .sections-icon img {
             width: 120px;
            height: 80px;
            border-radius: 15px;
            object-fit: cover;
            margin-bottom: 25px;
            /* box-shadow: 0 8px 20px rgba(0,0,0,0.15); */
        
        }

.sections-title {
    font-size: 1.8rem;
    font-family: 'Times New Roman', Times, serif;
    color: #2e7d32;
    font-weight: 700;
}

.product-versions {
    display: grid;
    gap: 20px;
}

.product-section .product-versions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.version-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 25px;
    border-left: 5px solid #4caf50;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.version-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #81c784);
}

.version-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
}

.version-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.version-name {
    font-size: 1.3rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    color: #2e7d32;
    display: flex;
    align-items: center;
}

.version-badge {
    background: #4caf50;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.user-limit {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}

.features-list {
    list-style: none;
    margin-top: 15px;
}

.features-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    font-family: 'Times New Roman', Times, serif;
    padding-left: 25px;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Times New Roman', Times, serif;
}

.erp-section {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ffffff, #ffffffff);
    color: black;
    margin-top: 20px;
}

.erp-section .section-header {
    border-bottom: 3px solid #fff;
}

.erp-section .section-icon {
    background: linear-gradient(45deg, #fff, #e3f2fd);
    color: #1a237e;
}

.erp-section .section-title {
    color: white;
}

.erp-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.erp-description {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    font-family: 'Times New Roman', Times, serif;
}

.erp-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.erp-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.erp-category h4 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: 'Times New Roman', Times, serif;
}

.erp-category ul {
    list-style: none;
}

.erp-category li {
    padding: 5px 0;
    color: black;
    font-size: 0.9rem;
    font-family: 'Times New Roman', Times, serif;
    position: relative;
    padding-left: 20px;
}

.erp-category li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #81c784;
    font-size: 0.7rem;
    font-family: 'Times New Roman', Times, serif;
}

.footer-info {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: black;
    margin-top: 40px;
}

.website-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.website-link {
    background: #ADD8E6;
    color: black;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.website-link:hover {
    background: #ADD8E6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1000px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-section .product-versions {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .erp-content { 
        grid-template-columns: 1fr;
        font-family:'Times New Roman', Times, serif;
    }
    
    .website-links {
        flex-direction: column;
        align-items: center;
    }
}

.animation {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* About Us Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(128, 172, 227, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(123, 104, 238, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    font-family: 'Times New Roman', Times, serif;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    font-family: 'Times New Roman', Times, serif;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

/* Company Overview */
.company-overview {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.8rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    position: relative;
}

.overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    border-radius: 2px;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'Times New Roman', Times, serif;
    color: #475569;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.overview-image {
    text-align: center;
}

.company-logo-large {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(74, 144, 226, 0.3));
    transition: transform 0.3s ease;
}

.company-logo-large:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Vision & Mission */
.vision-mission {
    padding: 6rem 0;
    background: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-card, .mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
    color: #1e293b;
    margin-bottom: 1rem;
}

.vision-card p, .mission-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Times New Roman', Times, serif;
    color: #64748b;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: #1e293b;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 144, 226, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;

    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Times New Roman', Times, serif;
    color: #64748b;
}

/* Goals Section */
.goals-section {
    padding: 6rem 0;
    background: white;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.goal-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
}

.goal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.goal-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.goal-icon.customers {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.goal-icon.growth {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.goal-icon.products {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.goal-icon.optimization {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.goal-icon.people {
    background: linear-gradient(135deg, #06b6d4, #67e8f9);
}

.goal-item:hover .goal-icon {
    transform: scale(1.15) rotate(-10deg);
}

.goal-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
    color: #1e293b;
    margin-bottom: 1rem;
}

.goal-item p {
    font-size: 1rem;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.7;
    color: #64748b;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.leader-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.leader-image {
    text-align: center;
}

.leader-image img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.leader-image img:hover {
    transform: scale(1.05);
}

.leader-info h3 {
    font-size: 1.6rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.qualifications p {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.qualifications ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.qualifications li {
    font-size: 1rem;
    font-family: 'Times New Roman', Times, serif;
    color: #64748b;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.qualifications li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.qualifications a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.qualifications a:hover {
    color: #7b68ee;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 1rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-main section {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .leader-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .company-overview,
    .vision-mission,
    .values-section,
    .goals-section,
    .team-section,
    .gallery-section,
    .cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .vision-card, .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-card {
        padding: 2rem;
    }
    
    .leader-image img {
        width: 150px;
        height: 180px;
    }
    
    .value-item,
    .goal-item {
        padding: 2rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .company-overview,
    .vision-mission,
    .values-section,
    .goals-section,
    .team-section,
    .gallery-section,
    .cta-section {
        padding: 3rem 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7b68ee, #4a90e2);
}

/* Loading Animation */
.about-main {
    opacity: 0;
    animation: pageLoad 0.8s ease-out forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

/* Smooth transitions for all elements */
* {
    transition: all 0.3s ease;
}

/* Additional Professional Effects */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4a90e2, #7b68ee, transparent);
    animation: slideIn 2s ease-in-out infinite;
}

@keyframes slideIn {
    0%, 100% { 
        opacity: 0;
        transform: translateX(-100%); 
    }
    50% { 
        opacity: 1;
        transform: translateX(0); 
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .cta-section {
        background: white !important;
        color: black !important;
    }
    
    .gallery-section {
        display: none;
    }
    
    .social-media {
        display: none;
    }
}
/* contact us page */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #dadbde 0%, #dadbde 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0px 20px;
        }

        .headers {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
            backdrop-filter: blur(10px);
        }

        /* Left Section - Contact Information */
        .contacts-info {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 60px 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contacts-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }

        .contacts-info-content {
            position: relative;
            z-index: 2;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contacts-info .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        .contacts-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .contacts-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }

        .contacts-item .icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
        }

        .contacts-item .details h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contacts-item .details p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .social-links {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links h4 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        /* Right Section - Contact Form */
        .contact-form-section {
            padding: 60px 60px;
            background: white;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h3 {
            font-size: 2rem;
            font-family: 'Times New Roman', Times, serif;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #666;
            font-size: 1rem;
            font-family: 'Times New Roman', Times, serif;
        }

        .contact-form {
            display: grid;
            gap: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 15px;
            font-family: 'Times New Roman', Times, serif;
            letter-spacing: 0.5px;
        }
        
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: calc(100% - 8px);
    padding: 12px 14px;
    border: 2px solid #e9e3e3;
    border-radius: 10px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    color: #888;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0;
}
        
        /* Focus states - consistent for all */
        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        .form-group input[type="tel"]:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4A90E2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
            background-color: #fafbfc;
        }
        
        /* Hover states - consistent for all */
        .form-group input[type="text"]:hover,
        .form-group input[type="email"]:hover,
        .form-group input[type="tel"]:hover,
        .form-group textarea:hover {
            border-color: #c1c9d0;
        }
        
        /* Placeholder styling - consistent */
        .form-group input[type="text"]::placeholder,
        .form-group input[type="email"]::placeholder,
        .form-group input[type="tel"]::placeholder,
        .form-group textarea::placeholder {
            color: #888;
            font-size: 12px;
            font-style: italic;
            box-sizing: border-box;
            
        }

        /* .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        } */

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Map Section */
        .map-section {
            margin-top: 60px;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .map-header {
            padding: 40px;
            text-align: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .map-header h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .map-header p {
            color: #666;
            font-size: 1rem;
        }

        .map-container {
            height: 450px;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #6c757d;
        }

        .map-placeholder i {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .map-placeholder p {
            font-size: 1.1rem;
            text-align: center;
            max-width: 400px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                padding: 40px 30px;
            }
            
            .contact-form-section {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-info,
            .contact-form-section {
                padding: 30px 20px;
            }
            
            .contact-info h2 {
                font-size: 2rem;
            }
            
            .form-header h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 20px 15px;
            }
            
            .contact-item {
                padding: 15px;
            }
            
            .contact-item .icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        /* Loading Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-wrapper {
            animation: fadeInUp 0.8s ease-out;
        }

        .map-section {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
   
/* QB users styles */
/* Table Controls */
.containerr {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 10px;
}
.table-controls {
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 300px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 14px;
    background: transparent;
    flex: 1;
}

.search-btn {
    background: #667eea;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #5a67d8;
    transform: scale(1.05);
}

.filter-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-options select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-options select:focus {
    border-color: #667eea;
    outline: none;
}

.add-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Table Container */
.table-container {
    overflow-x: auto;
    max-height: 600px;
    position: relative;
}

/* Table Styles */
.employee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
}

.employee-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.employee-table th {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    color: white;
    padding: 15px 12px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.employee-table th:last-child {
    border-right: none;
}

.sortable {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.sortable:hover {
    background: linear-gradient(135deg, #5a5a5a 0%, #757575 100%);
}

.sort-icon {
    margin-left: 5px;
    opacity: 0.7;
    font-size: 10px;
}

.employee-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f8f9fa;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.employee-table tbody tr {
    transition: all 0.3s ease;
}

.employee-table tbody tr:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f8ff 100%);
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.1);
}

.employee-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.employee-table tbody tr:nth-child(even):hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f8ff 100%);
}

/* Actions Column */
.actions-col {
    width: 120px;
    text-align: center;
}

/* No Data Message */
.no-data {
    background: transparent !important;
}

.no-data:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.no-data-message {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.no-data-message p {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.no-data-message small {
    font-size: 14px;
    opacity: 0.8;
}

.text-center {
    text-align: center;
}

/* Table Footer */
.table-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #dee2e6;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-btn {
    padding: 8px 16px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn:not(:disabled):hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    font-weight: 500;
    color: #495057;
}

.records-info {
    color: #6c757d;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .table-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .search-box {
        min-width: 100%;
    }
    
    .filter-options {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .employee-table {
        font-size: 12px;
    }
    
    .employee-table th,
    .employee-table td {
        padding: 10px 8px;
    }
    
    .table-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .employee-table th,
    .employee-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .table-controls {
        padding: 15px 20px;
    }
    
    .table-footer {
        padding: 15px 20px;
    }
}

/* Custom Scrollbar */
.table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6a4c93 100%);
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.table-wrapper {
    animation: fadeIn 0.6s ease-out;
}

/* Button Hover Effects */
button, .page-btn, .search-btn {
    position: relative;
    overflow: hidden;
}

button:before, .page-btn:before, .search-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover:before, .page-btn:hover:before, .search-btn:hover:before {
    width: 300px;
    height: 300px;
}

/* QB Courses */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #dadbde 0%, #dadbde 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0px 20px;
        }

        .hero-sectio {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .hero-titl {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Times New Roman', Times, serif;
            color: #2c3e50;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-descriptio {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .course-details {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .view-courses-btn {
            background: linear-gradient(135deg, #00c851, #007e33);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 200, 81, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .view-courses-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 200, 81, 0.4);
        }

        .target-audience {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .target-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            font-family: 'Times New Roman', Times, serif;
            letter-spacing: 2px;
        }

        .target-description {
            font-size: 1.1rem;
            font-family: 'Times New Roman', Times, serif;
            color: #666;
            margin-bottom: 15px;
        }

        .prerequisites {
            font-size: 1rem;
            color: #888;
            font-style: italic;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: #667eea;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            font-family: 'Times New Roman', Times, serif;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
            
            letter-spacing: 1px;
        }

        .feature-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            font-family: 'Times New Roman', Times, serif;
            color: #667eea;
            margin-bottom: 15px;
            text-align: center;
        }

        .feature-description {
            color: #666;
            /* text-align: center; */
            line-height: 1.8;
            font-family: 'Times New Roman', Times, serif;
        }
        .objectives-description {
            font-size: 1rem;
            color: #34495e;
            line-height: 1.8;
            text-align: justify;
            font-family: 'Times New Roman', Times, serif;
        }

        .confidence-card {
            background: linear-gradient(135deg, #879bbc, #879bbc);
        }

        .confidence-card::before {
            background: linear-gradient(135deg, #879bbc, #879bbc);
        }

        .confidence-card .feature-title,
        .confidence-card .feature-subtitle,
        .confidence-card .feature-description {
            color: black;
        }

        .quick-card {
            background: linear-gradient(135deg, #879bbc, #879bbc);
        }

        .quick-card::before {
            background: linear-gradient(135deg, #879bbc, #879bbc);
        }

        .quick-card .feature-title,
        .quick-card .feature-subtitle,
        .quick-card .feature-description {
            color: black;
        }

        .best-price-card {
            background: linear-gradient(135deg, #879bbc, #879bbc);
        }

        .best-price-card::before {
            background: linear-gradient(135deg, #879bbc, #879bbc);
        }

        .best-price-card .feature-title,
        .best-price-card .feature-subtitle,
        .best-price-card .feature-description {
            color: black;
        }

        .icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-section {
                padding: 40px 20px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .form-container {
            display: grid;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
            gap: 40px;
            padding: 50px 40px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
            backdrop-filter: blur(10px);
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-header h2 {
            color: #333;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-header p {
            color: #666;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #fff;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }

        .form-row {
            display: flex;
            gap: 15px;
        }

        .form-row .form-group {
            flex: 1;
        }

       

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .required {
            color: #e74c3c;
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
            border: 1px solid #c3e6cb;
        }

        @media (max-width: 600px) {
            .form-container {
                padding: 30px 20px;
                margin: 10px;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .form-header h2 {
                font-size: 24px;
            }
        }

        .icon {
            display: inline-block;
            margin-right: 8px;
        }
        .forrm-containerr {
  max-width: 600px;
  margin: 40px auto;
  padding: 24px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
  text-align: center;
}

.form-description {
  font-size: 1rem;
  margin-bottom: 18px;
  text-align: center;
  color: #666;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 8px 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.form-row textarea {
  min-height: 60px;
  resize: vertical;
}

.form-label {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #333;
}

.form-buttonn {
  width: 100%;
  padding: 10px 0;
  font-size: 1.1rem;
  border-radius: 6px;
  background: linear-gradient(90deg, #6a5af9, #4f8cff);
  color: #fff;
  border: none;
  box-shadow: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}

.form-button:hover {
  background: linear-gradient(90deg, #4f8cff, #6a5af9);
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 8px;
  }
  .form-container {
    padding: 12px 4px;
  }
}