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

        /* Loader Screen */
        #loader{
            position:fixed;
            top:0;
            left:0;
            width:100%;
            height:100vh;
            background:#111;
            display:flex;
            justify-content:center;
            align-items:center;
            flex-direction:column;
            z-index:9999;
        }

        .progress-container{
            width:300px;
            height:25px;
            background:#333;
            border-radius:30px;
            overflow:hidden;
            margin-top:20px;
        }

        .progress-bar{
            width:0%;
            height:100%;
            background:linear-gradient(90deg,#00c6ff,#0072ff);
            transition:width 0.2s;
        }

        .percent{
            color:#fff;
            margin-top:10px;
            font-size:18px;
        }

        h1{
            font-size:40px;
            color:#333;
        }
    /* Global Styles */
    body {
      background-color: #f4f7fc;
      color: #333;
    }
	.container {
      font-family: 'Ubuntu', sans-serif;
    }
	.adminmsg {
	top: 140px;
	z-index: 6;
	position: absolute;
	font-family: 'Montserrat', sans-serif;
}
	a {
		text-decoration: none;
	}
    /* Navbar */
    .navbar {
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      font-weight: 600;
      font-size: 1.5rem;
    }

    .nav-link {
      font-weight: 500;
      color: #fff !important;
      transition: color 0.3s;
    }

    .nav-link:hover {
      color: #d1e7dd !important;
    }

    /* Carousel */
    .carousel-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      background-color: #fff;
    }

    .carousel-item img {
      height: 45vh;
      width: 100%;
	  z-index: 11;
    }


    /* Stylish Carousel Captions */
    .carousel-caption {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      bottom: initial;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .carousel-caption h5 {
      font-family: 'Dancing Script', cursive;
      font-size: 3rem;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .carousel-caption p {
      font-size: 1.25rem;
      color: #f8f9fa;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Carousel Text */
    @media (max-width: 992px) {
      .carousel-caption h5 {
        font-size: 2.5rem;
      }

      .carousel-caption p {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 768px) {
      .carousel-caption h5 {
        font-size: 2rem;
      }

      .carousel-caption p {
        font-size: 1rem;
      }
    }

    @media (max-width: 576px) {
      .carousel-item img {
        height: 30vh;
      }

      .carousel-caption h5 {
        font-size: 1.75rem;
      }

      .carousel-caption p {
        font-size: 0.95rem;
      }

      .navs img {
        width: 60px;
        height: 60px;
      }
	  .navspro img {
        width: 60px;
        height: 60px;
      }
    }

    /* Section Titles */
    h2.section-title {
      font-weight: 600;
      margin: 40px 0 20px;
      position: relative;
      display: inline-block;
    }

    h2.section-title::after {
      content: '';
      width: 50px;
      height: 3px;
      background-color: #0d6efd;
      position: absolute;
      left: 0;
      bottom: -10px;
    }

    /* Categories Scroll Menu */
    .scrollmenu {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 20px 0;
    }

    .scrollmenu::-webkit-scrollbar {
      height: 8px;
    }

    .scrollmenu::-webkit-scrollbar-thumb {
      background: #cccccc;
      border-radius: 4px;
    }

    .navs {
      flex: 0 0 auto;
      width: auto;
      height: 160px;
      text-align: center;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .navs:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .navs img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .navs .caption {
      font-weight: 600;
      color: #555;
    }
	
	.navspro {
      flex: 0 0 auto;
      width: auto;
      height: 180px;
      text-align: center;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .navspro:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .navspro img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .navspro .caption {
      font-weight: 600;
      color: #555;
    }

    /* Explore More Grid */
    .icon-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 8px;
    }

    @media (max-width: 768px) {

      .icon-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 480px) {
      .icon-grid {
        grid-template-columns: repeat(3, 1fr);
        
      }
    }

    .icon-box {
      background: #fff;
      border-radius: 12px;
      padding: 8px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .icon-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .icon-box i {
      font-size: 2rem;
      color: #0d6efd;
      margin-bottom: 5px;
    }

    .icon-box div {
      font-weight: 500;
      color: #333;
      font-size: 0.9rem;
    }

    /* Footer */
    footer {
      background-color: #343a40;
      color: #fff;
      padding: 40px 0;
    }

    footer .footer-links a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
    }

    footer .footer-links a:hover {
      color: #d1e7dd;
    }

    /* Responsive Adjustments */
    @media (max-width: 576px) {
      .carousel-item img {
        height: 30vh;
      }

      .navs img {
        width: 60px;
        height: 60px;
      }
    }

    .carousel-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.307);
    }

    .deal-active {
      border: 2px solid #007bff;
      border-radius: 10px;
    }

    #showList {
      display: none;
      margin-top: 15px;
      padding: 15px;
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
    }

    #showList img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    #showList .caption {
      font-weight: bold;
      font-size: 1.2rem;
    }

    #showList .text-muted {
      font-size: 0.9rem;
    }

    #openscrapbook {
      position: fixed;
      bottom: 70px;
      right: 20px;
      display: block;
      /* Initially hidden */
      padding: 10px 15px;
      font-size: 18px;
      border-radius: 50%;
      z-index: 1000;
    }
	#backToTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: none;
      /* Initially hidden */
      padding: 10px 15px;
      font-size: 18px;
      border-radius: 50%;
      z-index: 1000;
    }

    .location-card {
      max-width: 400px;
	  font-family: 'Ubuntu', sans-serif;
      border-left: 5px solid #007bff;
      /* Highlight border */
    }

    .title {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .text-muted {
      font-size: 1rem;
    }
	.headnavbar2 {
    position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%; height: 2%;
}
.avatar {

  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.avatar2 {
  width: 40px;
  height: 40px;
  border-radius: 80%;
}

.dpimage {
	width: 150px;
	height: 150px;
	border-radius: 80%;
	border: 2px dotted grey;
	float: left;
}

.profilearea	{
	top:30%;
	left:5%;
	position:absolute;
	z-index:1;
	width:100%;
	height:100%;
}.mychat {
  position: absolute;
  z-index: 9;
  background-color: #f1f1f1;
  border: 5px solid #d3d3d3;
  text-align: left;
  max-width: 300px;
  max-height: 400px;
  overflow-wrap: break-word;
  overflow: scroll;
  right: 20px;
  top: 200px;
}

.mychatheader {
  padding: 10px;
  cursor: move;
  z-index: 10;
  background-color: #2196F3;
  color: #fff;
}

@media all and (max-width: 499px) {
.mychat {
  position: fixed;
  z-index: 9;
  background-color: #f1f1f1;
  border: 5px solid #d3d3d3;
  text-align: left;
  max-width: 300px;
  max-height: 400px;
  overflow-wrap: break-word;
  overflow: scroll;
  right: 20px;
  top: 100px;
  display : none;
    }
.navs {
      flex: 0 0 auto;
      width: 140px;
      height: 160px;
      text-align: center;
      background: #fff;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .navs:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .navs img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .navs .caption {
      font-weight: 600;
      color: #555;
    }
}
.bottom-nav{
position:fixed;
bottom:0;
left:0;
width:100%;
background:white;
display:flex;
justify-content:space-around;
padding:12px 0;
box-shadow:0 -3px 15px rgba(0,0,0,.12);
}

.bottom-nav a{
text-decoration:none;
color:#1565C0;
font-size:14px;
text-align:center;
font-weight:600;
}