/*LOGIN HEADER*/
.nav {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;  
  align-items: center;        
  position: fixed;   
  top: 0;             
  left: -20;
  right: 0;
  width: 100%;
  z-index: 1000;
  font-size: 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    border-bottom: 1px solid #f0f0f0; 
}

.logoimage, 
.navbar nav, 
.nav-icons {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100px;
}

.logoimage {
    justify-content: flex-start;
}

.logoimage img {
    height: 50px;      
    width: auto;        
    display: block;     
}

.navbar nav {
    justify-content: center; 
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.navbar nav .active {
    color: #4a6cf7;
}

.nav-icons {
    justify-content: flex-end;
}

.nav-icons a {
    text-decoration: none;
    color: #333; 
    margin-left: 20px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: #4a6cf7;
}

.navleft {
  display: flex;
  align-items: center;
}

.navleft img {
  width: 60%;
} 

.navright {
  display: flex;       
  gap: 30px;           
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.navright a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
}

.menu-checkbox, .hamburger {
    display: none;
}
/*END*/

/* home header */
.homeheader-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    border-bottom: 1px solid #f0f0f0; 
    z-index:1100;
}

.hamburger {
    display: none;
    color: #303870;
    z-index: 1001; 
}

.mobile-only-profile {
    display: none !important;
}

.homeheader-logo, 
.homeheader-links, 
.homeheader-icons {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 25px;
}

.homeheader-logo {
    justify-content: flex-start;
}

.homeheader-logo img {
    height: 40px;      
    width: auto;        
    display: block;     
}

.homeheader-links {
    justify-content: center; 
    gap: 30px;
}

/* Base Link Style */
.homeheader-links a {
    padding: 10px 15px;
    border-radius: 5px;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: #303870;
    font-weight: bold;
    display: inline-block;
    background-image: linear-gradient(#4a6cf7, #4a6cf7);
    background-size: 0% 100%; 
    background-repeat: no-repeat;
    background-position: left; 
   
}

.homeheader-links a:hover {
    background-image: linear-gradient(#f0f4ff, #f0f4ff);
    background-size: 100% 100%; 
    color: #4a6cf7;
}


.homeheader-links a:active {
    transform: scale(0.95);
    background-image: linear-gradient(#dbe4ff, #dbe4ff);
}


.homeheader-links a.active {
    background-image: linear-gradient(#4a6cf7, #4a6cf7);
    background-size: 100% 100%; 
    color: white;
}

.homeheader-icons {
    justify-content: flex-end;
}

.homeheader-icons a {
    text-decoration: none;
    color: #333; 
    margin-left: 20px;
    font-size: 30px;
    transition: color 0.3s ease;
}

.homeheader-icons a:hover {
    color: #4a6cf7;
}

/* footer */
.footer {
    background-image: linear-gradient( #5c6bd6, #303870);
    padding: 40px 60px 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05); 
    width: 100%;
    
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-center, .footer-right {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footerimage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footerimage img {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 5px;
}

.footerimage small {
    display: block;
    font-size: 10px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
}

.footer-center {
    align-items: center; 
    text-align: center;
}

.footer-center p {
    margin: 0 0 10px;
    font-weight: bold;
    color: #ffffff;
}

/*soc med links*/
.socials a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    margin: 0 8px;
}

.footer-right a {
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
}

/*END*/

/*notification*/
.notification-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 2000;
}

#bellIcon.active {
    color: #4a6cf7 !important;
}

/* Notification Dropdown */
.notification-dropdown {
    display: none;
    position: absolute; 
    top: 45px;          
    right: 0;           
    background: #fff;
    width: 300px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 12px 0;
}

.notification-dropdown.show {
    display: block;
}

.notification-dropdown a {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333 !important;
    font-size: 14px !important;
    transition: 0.2s;
}

.notification-dropdown a:hover {
    background: #f8f9ff;
    color: #4a6cf7 !important;
}

/*profile*/
.profile-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 20px;
    z-index: 2000;
}

/*profile*/
#profileIcon.active {
    color: #4a6cf7 !important;
    transform: scale(1.1);
}

.profile-dropdown {
    display: none;
    position: absolute; 
    top: 45px;          
    right: 0;           
    background: #fff;
    width: 300px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 12px 0;
}

.profile-dropdown.show {
    display: block;
}

.dropdown-header {
    padding: 0 16px 8px;
    display: flex;
    flex-direction: column;
}
.dropdown-header h1 { font-size: 20px; color: #303870; }
.dropdown-header h2 { font-size: 12px; color: #999; }

.profile-dropdown hr { border: 0; border-top: 1px solid #f0f0f0; margin: 8px 0; }

.profile-dropdown a {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333 !important;
    font-size: 14px !important;
    transition: 0.2s;
}

.profile-dropdown a i {
    margin-right: 10px;
    font-size: 16px !important;
    color: #303870 !important;
}

.profile-dropdown a:hover {
    background: #f8f9ff;
    color: #4a6cf7 !important;
}
.profile-dropdown a:hover i {
    color: #4a6cf7 !important;
}

/*signout btn*/
.signoutbtn {
    width: 100%;            
    padding: 10px;
    margin-top: 15px;
    background-color: red; 
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signoutbtn:hover {
    background-color: #ff7575; 
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(74, 108, 247, 0.2);
}

/*END*/
.mobile-logo img {
    height: 50px;      
    width: auto;        
    display: block;     
}

.mobile-logo {
    display: none;
}

@media screen and (max-width: 768px) {
    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    
}

@media (min-width: 769px) {
.footer-right {
    align-items: flex-end;
}
}




/*LOGIN, SIGNUP, FOOTER*/

.logfoot {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #c3cef0;
    position: fixed;
    bottom: 15px;
    left: 0;
}

@media (max-width: 769px) {
.logfoot {
    position: static;
    margin-top: -40px;
}
}