* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff !important;
}

a {
  text-decoration: none !important;
}

li {
  color: #000;
}

span {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

h1, h2, h3 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  text-align: start;
}

p {
  font-weight: 400;
  color: #000;
  text-align: start !important;
}
/* Sidebar */
.sidebar {
  width: 270px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: #111;
  overflow: hidden;
  margin-top: 80px;
}

.sidebar-menu {
  height: calc(100vh - 90px);
  overflow-y: auto;
  padding: 15px 10px;
  margin: 0;
  list-style: none;
}

/* Scrollbar */
.sidebar-menu::-webkit-scrollbar {
  width: 5px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: #FE7201;
  border-radius: 20px;
}

.sidebar-menu li {
  margin-bottom: 12px;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 5px 5px;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .05);
  transition: .45s;
}

.sidebar-menu li a{
  color: #fff !important;
}
.sidebar-menu li a i {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE7201, #FE7201);
  color: #000;
  font-size: 18px;
  transition: .5s;
  box-shadow: 0 0 15px rgba(255, 170, 0, .35);
}

.sidebar-menu li a::after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: skewX(-25deg);
  transition: .8s;
}

.sidebar-menu li a:hover::after {
  left: 150%;
}

.sidebar-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 5px;
  background: #FE7201;
  border-radius: 10px;
  transform: scaleY(0);
  transition: .35s;
}

.sidebar-menu li a:hover::before {
  transform: scaleY(1);
}

.sidebar-menu li a:hover {
  transform: translateX(10px);
  background: linear-gradient(90deg, rgba(255, 170, 0, .25), rgba(255, 170, 0, .08));
  box-shadow: 0 12px 25px rgba(255, 170, 0, .15);
}

.sidebar-menu li a:hover i {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 0 20px #FE7201;
}

.sidebar-menu li:first-child a {
  background: linear-gradient(90deg, #FE7201, #FE7201);
  color: #111;
  font-weight: 700;
}

.sidebar-menu li:first-child a i {
  background: #fff;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

.sidebar-menu li {
  animation: float 5s ease-in-out infinite;
}

.sidebar-menu li:nth-child(even) {
  animation-delay: .4s;
}

/* Mobile */
@media(max-width:768px) {
  .sidebar {
    width: 220px;
  }

}

.layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.main-content {
  margin-left: 280px;
  flex-grow: 1;
  overflow-y: auto;
}

/* header start */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(15, 15, 15, .95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 170, 0, .25);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .4);
}

.navbar {
  padding: 10px 0;
}
/* Logo */

.nav-logo {
  height: 48px;
  transition: .4s;
}

.nav-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px orange);
}

/* Menu */

.navbar-nav {
  gap: 10px;
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  padding: 10px 18px !important;
  border-radius: 30px;
  transition: .4s;
  position: relative;
  overflow: hidden;
}

/* Hover */

.nav-link:hover {
  background: linear-gradient(90deg, #FE7301, #FE7301);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 170, 0, .4);
}

/* Active */

.nav-link.active {
 background: linear-gradient(90deg, #FE7301, #FE7301);
  color: #fff;
}

/* Right */

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* WhatsApp */

.whatsapp {
  height: 38px;
  cursor: pointer;
  transition: .4s;
}

.whatsapp:hover {
  transform: rotate(12deg) scale(1.1);
}
/* Login */

.login-btn {
  background: linear-gradient(90deg, #005098, #005098);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: .4s;
}

.login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px #00e5ff;
}

/* Signup */

.signup-btn {
  background: linear-gradient(90deg, #ff9800, #FE7301);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: .4s;
}

.signup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px orange;
}

/* Mobile */

.navbar-toggler {
  border: none;
  color: #fff;
  font-size: 24px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media(max-width:991px) {
  .navbar-collapse {
    margin-top: 15px;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 15px;
  }

  .nav-right {
    margin-top: 15px;
    justify-content: center;
  }

  .navbar-nav {
    gap: 8px;
  }

}

.mobile-buttons {
  display: flex;
  gap: 6px;
}

.mobile-buttons .login-btn,
.mobile-buttons .signup-btn {
  padding: 6px 12px;
  font-size: 12px;
}

/* Desktop */
@media (min-width:992px) {
  .mobile-buttons {
    display: none;
  }
}

/* Mobile */
@media (max-width:991px) {

  .nav-right {
    display: none !important;
  }

  .navbar-toggler {
    color: #fff;
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .nav-logo {
    height: 28px;
  }
}

/* header end */
.dice {
  padding-top: 90px;
  padding-bottom: 30px;
}

.serve {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-weight: 700;
  font-size: 25px;
}

.serve::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #FE7201;
}

.serve::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  height: 3px;
  background: #FE7201;
  z-index: 1;
}

.swiper {
  width: 100%;
  padding: 10px;
  margin: auto;
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
}

/* Bottom fixed section */
.bottom-nav{
position:fixed;
left:0;
bottom:0;
width:100%;
height:70px;
background:rgba(12,12,12,.96);
backdrop-filter:blur(12px);
display:flex;
justify-content:space-around;
align-items:center;
border-top:2px solid #ff9800;
box-shadow:0 -8px 25px rgba(0,0,0,.45);
z-index:9999;
}
.bottom-nav span{
  color: #fff;
  font-size: 15px;
}

.bottom-nav a{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-decoration:none;
color:#ddd;
font-size:12px;
font-weight:500;
transition:.35s;
position:relative;
}

.bottom-nav a i{
font-size:22px;
margin-bottom:4px;
color:#FE7301;
transition:.35s;
}
/* Hover */

.bottom-nav a:hover{
transform:translateY(-5px);
color:#fff;
}

.bottom-nav a:hover i{
transform:scale(1.25);
text-shadow:0 0 12px orange;
}

.home-btn{
margin-top:-35px;
}

.home-circle{
width:62px;
height:62px;
border-radius:50%;
background:linear-gradient(90deg, #ff9800, #FE7301);
display:flex;
align-items:center;
justify-content:center;
box-shadow:
0 0 20px rgba(255,165,0,.45),
0 0 35px rgba(255,165,0,.25);
animation:pulse 2s infinite;
}

.home-circle i{
font-size:26px;
color:#111 !important;
margin:0;
}

.home-btn span{
margin-top:6px;
}

/* Pulse */

@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(255,165,0,.6);
}
70%{
box-shadow:0 0 0 18px rgba(255,165,0,0);
}
100%{
box-shadow:0 0 0 0 rgba(255,165,0,0);
}
}

/* Active */

.bottom-nav a.active{
color:#fff;
}

.bottom-nav a.active i{
color:#ffd54f;
}
/* Mobile */


/* Bottom fixed section */

@media only screen and (max-width: 476px) {
  .sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0px;
    padding: 0px;
    margin-top: 70px;
  }
  p {
    text-align: justify !important;
  }

  .faq-section {
    padding: 10px;
  }

  .dice {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .serve {
    font-size: 17px;
  }

  .faq-section {
    width: 100%;
    padding: 10px;
  }

  .popupContent p {
    margin: 0px !important;
  }
  .footer h4 {
    text-align: start;
  }
  .footer ul {
    text-align: start;
  }
  .footer h4::after {
        left: 10%;
        transform: translateX(-50%);
    }
}

/* desktop hide code */
@media(min-width:992px){
.bottom-nav{
display:none;
}
}

/* Overlay */
#popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popupBox {
  background: #000;
  width: 90%;
  max-width: 380px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  text-align: center;
  animation: zoomIn .4s ease;
}

/* Close Button */
.closeBtn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}

/* Logo */
.popupLogo img {
  max-width: 120px;
  margin-bottom: 15px;
}

/* Content */
.popupContent h3 {
  margin: 0;
  color: #FE7201;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
}

.popupContent p {
  font-size: 14px;
  color: #fff;
  margin: 10px 0 20px;
}

/* WhatsApp Button */
.whatsappBtn {
  display: inline-block;
  background: #25D366;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  color: #000 !important;
}

/* Animation */
@keyframes zoomIn {
  from {
    transform: scale(.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* faq start */
.faq-section {
  max-width: 1100px;
  margin: auto;
}
.faq-section h3{
  text-align: center !important;
}

.faq-item {
  background: #fff;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  background: #FE7201;
  color: #fff;
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 15px;
  color: #000;
  line-height: 1.6;
  background: #fff;
}

/* faq end */


/* footer */
.footer{
background:#0d0d0d;
padding:70px 0 25px;
border-top:3px solid #FE7201;
color:#fff;
}

.footer-logo{
width:170px;
margin-bottom:20px;
transition:.5s;
}

.footer-logo:hover{
transform:scale(1.08);
filter:drop-shadow(0 0 12px orange);
}

.footer-text{
color:#bdbdbd;
line-height:28px;
}

.footer h4{
color:#FE7201;
margin-bottom:20px;
font-weight:700;
position:relative;
}

.footer h4::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:40px;
height:3px;
background:#FE7201;
}

.footer ul{
padding:0;
margin:0;
list-style:none;
}

.footer ul li{
margin-bottom:12px;
}

.footer ul li a{
text-decoration:none;
color:#d9d9d9;
transition:.4s;
}

.footer ul li a:hover{
color:#FE7201;
padding-left:8px;
}

.footer p{
color:#ccc;
}

.footer p i{
color:#FE7201;
margin-right:8px;
}

.social-icons{
display:flex;
gap:12px;
margin-top:20px;
}

.social-icons a{
width:45px;
height:45px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
background:#1d1d1d;
color:#FE7201;
font-size:18px;
transition:.4s;
}

.social-icons a:hover{
background:#FE7201;
color:#111;
transform:translateY(-6px) rotate(360deg);
box-shadow:0 0 18px orange;
}

.footer-btn{
background:linear-gradient(90deg, #ff9800, #FE7301);
border:none;
padding:12px 28px;
border-radius:40px;
font-weight:600;
transition:.4s;
color: #fff;
}

.footer-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 18px orange;
}

.footer hr{
border-color:rgba(255,255,255,.1);
margin:40px 0 20px;
}

.copyright{
text-align:center;
color:#999;
font-size:14px;
}

@media(max-width:768px){
.footer{
text-align:center;
}

.footer h4::after{
left:5%;
transform:translateX(-50%);
}

.social-icons{
justify-content:center;
}
}
/* footer */

/* whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 5px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  text-decoration: none;

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
/* whatsapp */