@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lato:wght@300;400;600;700&display=swap');

:root {
    --primary-navy: #0B1221;
    --accent-gold: #D4AF37;
    --text-dark: #1A1A1A;
    --text-light: #ffffff;
    --bg-light: #F9FAFB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/*  NAVBAR  */
.nav-responsive{
    display:none;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy) !important;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
}


/* Login Button in Navbar */
.btn-login {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #BFA13D 100%);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    color: var(--text-light);
}

/*  HERO HEADER 800PX  */
.hero-v2 {
    height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/login-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment:fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(11, 18, 33, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 7rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.9),
        0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-title .accent {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/*  BUTTONS  */
.btn-gold {
    background: var(--accent-gold);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #BFA13D;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    color: var(--text-light);
}

.btn-outline-light-pro {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--text-light);
    background: transparent;
    padding: 1rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 35%;
}

.btn-outline-light-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(222, 222, 222, 0.4);
    background: var(--text-light);
    color: var(--primary-navy);
    border-color: var(--text-light);
}

/*  SECTIONS  */
section {
    padding: 6rem 0;
    position: relative;
}

/* Section separator with gold line */
section:not(:last-of-type)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

/* Alternating section backgrounds */
section:nth-of-type(odd) {
    background-color: #fff;
}

section:nth-of-type(even) {
    background-color: var(--bg-light);
}

/* Override for sections with specific backgrounds */
section.bg-light {
    background-color: var(--bg-light) !important;
}

section.hero-v2::after {
    display: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/*  CARDS  */
.card-pro {
    background: #fff;
    padding: 3rem 2rem;
    border: 1px solid #cdcdcd;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.icon-box-pro {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.icon-box-pro hr{
    background:#555;
    border: 0px solid #111;
    height:1px;    
}

.card-pro h3{
    margin-bottom:15px;
}


/*  TESTIMONIALS  */
.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-left: 4px solid var(--accent-gold);
    border-right: 1px solid #cdcdcd;
    border-top: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card .stars {
    color: var(--accent-gold);
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/*  CONTACT FORM  */
.contact-form .form-control {
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form select.form-control {
    cursor: pointer;
}


.contact-form .form-check-input {
    border-color: var(--accent-gold);
}

.contact-form .form-check-input:checked {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.contact-form .form-check-label {
    line-height: 1.6;
}

.btn-send{
width: 99.9%;
}

/*  SIDEBAR  */
.sidebar {
    background-color: var(--primary-navy) !important;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
    letter-spacing: 0;
}

.sidebar .nav-link.active {
    background-color: var(--accent-gold) !important;
    color: #fff !important;
}
/*ROUNDED*/

.rounded {
    border-radius:100px!important;
    text-align:center!important;
}

.badge{
    border-radius: 100px !important;
    padding: 10px 20px !important;
    text-align: center;
    font-size:12px;    
    word-wrap:break-word!important;
    max-width:120px ;
}

.log-content{
    padding:0px 50px 10px;
}


/*  RESPONSIVE  */
@media (max-width: 768px) {

.sidebar{

display:none!important;

}
    .d-flex,.btn,.bg-blue,.bg-gold,.bg-success,.bg-info,.bg-warning,.bg-danger,.bg-secondary,.bg-black{
        display:block!important;
        width:100%!important;
        margin:15px auto!important;
    } 

   table, tr,td,tbody{
        display:block!important;
        width:100%!important;
        padding 100px 0;
    } 
    .rounded-circle{
        width:12%;
        border-radius:5px!important;
        text-align:center;
        padding:5px;
        margin:10px auto!important;
        color:black!important;
        background: #fcfcfc !important;
        border: 1px solid #bdbdbd !important;
    }

    .team .rounded-circle{
       height:100%!important
    }
    img{
        display:block!important;
        width:70%!important;
        padding 100px 0;
    } 
    .btn-gold{
        padding:10px!important;
        font-size: 11px;
    }

    .nav-responsive{  
        display:flex;
    }
    .nav-desk{
        display:none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-v2 {
        height: 800px;
    }
    
    .btn-header{
        width: 100%!important;
        display:block;
    }

    .btn-export{
        width:80%;
        margin-left:8%;
    }
 
   .mobile-h2{
        display:none;
     } 


    .user-content tr td img,.message-content img,thead{
        display:none!important;
    }

    .testimonial-avatar{
        display:none!important;
    }   

    .img-fluid {
        width: 100%!important;
        height: auto!important;
    }
    .rounded {
        border-radius:0px!important;
        width:100%!important;
    }



}
