body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    
}



    /* Nav Menu */
          /* Header styles */
          .nav-header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid #e5e7eb;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-wrapper {
            display: flex;
            height: 3.5rem;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo styles */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #000;
            font-weight: bold;
        }

        /* Navigation menu styles */
        .nav-menu {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-menu {
                display: flex;
                align-items: center;
                gap: 2rem;
                margin: 0 auto;
            }
        }

        .nav-item {
            position: relative;
            list-style: none;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            color: #000;
            text-decoration: none;
            font-size: 0.875rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        /* Dropdown styles */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 800px;
            padding: 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .nav-item:hover .dropdown {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem;
            text-decoration: none;
            color: #000;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f3f4f6;
        }

        /* Badge styles */
        .nav-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.125rem 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #000;
            background-color: #fbbf24;
            border-radius: 9999px;
            margin-left: 0.5rem;
        }

        /* Button styles */
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
        }

        .button-ghost {
            color: #000;
            background: transparent;
            border: none;
        }

        .button-ghost:hover {
            background-color: #f3f4f6;
        }

        .button-primary {
            color: white;
            background-color: #000;
            border: none;
        }

        .button-primary:hover {
            background-color: #1a1a1a;
        }

        /* Mobile menu styles */
        .mobile-menu-button {
            display: block;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .mobile-menu-button {
                display: none;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 2rem 1rem;
            transition: left 0.3s ease-in-out;
            z-index: 100;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem 0;
            color: #000;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }
/* Nav menu Ends */

/* Hero Section Starts */

        /* Hero contact section */
        .hero-contact {
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom right, #e8f7f3, #d1f0e8);
            padding: 64px 16px;
            
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        .flex-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }
        
        .content-left {
            width: 100%;
            margin-bottom: 40px;
        }
        
        .content-right {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        .illustration-container {
            position: relative;
            width: 100%;
            max-width: 500px;
        }
        
        .illustration {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        
        .hero-contact h1 {
            font-size: 2rem;
            font-weight: bold;
            color: #821928;
            margin-bottom: 16px;
        }
        
        .hero-contact p {
            font-size: 1.125rem;
            color: #4a5568;
            margin-bottom: 32px;
            max-width: 28rem;
        }
        
        .hero-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background-color: #214150;
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: 500;
            color: white;
            text-decoration: none;
            transition: background-color 0.2s;
        }
        
        .hero-button:hover {
            background-color: #3bc053;
        }
        
        /* Background decorative elements */
        .bg-circle-1 {
            position: absolute;
            top: 0;
            right: 0;
            width: 256px;
            height: 256px;
            background-color: #e8f7f3;
            border-radius: 50%;
            transform: translate(50%, -50%);
            opacity: 0.5;
        }
        
        .bg-circle-2 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 192px;
            height: 192px;
            background-color: #d1f0e8;
            border-radius: 50%;
            transform: translate(-50%, 50%);
            opacity: 0.5;
        }
        
        /* Responsive styles */
        @media (min-width: 768px) {
            .hero-contact {
                padding: 96px 24px;
            }
            
            .flex-container {
                flex-direction: row;
            }
            
            .content-left {
                width: 50%;
                margin-bottom: 0;
            }
            
            .content-right {
                width: 50%;
                justify-content: flex-end;
            }
            
            .hero-contact h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (min-width: 1024px) {
            .hero-contact h1 {
                font-size: 3rem;
            }
        }

/* Hero Section End's */

/* Contact Section Starts */

.contact-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1.5;
    min-width: 300px;
}

.contact-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #fff;
}

.contact-item.dark {
    background-color: #333;
    color: white;
}

.contact-icon {
    margin-right: 15px;
    font-size: 18px;
    color: #333;
}

.contact-item.dark .contact-icon {
    color: white;
}

.social-icons {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #555;
    transform: translateY(-3px);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 16px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #444;
}

.btn-icon {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-info, .contact-form {
        width: 100%;
    }
}

/* Contact Section Ends */

/* INFO Section Starts */

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Achievement section */
.achievement-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.achievement-content {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease-out;
}

.achievement-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Heading styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.highlight {
    color: #821928;
}

/* Description text */
.section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
}

/* Button styles */
.info-btn {
    display: inline-block;
    background-color: #821928;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.info-btn:hover {
    background-color: #4a5568;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Stat card styles */
.stat-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.7s;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    max-width: 100%;
    max-height: 100%;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Custom icons */
.icon-team {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzAiIGhlaWdodD0iNzAiIHZpZXdCb3g9IjAgMCA3MCA3MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIzNSIgY3k9IjM1IiByPSIzNSIgZmlsbD0iI0ZGRUVFNiIvPjxwYXRoIGQ9Ik0yMCAyMEw1MCA1ME0yMCA1MEw1MCAyMCIgc3Ryb2tlPSIjRkY2QjAwIiBzdHJva2Utd2lkdGg9IjMiLz48cGF0aCBkPSJNMzUgMTVMNTUgMzVMMzUgNTVMMTUgMzVMMzUgMTVaIiBmaWxsPSIjRkZDQ0E3Ii8+PC9zdmc+');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-products {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzAiIGhlaWdodD0iNzAiIHZpZXdCb3g9IjAgMCA3MCA3MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIzNSIgY3k9IjM1IiByPSIzNSIgZmlsbD0iI0ZGRUVFNiIvPjxwYXRoIGQ9Ik0yNSAyNUw0NSA0NUw0NSAyNUwyNSA0NVoiIGZpbGw9IiNGRjZCMDAiLz48cGF0aCBkPSJNNDUgMjVMNTUgMzVMNDUgNDVMMzUgMzVMNDUgMjVaIiBmaWxsPSIjMDAwIi8+PHBhdGggZD0iTTI1IDI1TDM1IDM1TDI1IDQ1TDE1IDM1TDI1IDI1WiIgZmlsbD0iI0ZGQTc1RiIvPjwvc3ZnPg==');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-sold {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzAiIGhlaWdodD0iNzAiIHZpZXdCb3g9IjAgMCA3MCA3MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIzNSIgY3k9IjM1IiByPSIzNSIgZmlsbD0iI0ZGRUVFNiIvPjxwYXRoIGQ9Ik0zNSAzNUwzNSAxMEExMCAyNSAwIDAgMSA2MCAzNUgzNVoiIGZpbGw9IiNGRjZCMDAiLz48cGF0aCBkPSJNMzUgMzVMMzUgMTBBMjUgMjUgMCAwIDAgMTAgMzVIMzVaIiBmaWxsPSIjRkZBNzVGIi8+PHBhdGggZD0iTTM1IDM1TDM1IDYwQTI1IDI1IDAgMCAwIDYwIDM1SDM1WiIgZmlsbD0iIzlDMjdCMCIvPjxwYXRoIGQ9Ik0zNSAzNUwzNSA2MEEyNSAyNSAwIDAgMSAxMCAzNUgzNVoiIGZpbGw9IiMzRjUxQjUiLz48L3N2Zz4=');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-star {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzAiIGhlaWdodD0iNzAiIHZpZXdCb3g9IjAgMCA3MCA3MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIzNSIgY3k9IjM1IiByPSIzNSIgZmlsbD0iI0ZGRUVFNiIvPjxwYXRoIGQ9Ik0zNSAxNUw0MC45NzY2IDI3LjA3MTFINTQuMjY1OEw0My42NDQ2IDM0LjM1NzlMNDkuNjIxMiA0Ni40MjlMMzUgMzkuMTQyMUwyNC4zNzg4IDQ2LjQyOUwzMC4zNTU0IDM0LjM1NzlMMTkuNzM0MiAyNy4wNzExSDMzLjAyMzRMMzUgMTVaIiBmaWxsPSIjRkY2QjAwIi8+PHBhdGggZD0iTTIwIDIwTDI1IDEwTTUwIDIwTDQ1IDEwTTIwIDUwTDEwIDQ1TTUwIDUwTDYwIDQ1IiBzdHJva2U9IiNGRjZCMDAiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Counter animation */
.counter-animation {
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Responsive styles */
@media (max-width: 768px) {
    .achievement-section {
        flex-direction: column;
    }

    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .achievement-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* INFO Section Ends */

/* Loging Section Sratts */

.login-container {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline;

}

.banner {
    background-color: #2a2ad1;
    position: relative;
    padding: 60px 40px;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Diagonal stripes */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        #1a1a80 100px,
        #1a1a80 200px
    );
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.login-container h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.login-container p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.signup-btn {
    display: inline-block;
    background-color: #4a4aff;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

.signup-btn:hover {
    background-color: #ffffff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.signup-btn:hover .arrow {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .banner {
        padding: 40px 20px;
    }

    .login-container h1 {
        font-size: 1.8rem;
    }

    .login-container p {
        font-size: 0.9rem;
    }

    .signup-btn {
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 30px 15px;
    }

    .login-container h1 {
        font-size: 1.5rem;
    }

    .login-container p {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .signup-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Loging Section Ends */