:root {
    --primary: #fe0000;
    --primary-light: #ff4d4d;
    --primary-dark: #cc0000;
    --light-gray: #f5f5f5;
    --lighter-gray: #fafafa;
    --dark: #333;
    --gray: #888;
    --border-radius: 12px;
    --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
a{
    text-decoration: none !important;
}

body {
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    padding: 0;
}

/* Header Styles */
header {
    background: linear-gradient(to right, #a10000 0%, #fe0000 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 70px;
    width: 70px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-5deg);
}

.logo img {
    max-height: 50px;
    max-width: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.header-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.header-btn i {
    font-size: 1.1rem;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-btn:active {
    transform: translateY(-1px);
}

.header-btn.primary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.header-btn.primary:hover {
    background: var(--light-gray);
    border-color: var(--light-gray);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Sidebar (Mobile Menu) */
.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100%;
    background: linear-gradient(to bottom, #fe0000, #a10000);
    z-index: 1001;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

.sidebar.show {
    right: 0;
}

.sidebar .close-btn {
    font-size: 28px;
    color: white;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
}

/* Overlay behind Sidebar */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1000;
}

.overlay.show {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main {
        padding: 20px !important;
    }
    .header-buttons {
        display: none !important;
    }

    .hamburger {
        display: block;
    }
}

/* Main Content Styles */
.main {
    /* max-width: 1100px; */
    /* margin: 40px auto; */
    background: #fff;
    padding: 40px;
    border-radius: 26px;
    /* box-shadow: var(--box-shadow); */
    position: relative;
    overflow: hidden;
}

.header-content {
    text-align: center;
    margin-bottom: 40px;
}

.header-content img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(254, 0, 0, 0.2));
    transition: transform 0.3s ease;
    margin-bottom: 15px;
}

.header-content img:hover {
    transform: scale(1.1) rotate(-5deg);
}

.header-content h1 {
    /* margin: 20px 0 10px; */
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-content p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.form-group > div {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 15px;
    transition: color 0.3s ease;
    text-align: left;
}

input,
select {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 15px;
    background: var(--lighter-gray);
    transition: var(--transition);
    width: 100%;
}

input:hover,
select:hover {
    border-color: var(--primary-light);
    background: #fff;
}

input:focus,
select:focus {
    border-color: var(--primary);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(254, 0, 0, 0.1);
}

.section-title {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    position: relative;
    letter-spacing: -0.3px;
    text-align: left;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    align-self: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(254, 0, 0, 0.2);
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 0, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(254, 0, 0, 0.2);
}

.btn-submit:focus {
    outline: none;
}

/* Responsive Header */
@media (max-width: 768px) {
    /* .header-container {
          flex-direction: column;
          gap: 15px;
        } */

    .logo-container {
        width: 100%;
        /* justify-content: center; */
        text-align: center;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
    }

    .header-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .header-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .header-buttons {
        flex-direction: column;
        align-items: center;
    }

    .header-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .header-content img {
        width: 60px;
        height: 60px;
    }

    .header-content h1 {
        font-size: 24px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px;
    }
}

/* Hero Section */
.hero {
    /*background: linear-gradient(rgba(254, 0, 0, 0.85), rgba(160, 0, 0, 0.9)),*/
    /*    url("https://images.unsplash.com/photo-1584118624012-df056829fbd0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80");*/
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 20px 20px;
    /* margin-bottom: 40px; */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item .label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container,
.hero-content,
.stat-item {
    animation: fadeIn 0.8s ease-out;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}
.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}
.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}
.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}




        .contact-det p {
            text-shadow: none;
            margin-bottom: 0px;
            font-size: 13px;
            margin-bottom: 0px;
            color: rgb(64, 64, 64);
        }

        .contact-box .overview-icons i {
            color: #fff;
            padding: 7px;
            background-color: #fe0000;
            border-radius: 30px;
            margin-right: 10px;
            font-size: 10px;
        }

        .contact-box .overview-icons {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-box .overview-icons h6 {
            margin-bottom: 0px;
            font-size: 15px;
        }

        .contact-box .overview-icons p {
            font-size: 13px;
        }

        .contact-box .content-sec {
            margin-top: -4px;
        }

        .btn-cl .header-btn.primary {
            display: inline;
        }
