* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    /* background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%); */
    /* min-height: 100vh; */
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 20px; */
    /* background: white; */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
    border-radius: 20px;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
}

.header {
    text-align: center;
    padding: 40px 0;
    /* background: #26269b; */
    background-image: url("../images/bannerBack.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    /* border-radius: 15px; */
    margin-bottom: 70px;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 20px;
}

.website {
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}

.cardsSec {
    /* background-color: #26269b; */
    padding: 20px 0px;
    /* margin-top: 50px; */
}

.stat-card {
    background: linear-gradient(135deg, #f6f9fc 0%, #ddeaf8 100%);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid #add0f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    /* margin-bottom: 10px; */
}

.stat-label {
    font-size: 16px;
    color: #2b2b2b;
    /* font-weight: 500; */
}

.products-section {
    margin: 50px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    /* text-align: center; */
    margin-bottom: 15px;
    color: #1a365d;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: #26269b; */
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #add0f9;
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.15);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: #26269b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a365d;
}

.product-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-section {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%); */
    padding: 50px 40px;
    /* border-radius: 20px; */
    /* margin: 50px 0; */
    /* margin-top: 10px; */
    padding-top: 0px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f6f9fc 0%, #ddeaf8 100%);
    border-radius: 12px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    border: 1px solid #add0f9;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: #1a365d;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.feature-text {
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.cta-section {
    text-align: center;
    padding: 50px 0;
    /* background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%); */
    /* color: white; */
    /* border-radius: 20px; */
    margin: 40px 0;
}

.cta-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1a365d;
}

.cta-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #666;
}

.cta-button {
    display: inline-block;
    background: #26269b;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3); */
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.4);
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: #ffffff;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
    background-color: #26269b;
}

.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.tech-badge {
    /* background: linear-gradient(45deg, #1a365d, #2c5282); */
    color: #1a365d;
    padding: 8px 19px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fff;
}

.global-reach {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%); */
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.regions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.region {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    font-weight: 500;
    color: #1a365d;
}

.contact-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid #e9ecef;
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a365d;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: linear-gradient(135deg, #f6f9fc 0%, #ddeaf8 100%);
    padding: 12px;
    border: 1px solid #add0f9;
    border-radius: 8px;
    font-size: 1rem;
    height: 54px;
    transition: border-color 0.3s ease;
}

input::placeholder {
    color: #566984;
    opacity: 1;
    /* Firefox */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.submit-btn {
    background: #26269b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-section {
        padding: 30px 20px;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}