@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import "bootstrap/dist/css/bootstrap.min.css";
@import "bootstrap-icons/font/bootstrap-icons.css";

:root {
    --primary-color: #37b038;
    --primary-hover: #2e8f2f;
    --secondary-color: #0c1f46;
    --white-color: #ffffff;
    --black: #000000;
    --gray-color: #6b7280;
    --dark-color: #1f2937;
    --bg-color: #f9fafb;
    --light-blue: #e9f0fa;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.container {
    max-width: 1200px;
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden !important;
    color: var(--secondary-color);
}
.text-success,
.text-primary {
    color: var(--primary-color) !important;
}
.primary-hover:hover {
    color: var(--primary-hover) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.secondary-hover:hover {
    color: var(--secondary-color) !important;
}
.truncate-text {
    display: inline-block;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}
.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/*//////////////////////////////////////////////////////   404 Page  Css */

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    text-align: center;
    padding: 2rem;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.btn-back-home {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn-back-home:hover {
    background: var(--primary-hover);
}

/*//////////////////////////////////////////////////////   Thanks u page   Css */

.thankyou-section {
    min-height: 100vh;
}

.icon-wrapper i {
    font-size: 4rem;
    color: var(--primary-color);
}

.thankyou-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.thankyou-text {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
}

.thankyou-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.thankyou-btn:hover {
    background: var(--primary-hover);
    color: var(--white-color);
}
