





    @font-face {
    font-family: "Aileron";
    src: url("/fonts/Aileron-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }


  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html, body {
  /* overflow-x: hidden; */
  width: 100%;
  background-color: #ffffff;
}


    /* Top banner */
    .top-banner {
      background-color: #C3695E;
      color: white;
      padding: 5px 0;
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      position: relative;
      font-family: 'Poppins', sans-serif;
    }
    .top-banner span {
      display: inline-block;
      padding-left: 100%;
      animation: marquee 19s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }


    .navbar {
      background-color: #153743; 
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
      font-family: 'Poppins', sans-serif;

    }
    .navbar-brand {
      padding-left: 1rem; 
    }
    .navbar-nav {
      gap: 2.5rem; 
    }
    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 300;
      transition: color 0.3s ease;
      font-family: 'Poppins', sans-serif;

    }
    .navbar-nav .nav-link:hover {
      color: #c96b5a !important;
    }
    .navbar-brand img {
      height: 45px;
    }
    .icon-btn {
      color: white;
      font-size: 18px;
      margin-left: 20px;
      margin-right: 1rem; 
      cursor: pointer;
      transition: color 0.3s ease;
    }
    .icon-btn:hover {
      color: #c96b5a;
    }


    .navbar-toggler {
      border: none !important;
      outline: none !important;
      box-shadow: none !important;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    @media (max-width: 991px) {
      .navbar-nav {
        text-align: center;
        gap: 1.5rem;
      }
    }

    .sticky-top {
      top: 0;
      z-index: 1030;
    }





@media (max-width: 576px) {

   .icon-btn {
      color: white;
      font-size: 18px;
      margin-left: 10px;
      margin-right:10px; 
      cursor: pointer;
      transition: color 0.3s ease;
      text-decoration: none !important;
    }
  
}




    .profile-dropdown {
        display: flex;
        align-items: center;
        cursor: pointer;
        
    }

    .profile-dropdown .dropdown-icon {
        font-size: 0.8rem;
        vertical-align: middle;
        transition: transform 0.3s ease;
        color: white;
    }

    .profile-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #153743;
        border-radius: 6px;
        min-width: 120px;
        box-shadow: 0 8px 22px rgba(0,0,0,0.12);
        z-index: 1000;
        
    }

    .profile-menu .dropdown-item {
        color: #fff;
        font-family: 'Lato', sans-serif;
        font-weight: 500;
        padding: 0.5rem 1rem;
    }

    #profile{
            color: white;
      font-size: 18px;
      margin-left: 20px;
      margin-right: 0.5rem; 
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .profile-menu .dropdown-item:hover {
        background-color: #1f3c46;
        color: #f1f1f1;
    }

    /* Show dropdown on hover */
    .profile-dropdown:hover .profile-menu {
        display: block;
    }

    /* Rotate FA icon on hover */
    .profile-dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }


 .badge {
    background-color: red;
    font-size: 0.7rem;
    position: relative;
    top: -10px;
    right: 10px;
}




    
/* .search-overlay {
  background: transparent;

  position: relative; 

  width: 100%;
  z-index: 1050;
  backdrop-filter: (10px);
  transition: 0.8s ease;
}

.search-overlay .container{
  border: 1px solid #a9a8a8;
  padding: 1rem;
  border-radius: 15px;
  transition: 2s;

} */



.search-overlay {
  position: absolute;        /* remove from normal flow */
  top: 100%;                 /* just below navbar */
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;        /* not clickable */
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  background: #153743;
  border-bottom: 1px solid #ddd;
  z-index: 1050;
  border-top: 1px solid #254956;
}

.search-overlay.show {
  opacity: 1;
  visibility: visible;       /* clickable now */
  transform: translateY(0);
}



.btn-pink {
  background-color: #C3695E;
  color: white;
  border-radius: 6px;
  border: none;
}

.btn-pink:hover {
  background-color: #d68b81;
  color: white;
}
























    


    .signup-form-box {
      max-width: 800px;
      margin: auto;
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      font-family: 'Poppins';
    }

      .signup-form-box h4{
        font-size: 2rem;
        font-weight: 400;
      }

    .form-label {
      font-weight: 500;
    }

    .section-divider {
      border-top: 1px solid #e0e0e0;
      margin: 30px 0;
    }

    .form-control::placeholder {
      color: #aaa;
    }

    .submit-btn {
      background-color: #153743;
      color: #fff;
      border: none;
    }

    .submit-btn:hover {
      background-color: #243b43;
      color: white;
    }

    @media (max-width: 576px) {
      .signup-form-box {
        padding: 20px;
      }

      .btn-block-sm {
        width: 100%;
      }
    }



    .social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: background-color 0.3s ease;
}

.google-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #153743;
}

    .google-btn:hover {
      background-color: #f8f8f8;
    }

.google-btn img {
  height: 20px;
  width: 20px;
}

.facebook-btn {
  background-color: #2d4373;
  color: white;
}
    .facebook-btn:hover {
      background-color: #4B3EC4;
    }

.facebook-btn i {
  font-size: 18px;
}
.or-divider {
  text-align: center;
  margin: 25px 0 50px;
  position: relative;
  font-size: 14px;
  color: #888;
}

.or-divider::before,
.or-divider::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  background: #ccc;
}

.or-divider::before {
  left: 0;
}

.or-divider::after {
  right: 0;
}













    



















    

.footer-section {
            background-image: url('images/Frame\ 123.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #ffffff;
            padding: 60px 0 40px 0;
            position: relative;
    font-family: 'Poppins', sans-serif;

        }



        .footer-section .container {
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            width: 120px;
            height: 60px;
            background: url('images/logo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-bottom: 20px;
        }

        .footer-description {
            font-size: 1rem !important;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #e0e0e0 !important;
    font-family: 'Poppins', sans-serif;

        }

        .footer-heading {
            font-size: 2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
    font-family: 'IvyMode', serif;

        }

        .footer-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav-item {
            margin-bottom: 12px;
        }

        .footer-nav-link {
            color: #d0d0d0;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
            display: block;
        }

        .footer-nav-link:hover {
            color: #ffffff;
            text-decoration: none;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-section .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background-color 0.3s ease;
           
        }
        .footer-section .social-icon i{
            color:white;
        }

        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .contact-info {
            font-size: 1rem;
            line-height: 1.6;
            color: #d0d0d0;
        }

        .contact-info strong {
            color: #d0d0d0;
            display: block;
            margin-bottom: 5px;
        }

        .phone-number {
            color: #ffffff;
            font-weight: 500;
            margin-top: 10px;
        }

        .footer-copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 13px;
            color: #b0b0b0;
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 30px 0;
            }
            
            .footer-heading {
                margin-bottom: 15px;
                margin-top: 30px;
            }
            
            .col-md-3:first-child .footer-heading {
                margin-top: 0;
            }
        }



  