/* 
* Saikiran Constructions - Main Stylesheet
* Author: Your Name
* Version: 1.0
*/

/* ===== GENERAL STYLES ===== */
:root {
    --primary-color: #ff5722;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333333;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f0f0f0 !important;
}

html {
    background-color: #f0f0f0 !important;
}

/* Ensure all pages have consistent background */
* {
    box-sizing: border-box;
}

html, body {
    background-color: #f0f0f0 !important;
    min-height: 100vh;
}

/* Ensure sections don't override body background */
section:not(.hero-section):not(.enhanced-auth-section):not(#overview):not(.amenities-section):not(.section-padding) {
    background-color: transparent !important;
}

/* Ensure main containers maintain background */
.container, .container-fluid {
    background-color: transparent;
}

/* Make sure content cards stand out against grey background */
.card, .bg-white {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure form backgrounds are white for better contrast */
.form-control, .form-select {
    background-color: #ffffff;
}

/* Page headers and breadcrumbs */
.page-header, .breadcrumb-section {
    background-color: transparent !important;
}

/* Footer should remain dark */
.footer {
    background-color: var(--dark-color) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #e64a19;
    border-color: #e64a19;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* Enhanced header login/register buttons */
.navbar .btn-outline-primary {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    transition: all 0.4s ease;
}

.navbar .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.navbar .btn-outline-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}



/* Glow effect on focus */
.navbar .btn-outline-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .navbar .btn-outline-primary {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    max-height: 60px;
}

.navbar-nav .nav-link {
    padding: 1.5rem 1rem;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-item:hover .nav-link {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ===== ABOUT SECTION ===== */
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.about-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.about-feature-item {
    margin-bottom: 1rem;
}

.about-feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ===== PROJECTS SECTION ===== */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay a {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay a {
    transform: translateY(0);
    opacity: 1;
}

.project-content {
    padding: 20px;
    background-color: #fff;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-content .project-category {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.project-content .project-location {
    display: flex;
    align-items: center;
    color: #777;
}

.project-content .project-location i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 15px;
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.testimonial-content:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author-info span {
    color: #777;
    font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 0.9rem;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
    color: #777;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #777;
    font-size: 0.9rem;
}

.blog-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form .form-control {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
}

.contact-form textarea.form-control {
    height: 150px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    padding: 12px 30px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: #fff;
}

.footer h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.footer h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-info li {
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background-color: var(--light-color);
    padding: 50px 0;
}

.breadcrumb-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
}

.breadcrumb-nav a {
    color: var(--text-color);
}

.breadcrumb-nav span {
    margin: 0 10px;
    color: #777;
}

.breadcrumb-nav .active {
    color: var(--primary-color);
}

/* ===== PROJECT DETAILS ===== */
.project-details-img {
    margin-bottom: 30px;
}

.project-details-img img {
    width: 100%;
    border-radius: 5px;
}

.project-details-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.project-details-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-details-info ul li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.project-details-info ul li:last-child {
    border-bottom: none;
}

.project-details-info ul li span:first-child {
    font-weight: 600;
}

.project-amenities {
    margin-top: 40px;
}

.amenity-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
}

.amenity-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* ===== BLOG DETAILS ===== */
.blog-details-img {
    margin-bottom: 30px;
}

.blog-details-img img {
    width: 100%;
    border-radius: 5px;
}

.blog-details-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.blog-details-meta {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.blog-details-meta span {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #777;
}

.blog-details-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-details-content p {
    margin-bottom: 20px;
}

.blog-details-content blockquote {
    background-color: var(--light-color);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    font-style: italic;
}

.blog-author {
    display: flex;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 5px;
    margin: 40px 0;
}

.blog-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.blog-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-content h4 {
    margin-bottom: 10px;
}

/* ===== SIDEBAR ===== */
.sidebar-widget {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-widget h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.sidebar-search .form-control {
    height: 50px;
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
}

.sidebar-search .btn {
    height: 50px;
    width: 50px;
    border-radius: 5px;
}

.sidebar-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.sidebar-categories ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-categories ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.sidebar-categories ul li a:hover {
    color: var(--primary-color);
}

.sidebar-recent-post {
    display: flex;
    margin-bottom: 20px;
}

.sidebar-recent-post:last-child {
    margin-bottom: 0;
}

.sidebar-recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.sidebar-recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.sidebar-recent-post-content span {
    color: #777;
    font-size: 0.9rem;
}

.sidebar-tags a {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--light-color);
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.sidebar-tags a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ===== AUTHENTICATION PAGES ===== */
.auth-section {
    padding: 80px 0;
}

.auth-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 30px;
}

.auth-form .form-control {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
}

.auth-form .btn {
    width: 100%;
    padding: 12px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

/* ===== ENHANCED AUTHENTICATION PAGES ===== */
.enhanced-auth-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff5722 100%);
    z-index: -3;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff5722 100%);
    }
    25% {
        background: linear-gradient(135deg, #ff5722 0%, #667eea 50%, #764ba2 100%);
    }
    50% {
        background: linear-gradient(135deg, #764ba2 0%, #ff5722 50%, #667eea 100%);
    }
    75% {
        background: linear-gradient(135deg, #3498db 0%, #ff5722 50%, #2c3e50 100%);
    }
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 87, 34, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
    z-index: -2;
    animation: overlayPulse 6s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.9;
        background: linear-gradient(45deg, rgba(255, 87, 34, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
    }
    50% {
        opacity: 0.7;
        background: linear-gradient(45deg, rgba(52, 152, 219, 0.8) 0%, rgba(255, 87, 34, 0.85) 100%);
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, rgba(255, 87, 34, 0.2), rgba(255, 255, 255, 0.1));
    animation: morphFloat1 12s ease-in-out infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 10%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(255, 255, 255, 0.1));
    animation: morphFloat2 15s ease-in-out infinite;
}

.shape-3 {
    width: 90px;
    height: 90px;
    bottom: 25%;
    left: 15%;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    background: linear-gradient(225deg, rgba(44, 62, 80, 0.2), rgba(255, 255, 255, 0.1));
    animation: morphFloat3 10s ease-in-out infinite;
}

.shape-4 {
    width: 140px;
    height: 140px;
    top: 8%;
    right: 25%;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    background: linear-gradient(315deg, rgba(255, 87, 34, 0.15), rgba(52, 152, 219, 0.1));
    animation: morphFloat4 18s ease-in-out infinite;
}

/* Add more shapes for richer animation */
.shape-5 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 87, 34, 0.1));
    animation: orbit1 20s linear infinite;
}

.shape-6 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2), rgba(255, 255, 255, 0.1));
    animation: orbit2 25s linear infinite reverse;
}

@keyframes morphFloat1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(0.9);
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        opacity: 1;
    }
    75% {
        transform: translateY(-40px) rotate(270deg) scale(1.2);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        opacity: 0.7;
    }
}

@keyframes morphFloat2 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        opacity: 0.5;
    }
    33% {
        transform: translateX(20px) translateY(-25px) rotate(120deg) scale(1.15);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        opacity: 0.8;
    }
    66% {
        transform: translateX(-10px) translateY(-35px) rotate(240deg) scale(0.85);
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        opacity: 0.9;
    }
}

@keyframes morphFloat3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50px) rotate(180deg) scale(1.3);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        opacity: 0.4;
    }
}

@keyframes morphFloat4 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        opacity: 0.6;
    }
    25% {
        transform: translateX(-20px) translateY(-20px) rotate(90deg) scale(0.8);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        opacity: 0.9;
    }
    50% {
        transform: translateX(15px) translateY(-40px) rotate(180deg) scale(1.1);
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
        opacity: 0.5;
    }
    75% {
        transform: translateX(-10px) translateY(-10px) rotate(270deg) scale(1.2);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        opacity: 0.8;
    }
}

@keyframes orbit1 {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Particle System */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 13s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 15s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 19s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 11s; }
.particle:nth-child(10) { left: 15%; animation-delay: 18s; animation-duration: 20s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Animated Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: -2;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Glowing Orbs */
.glowing-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.1), transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1), transparent 70%);
    bottom: 20%;
    right: -5%;
    animation-delay: 3s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
    }
}

/* Animated Waves */
.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 87, 34, 0.1) 100%);
    z-index: -1;
}

.wave-animation::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ff5722'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ff5722'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ff5722'/%3E%3C/svg%3E") repeat-x;
    animation: waveMove 10s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50%);
    }
}

/* Sparkle Effect */
.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: sparkleAnimation 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; left: 30%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 60%; left: 50%; animation-delay: 1s; }
.sparkle:nth-child(4) { top: 30%; left: 70%; animation-delay: 1.5s; }
.sparkle:nth-child(5) { top: 80%; left: 20%; animation-delay: 2s; }
.sparkle:nth-child(6) { top: 10%; left: 80%; animation-delay: 2.5s; }

@keyframes sparkleAnimation {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced card entrance animation */
.enhanced-auth-card {
    animation: cardEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        filter: blur(10px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.enhanced-auth-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
}

.enhanced-auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #e64a19 50%, var(--accent-color) 100%);
    border-radius: 24px 24px 0 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-brand {
    text-align: center;
    margin-bottom: 30px;
}

.brand-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e64a19 50%, var(--accent-color) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 
        0 16px 32px rgba(255, 87, 34, 0.25),
        0 8px 16px rgba(255, 87, 34, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: brandPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), #e64a19, var(--accent-color));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-icon:hover::before {
    opacity: 0.3;
}

.brand-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 87, 34, 0.35),
        0 12px 24px rgba(255, 87, 34, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes brandPulse {
    0%, 100% {
        box-shadow: 
            0 16px 32px rgba(255, 87, 34, 0.25),
            0 8px 16px rgba(255, 87, 34, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 20px 40px rgba(255, 87, 34, 0.35),
            0 12px 24px rgba(255, 87, 34, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(255, 87, 34, 0.6);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    }
}

.auth-brand h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.brand-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.enhanced-alert {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.enhanced-alert i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.enhanced-alert.alert-danger {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
    border-left: 4px solid #f44336;
}

.enhanced-alert.alert-success {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.enhanced-auth-form {
    margin-bottom: 25px;
}

.form-floating {
    position: relative;
    margin-bottom: 20px;
}

.enhanced-form-control {
    height: 64px;
    border: 2px solid #e8eaed;
    border-radius: 16px;
    padding: 22px 16px 16px 52px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    position: relative;
    z-index: 1;
    color: #2c3e50 !important;
    line-height: 1.5;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.enhanced-form-control::placeholder {
    color: transparent;
}

.enhanced-form-control:focus::placeholder {
    color: transparent;
}

.enhanced-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 3px rgba(255, 87, 34, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    color: #2c3e50;
    outline: none;
    transform: translateY(-1px);
}

.enhanced-form-control:focus + label {
    background-color: #fff;
}

.form-floating label {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: transparent;
    padding: 0;
    z-index: 0;
    white-space: nowrap;
}

/* When input has focus or content, move label completely out of the way */
.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    transform: translateY(0);
    background-color: #fff;
    padding: 2px 8px;
    margin-left: -3px;
    border-radius: 4px;
    z-index: 3;
}

/* Ensure input text is always visible and above label */
.enhanced-form-control {
    position: relative;
    z-index: 5 !important;
}

/* Additional safety to prevent label overlap */
.form-floating input:focus,
.form-floating input:not(:placeholder-shown) {
    z-index: 5 !important;
}

.form-floating label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.enhanced-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.enhanced-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.enhanced-btn-primary {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e64a19 50%, var(--accent-color) 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 
        0 8px 16px rgba(255, 87, 34, 0.25),
        0 4px 8px rgba(255, 87, 34, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enhanced-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.enhanced-btn-primary:hover::before {
    left: 100%;
}

.enhanced-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 32px rgba(255, 87, 34, 0.35),
        0 8px 16px rgba(255, 87, 34, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #e64a19 0%, var(--primary-color) 50%, #2980b9 100%);
}

.enhanced-btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.enhanced-btn-primary:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(255, 87, 34, 0.3),
        0 16px 32px rgba(255, 87, 34, 0.35),
        0 8px 16px rgba(255, 87, 34, 0.25);
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 20px;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.enhanced-auth-footer {
    text-align: center;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 87, 34, 0.1);
}

.auth-link:hover {
    background: rgba(255, 87, 34, 0.2);
    transform: translateY(-1px);
    color: var(--primary-color);
}

.auth-link i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.back-to-home {
    margin-top: 15px;
}

.back-to-home .btn {
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-to-home .btn:hover {
    transform: translateY(-1px);
}

/* ===== ENHANCED REGISTER PAGE STYLES ===== */
.enhanced-register-card {
    max-width: 700px;
    margin: 0 auto;
}

.enhanced-register-form .row {
    margin-bottom: 0;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-subtitle i {
    margin-right: 8px;
    color: var(--primary-color);
}

.account-type-section {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.account-type-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.account-type-option {
    flex: 1;
    min-width: 250px;
}

.account-type-option input[type="radio"] {
    display: none;
}

.account-type-label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 0;
}

.account-type-label:hover {
    border-color: var(--primary-color);
    background: rgba(255, 87, 34, 0.05);
}

.account-type-option input[type="radio"]:checked + .account-type-label {
    border-color: var(--primary-color);
    background: rgba(255, 87, 34, 0.1);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.2);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e64a19 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.option-content h6 {
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

.option-content p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.password-strength {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.password-strength.weak {
    background: linear-gradient(90deg, #f44336 0%, #f44336 33%, #e0e0e0 33%, #e0e0e0 100%);
}

.password-strength.medium {
    background: linear-gradient(90deg, #ff9800 0%, #ff9800 66%, #e0e0e0 66%, #e0e0e0 100%);
}

.password-strength.strong {
    background: linear-gradient(90deg, #4caf50 0%, #4caf50 100%);
}

.form-text.text-muted {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666 !important;
}

.form-text.text-muted i {
    margin-right: 6px;
    color: var(--primary-color);
}

/* Enhanced form controls for register page */
.enhanced-register-form .enhanced-form-control {
    padding-left: 50px;
}

.enhanced-register-form .form-floating label {
    left: 50px;
}

/* Enhanced select dropdown styling */
.enhanced-form-control select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
}

/* Textarea styling for enhanced forms */
.enhanced-form-control textarea {
    resize: vertical;
    min-height: 80px;
}

/* Password match indicator */
.password-match-indicator {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    z-index: 10;
}

.password-match-indicator.match {
    color: #4caf50;
}

.password-match-indicator.no-match {
    color: #f44336;
}

/* Responsive Design for Enhanced Auth */
@media (max-width: 768px) {
    .enhanced-auth-card {
        margin: 20px;
        padding: 30px 25px;
    }
    
    .enhanced-register-card {
        margin: 15px;
        padding: 25px 20px;
    }
    
    .auth-links {
        flex-direction: column;
        align-items: center;
    }
    
    .auth-link {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .brand-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .auth-brand h2 {
        font-size: 1.5rem;
    }
    
    .account-type-options {
        flex-direction: column;
    }
    
    .account-type-option {
        min-width: auto;
    }
    
    .account-type-label {
        padding: 12px;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .option-content h6 {
        font-size: 0.95rem;
    }
    
    .option-content p {
        font-size: 0.85rem;
    }
}

/* ===== DASHBOARD ===== */
.dashboard-section {
    padding: 80px 0;
}

.dashboard-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.dashboard-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.dashboard-card p {
    color: #777;
    margin-bottom: 0;
}

.dashboard-table {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.dashboard-table h3 {
    margin-bottom: 20px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
    }
    
    .blog-author {
        flex-direction: column;
    }
    
    .blog-author-img {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .auth-card {
        padding: 20px;
    }
}

/* ===== PROJECT STATUS STYLES ===== */
.project-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-status-badge.ongoing {
    background: rgba(255, 193, 7, 0.9);
    color: #fff;
}

.project-status-badge.completed {
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
}

.project-status-badge.upcoming {
    background: rgba(23, 162, 184, 0.9);
    color: #fff;
}

/* Project Filter Links */
.projects-filter .filter-link {
    display: inline-block;
    padding: 8px 20px;
    margin: 0 5px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.projects-filter .filter-link:hover,
.projects-filter .filter-link.active {
    background: var(--primary-color);
    color: #fff;
}

/* Project Card Enhancements */
.project-card {
    position: relative;
    overflow: hidden;
}

.upcoming-card {
    border: 2px solid var(--info-color);
}

.upcoming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(23, 162, 184, 0.1) 50%, transparent 51%);
    pointer-events: none;
    z-index: 1;
}

.project-type,
.project-date,
.project-completion,
.project-price {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.project-type i,
.project-date i,
.project-completion i,
.project-price i {
    color: var(--primary-color);
    margin-right: 5px;
    width: 12px;
}

/* Success Stories Section */
.success-stories {
    border-left: 4px solid var(--success-color);
}

.stat-item h5 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Early Bird Section */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Newsletter Section */
.newsletter-form .input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 20px;
}

.newsletter-form .btn {
    border: none;
    padding: 12px 25px;
}

/* Investment Features */
.feature-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    margin: 0 auto;
}

/* CTA Sections */
.cta-section {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .projects-filter .filter-link {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
    
    .project-status-badge {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .stat-item {
        margin-bottom: 15px;
    }
}

/* ===== ASSOCIATES SECTION ===== */
.associates-section .option-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.associates-section .option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.associates-section .benefit-item {
    padding: 20px;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-color), #e64a19);
}

.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.profile-avatar {
    margin-bottom: 20px;
}

.activity-item {
    padding: 15px;
    border-left: 3px solid var(--primary-color);
    background-color: #f8f9fa;
    border-radius: 0 5px 5px 0;
    margin-bottom: 15px;
}

.activity-icon {
    width: 40px;
    text-align: center;
}

.activity-title {
    font-weight: 600;
    color: var(--text-color);
}

.activity-subtitle {
    font-size: 0.9rem;
}

/* Registration and Login Forms */
.registration-form,
.login-form {
    max-width: 100%;
}

.registration-form .form-label,
.login-form .form-label {
    font-weight: 500;
    color: var(--text-color);
}

.registration-form .form-control,
.login-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.registration-form .form-control:focus,
.login-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.25);
}

/* ===== DATEPICKER GENERAL STYLES ===== */
.datepicker {
    font-family: 'Poppins', sans-serif;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid #dee2e6;
    background: #fff;
    z-index: 9999;
    min-width: 280px;
}

.datepicker table {
    width: 100%;
    table-layout: fixed;
}

.datepicker .datepicker-switch {
    min-width: 140px !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-weight: 600 !important;
    padding: 0.75rem 0.5rem !important;
}

.datepicker .prev,
.datepicker .next {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}