.logo-container{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60px;
}

/* Header Section */
.header-section {
    background-color: #fff !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-section .navbar {
    background-color: #fff !important;
}

.navbar {
    padding: 15px 0;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Navigation Icons */
.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icon {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 15px;
}

.nav-icon:hover {
    color: #666;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 45px;
    transition: color 0.3s ease;
    position: relative;
    text-align: center;
    min-width: 120px;
}

.nav-link:hover {
    color: #666;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    display: block;
}

/* Login Page Specific Styles */
.login-section {
    padding-top: 120px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.login-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/login baground.PNG') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center -30px;
    filter: blur(5px);
    z-index: -1;
    pointer-events: none;
}

/* Centered form layout */
.login-section .container {
    position: relative;
    width: 100%;
}

.login-section .row {
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
}

/* Centered Form Container */
.login-form-container {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Cairo', sans-serif;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    height: 50px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    direction: rtl;
    text-align: right;
}

.form-control:focus {
    outline: none;
    border-color: #DBB63F;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(219, 182, 63, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
    font-family: 'Cairo', sans-serif;
}

/* Password Field */
.password-field {
    position: relative;
}

.password-field .form-control {
    padding-left: 50px;
    padding-right: 15px;
}

.password-toggle {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    transition: color 0.3s ease;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.password-toggle:hover {
    color: #DBB63F;
    background-color: rgba(219, 182, 63, 0.1);
}

.password-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

/* Forgot Password Link */
.forgot-password-link {
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: right;
}

.forgot-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #DBB63F;
    text-decoration: underline;
}

.modal-blur-bg {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
}

.modal-center {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: right;
}

.modal-center h2 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 800;
    color: #222;
    font-family: 'Cairo', sans-serif;
}

.modal-center p {
    margin: 0 0 16px 0;
    color: #555;
    line-height: 1.8;
    font-family: 'Cairo', sans-serif;
}

.email-highlight {
    color: #c19b2e;
    font-weight: 700;
}

.verification-code-section {
    margin-top: 10px;
    margin-bottom: 16px;
}

.verification-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

.verification-input {
    width: 100%;
    height: 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 18px;
    background: #f8f9fa;
    outline: none;
    text-align: center;
    letter-spacing: 6px;
    direction: ltr;
    font-family: 'Cairo', sans-serif;
}

.verification-input:focus {
    border-color: #DBB63F;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(219, 182, 63, 0.15);
}

.verification-error {
    margin-top: 10px;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.25);
    padding: 10px 12px;
    border-radius: 12px;
}

.verification-error .error-text {
    color: #dc3545;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

.verify-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #DBB63F 0%, #c19b2e 100%);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Cairo', sans-serif;
}

.verify-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(219, 182, 63, 0.28);
}

.verification-note {
    margin-top: 14px;
    color: #777;
    font-size: 13px;
}

/* Login Button */
.login-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #DBB63F 0%, #c19b2e 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #c19b2e 0%, #a88a26 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(219, 182, 63, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

/* Login Links */
.login-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.login-link {
    color: #DBB63F;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #c19b2e;
    text-decoration: underline;
}

.login-linkk {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

/* Divider */
.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    background: white;
    padding: 0 20px;
    color: #6c757d;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    color: #6c757d;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #DBB63F;
    color: #DBB63F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(219, 182, 63, 0.2);
}

.social-icon.google-signin-container:hover {
    transform: none;
}

.social-icon.google-signin-container {
    color: #6c757d;
}

.social-icon.google-signin-container:hover {
    color: #6c757d;
}

/* Google: custom icon button (click handled in login.js via Google OAuth popup) */
.google-signin-container {
    position: relative;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50%;
}
.custom-google-btn {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: inherit;
    line-height: 1;
}

.custom-google-btn i {
    display: block;
    line-height: 1;
}

.social-icon.google-signin-container:hover .custom-google-btn {
    color: #DBB63F;
}

/* Responsive Design */
@media (max-width: 991px) {
    .login-section {
        padding-top: 80px;
    }
    
    .login-section::before {
        background-attachment: scroll;
        background-position: center;
    }
    
    .login-form-container {
        margin-top: 30px;
        padding: 30px 20px;
    }
    
    .login-section .row {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .login-title {
        font-size: 2rem;
    }
    
    .login-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .login-form-container {
        padding: 25px 15px;
    }
    
    .form-control,
    .login-btn {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .login-section {
        padding-top: 70px;
    }
    
    .login-section::before {
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }

    .login-section .row {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .login-section .row > [class^="col"],
    .login-section .row > [class*=" col"] {
        padding-left: 0;
        padding-right: 0;
    }
    
    .login-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .social-icon:hover {
        transform: none;
    }
    
    .google-signin-container {
        overflow: hidden;
        border-radius: 50%;
    }
    
    body.gsi-debug .google-signin-container {
        overflow: visible;
        border-radius: 0;
        outline: 2px dashed #ff3b30;
        outline-offset: 2px;
    }

    /* Ensure custom Google icon stays centered on mobile */
    .google-signin-container .custom-google-btn {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .login-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Creative Footer */
.footer-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Border */
.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #DBB63F 0%, #c19b2e 50%, #DBB63F 100%);
    position: relative;
}

.footer-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.brand-text {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #DBB63F;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 0 0;
    font-style: italic;
}

.brand-description {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DBB63F;
    font-size: 14px;
    font-weight: 500;
}

.award-item i {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 30px;
    text-align: center;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #DBB63F, #c19b2e);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #DBB63F;
}

.footer-menu a:hover {
    color: #DBB63F;
    padding-right: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Social Icons */
.social-icons-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DBB63F, #c19b2e);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon-footer i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon-footer.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon-footer.facebook {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon-footer::before {
    opacity: 1;
}

.social-icon-footer i {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Social Section */
.footer-social {
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    background: rgba(0,0,0,0.1);
}

.footer-copyright p {
    color: #999;
    margin: 0;
    font-size: 14px;
}


/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .brand-logo-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-awards {
        justify-content: center;
    }
    
    .social-icons-footer {
        justify-content: center;
    }
}
