body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    
}



  /* Nav Section Starts */

    /* Nav Menu */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        line-height: 1.5;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
    
    button {
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: inherit;
    }
    
    /* Header styles */
    header {
        position: flex;
        top: 0;
        z-index: 1000;
        width: 100%;
        background-color: white;
        border-bottom: 1px solid #e5e7eb;
        transition: box-shadow 0.3s ease;
    }
    
    header.scrolled {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .header-container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
    }
    
    .logoo img {
        height: 60px;
        animation: logooFadeIn 1s ease-out forwards;
    }
    
    /* Logo animation */
    @keyframes logooFadeIn {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .logoo img:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
    
    /* Desktop navigation */
    .desktop-nav {
        display: none;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .desktop-nav {
            display: flex;
            gap: 2.5rem;
        }
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-button {
        display: flex;
        align-items: center;
        color: #374151;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        position: relative;
        transition: color 0.2s ease;
    }
    
    /* Underline animation for nav items */
    .nav-button::after,
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #821928;
        transition: width 0.3s ease;
    }
    
    .nav-button:hover::after,
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-button:hover {
        color: #111827;
    }
    
    .nav-link {
        color: #374151;
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    
    .nav-link:hover {
        color: #111827;
    }
    
    .chevron-icon {
        margin-left: 0.5rem;
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }
    
    .rotate {
        transform: rotate(180deg);
    }
    
    .dropdown {
        position: absolute;
        left: 0;
        top: 100%;
        margin-top: 0.75rem;
        min-width: 14rem;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        animation: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    
    .dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    /* Dropdown slide-in animation */
    @keyframes dropdownSlide {
        0% {
            opacity: 0;
            transform: translateY(10px);
        }
        80% {
            opacity: 1;
            transform: translateY(-2px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-item {
        display: block;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        color: #1f2937;
        transition: all 0.2s ease;
    }
    
    .dropdown-item:hover {
        background-color: #214150;
        color: white;
        border-radius: 4px;
        transform: translateX(5px);
    }
    
    /* Sub-dropdown styles */
    .sub-dropdown {
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 14rem;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    
    .sub-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    /* CTA buttons */
    .cta-buttons {
        display: none;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .cta-buttons {
            display: flex;
            gap: 1.25rem;
        }
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .btn-outline {
        border: 1px solid #821928;
        color: #821928;
        background-color: white;
    }
    
    .btn-outline:hover {
        background-color: #821928;
        color: white;
        transform: scale(1.05);
    }
    
    .btn-primary {
        border: 1px solid transparent;
        color: white;
        background-color: #821928;
    }
    
    .btn-primary:hover {
        background-color: #214150;
        transform: scale(1.05);
    }
    
    /* Mobile menu button */
    .mobile-menu-button {
        display: flex;
        padding: 0.75rem;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    @media (min-width: 1024px) {
        .mobile-menu-button {
            display: none;
        }
    }
    
    .mobile-menu-button:hover {
        color: #111827;
        background-color: #f3f4f6;
        transform: scale(1.1);
    }
    
    .mobile-menu-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Mobile menu */
    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        background-color: white;
        transition: max-height 0.5s ease-in-out;
    }
    
    .mobile-menu.active {
        max-height: 100vh;
        padding-bottom: 1rem;
        animation: mobileMenuSlide 0.5s ease-out forwards;
    }
    
    /* Mobile menu slide animation */
    @keyframes mobileMenuSlide {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-nav-item {
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-menu.active .mobile-nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
    
    .mobile-nav-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .mobile-nav-button:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .mobile-nav-link:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-dropdown {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    
    .mobile-dropdown.active {
        max-height: 1000px;
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    .mobile-dropdown-item {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        color: #4b5563;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .mobile-dropdown-item:hover {
        background-color: #f3f4f6;
        color: #111827;
        transform: translateX(5px);
    }
    
    .mobile-sub-dropdown {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    
    .mobile-sub-dropdown.active {
        max-height: 1000px;
        animation: dropdownSlide 0.4s ease-out forwards;
    }
    
    .mobile-cta {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0.4s;
    }
    
    .mobile-menu.active .mobile-cta {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .dropdown, .sub-dropdown {
            position: static;
            width: 100%;
            box-shadow: none;
            border: none;
            margin-top: 0;
            transform: none;
            opacity: 1;
            visibility: visible;
            display: none;
        }
        
        .dropdown.active, .sub-dropdown.active {
            display: block;
        }
        
        .sub-dropdown {
            padding-left: 1.5rem;
        }
    }
    
    @media (max-width: 640px) {
        .header-inner {
            height: 64px;
        }
        
        .logoo img {
            height: 48px;
        }
        
        .header-container {
            padding: 0 1rem;
        }
    }
  
    /*Nav Section 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: #821928;
        }
        
        /* Background decorative elements */
        .bg-circle-1 {
            position: absolute;
            top: 0;
            right: 0;
            width: 256px;
            height: 256px;
            background-color: #821928;
            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: #821928;
            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;
}

.Ccontact-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-iconss {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

.sociall-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;
}

.sociall-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;
    }

    .Ccontact-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 */

/* Measure Section Starts */


.measure-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.achievements-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.section-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.stats-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

.stats-card {
    background-color: #214150;
    border-radius: 16px;
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.corner-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.top-left {
    top: -75px;
    left: -75px;
}

.bottom-right {
    bottom: -75px;
    right: -75px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item[data-aos="fade-up"] {
    animation: fadeInUp 0.8s forwards;
}

.mstat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-suffix {
    font-size: 48px;
    font-weight: 700;
    display: inline-block;
    margin-left: 5px;
    vertical-align: top;
}

.mstat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hover effects */
.stat-item:hover .mstat-number {
    animation: pulse 1s infinite;
    color: #ffffff;
}

.stat-item:hover .mstat-label {
    color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .stats-card {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .stats-card {
        padding: 30px 15px;
    }
    
    .mstat-number, .stat-suffix {
        font-size: 36px;
    }
}


/* Measure 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: #214150;
    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,
        transparent 100px,
        transparent 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 */


/* Footer Section Starts */

.footer {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
  }
  
  .footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 70px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #821928;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
    position: relative;
  }
  
  .footer-column ul li a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
  }
  
  .footer-column ul li a:hover {
    color: #214150;
  }
  
  /* Dropdown Styles */
  .ddropdown {
    position: relative;
  }
  
  .ddropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    color: #222;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .ddropdown-toggle .fa {
    font-size: 10px;
    color: #555;
    transition: transform 0.3s ease, color 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-toggle {
    color: #214150;
  }
  
  .ddropdown:hover .ddropdown-toggle .fa {
    transform: rotate(180deg);
    color: #214150;
  }
  
  .ddropdown-menu {
    display: none;
    position: relative;
    left: 0;
    background-color: #fff;
    min-width: 100%;
    border-radius: 6px;
    z-index: 10;
    padding: 8px 0;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .ddropdown-menu li {
    margin-bottom: 0;
    padding: 0;
  }
  
  .ddropdown-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .ddropdown-menu li a:hover {
    background-color: #f5f9ff;
    color: #214150;
  }
  
  .newsletter {
    max-width: 400px;
  }
  
  .newsletter h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 30px;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f5f9ff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .newsletter-input:focus {
    outline: none;
  }
  
  .newsletter-button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 24px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .newsletter-button:hover {
    background-color: #333;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .contact-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .contact-column p {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-right: 50px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  
  .copyright {
    color: #555;
    font-size: 14px;
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .social-icons a {
    color: #111;
    font-size: 18px;
    transition: color 0.2s ease;
  }
  
  .social-icons a:hover {
    color: #555;
  }
  
  @media (max-width: 992px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
    
    .newsletter {
        flex: 0 0 100%;
        max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
  
    .ddropdown-menu {
        position: static;
        background-color: #fafafa;
        min-width: 100%;
        border-radius: 4px;
        margin-top: 0;
        padding: 8px 0;
        opacity: 1;
        transform: none;
    }
  
    .ddropdown:hover .ddropdown-menu {
        display: block;
    }
  }
  
  /* Footer Section End's */