
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

/* BACKGROUND */
body{
  background: linear-gradient(135deg,#0f172a,#020617);
}

/* NAVBAR */
.navbar{
  position:fixed;
  width:100%;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:rgba(15,23,42,0.7);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.1);
  z-index:1000;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:28px;
  font-weight:600;
  cursor: pointer;
}

/* LOGO IMAGE (ONLY ONE BLOCK) */
.logo img{
  height:45px;
  width:auto;
  display:block;

  /* GLOW */
  filter: drop-shadow(0 0 6px rgba(0,255,200,0.5));
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor:pointer;
}

/* HOVER EFFECT ONLY ON IMAGE */
.logo img:hover{
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(0,255,200,1));
}

/* LINKS */
.nav-links{
  display:flex;
  list-style:none;
  gap:25px;
}

.nav-links li{
  position:relative;
}

/* LINK STYLE */
.nav-links a{
  text-decoration:none;
  color:#cbd5f5;
  padding:8px;
  display:block;
  position:relative;
  transition:0.3s;
}

/* UNDERLINE ANIMATION */
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:linear-gradient(to right,#00f2fe,#4facfe);
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:#fff;
}

/* DROPDOWN */
.dropdown{
  position:absolute;
  top:50px;
  left:0;
  background:rgba(30,41,59,0.95);
  backdrop-filter:blur(10px);
  border-radius:12px;
  padding:10px 0;
  min-width:220px;
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:0.3s ease;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

/* SHOW */
.nav-links li:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* DROPDOWN LINKS */
.dropdown a{
  padding:12px 20px;
  display:flex;
  gap:10px;
}

.dropdown a:hover{
  background:rgba(255,255,255,0.08);
  cursor:pointer;
}

/* navbar end */








/* sidebar */
/* SIDEBAR */
/* OVERLAY BLUR */
.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(5px);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:1500;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}


/* SIDEBAR */
.sidebar{
  position:fixed;
  top:0;
  left:-100%;
  width:260px;
  height:100%;
  background:#0f172a;
  padding:60px 20px;
  transition:0.4s ease;
  z-index:2000;
  overflow-y:auto;
}

.sidebar.active{
  left:0;
}

/* CLOSE */
.close-btn{
  position:absolute;
  top:15px;
  right:20px;
  font-size:22px;
  color:#fff;
  cursor:pointer;
}

/* LINKS */
.sidebar a{
  display:block;
  color:#cbd5f5;
  padding:12px;
  text-decoration:none;
}

/* DROPDOWN */
.side-title{
  color:#fff;
  padding:12px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
}

.side-content{
  max-height:0;
  overflow:hidden;
  transition:0.3s ease;
  padding-left:10px;
}

.side-dropdown.active .side-content{
  max-height:200px;
}
/* ARROW ROTATE */
.side-title i{
  transition:0.3s;
}

.side-dropdown.active .side-title i{
  transform:rotate(180deg);
}

/* ACTIVE LINK */
.sidebar a.active{
  background:rgba(79,172,254,0.2);
  color:#fff;
  border-left:3px solid #4facfe;
}
.sidebar{
  transition:0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.overlay{
  transition:0.3s ease-in-out;
}


/* sidebar */












/* video */
/* VIDEO CONTAINER */

/* VIDEO CONTAINER */
.video-container{
  position:relative;
  width:100vw;   /* FULL WIDTH FIX */
  height:100vh;
  overflow:hidden;
}

/* VIDEO */
.video-container video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;  /* VERY IMPORTANT */
}

/* DARK OVERLAY */
.video-container::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

/* CONTENT */
.video-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-align:center;
}

.video-content h1{
  font-size:50px;
  margin-bottom:10px;
}

.video-content p{
  font-size:18px;
  margin-bottom:20px;
}

/* BUTTON */
.btn{
  padding:12px 25px;
  background:linear-gradient(45deg,#00f2fe,#4facfe);
  color:#000;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.1);
}

/* video */




/* icon */
.chat-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-btn:hover {
    background: #20ba5a;
    transform: translateY(-3px);
}

/* Icon */
.chat-btn i {
    font-size: 22px;
}

/* Hidden initially (for scroll effect) */
.chat-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.chat-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* icon */
















/* carousel */
.carousel{
  width:90%;
  height:400px;
  margin:50px auto;
  position:relative;
  overflow:hidden;
  border-radius:15px;
  background:#ccc;
}

/* SLIDES */
.slides{
  display:flex;
  height:100%;
  transition:0.6s ease-in-out;
}

.slide{
  min-width:100%;
}

/* IMAGE */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:15px;
    filter: brightness(90%);
   transition: transform 5s ease;
}

.slide.active img {
  transform: scale(1.3);
}

/* ARROWS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  cursor: pointer;

  border-radius: 50%;
  z-index: 10; /* IMPORTANT */
}

.prev:hover, .next:hover{
  background:rgba(0,0,0,0.6);
}

.prev{ left:15px; }
.next{ right:15px; }

/* DOTS */
.dots{
  position:absolute;
  bottom:15px;
  width:100%;
  text-align:center;
}

.dots span{
  height:10px;
  width:10px;
  margin:5px;
  background:#ddd;
  border-radius:50%;
  display:inline-block;
  cursor:pointer;
  transition:0.3s;
}

.dots .active{
  background:#000;
}

/* carousel end */









/* mission */
/* BACKGROUND WITH PARALLAX FEEL */
.mission-section{
  position:relative;
  padding:120px 20px;
  text-align:center;
  color:#fff;

  background:url("/images/bg.jpg") center/cover fixed;
}

/* DARK + GRADIENT OVERLAY */
.mission-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(0,0,0,0.8),
    rgba(0,20,40,0.7)
  );
  backdrop-filter:blur(5px);
}

/* TITLE */
.title{
  position:relative;
  z-index:2;
  font-size:45px;
  margin-bottom:60px;
  text-shadow:0 0 20px rgba(0,255,255,0.5);
}

/* GRID */
.mission-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:50px;
  max-width:1100px;
  margin:auto;
}

/* GLASS CARD */
.glass-card{
  padding:40px;
  border-radius:25px;

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(15px);

  border:1px solid rgba(255,255,255,0.2);
  box-shadow:0 10px 40px rgba(0,0,0,0.5);

  transition:0.4s;
  transform-style:preserve-3d;
}

/* GLOW BORDER */
.glass-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:25px;
  padding:2px;
  /* background:linear-gradient(135deg,#00f2fe,#4facfe,#00ffcc); */
 
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ICON */
.icon{
  font-size:40px;
  color:#00f2fe;
  margin-bottom:15px;
}

/* TEXT */
.glass-card h2{
  font-size:26px;
  margin-bottom:10px;
}

.glass-card p{
  font-size:15px;
  opacity:0.9;
}

/* HOVER GLOW */
.glass-card:hover{
  box-shadow:0 20px 60px rgba(0,255,200,0.4);
}

/* mission */



















/* card  */
/* CARD CONTAINER */
.cardss{
  border:none;
  border-radius:20px;
  padding:50px 20px;
  margin:80px auto;
  max-width:1500px;
  text-align:center;
  font-weight:600;

  /* GLASS EFFECT */
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  box-shadow:0 10px 40px rgba(0,0,0,0.4);

  color:#fff;
}

/* GRADIENT BACKGROUND */
.gradient{
  background:linear-gradient(135deg,#00f2fe,#4facfe);
  color:#000;
}

/* TITLE */
.card-titless{
  font-size:40px;
  font-weight:700;
  margin-bottom:15px;
}

/* TEXT */
.card-textss{
  font-size:18px;
  margin-bottom:25px;
  opacity:0.9;
}

/* BUTTON */
.cardss .btn{
  padding:12px 30px;
  font-size:16px;
  border-radius:30px;
  border:none;
  background:#0f172a;
  color:#fff;
  transition:0.3s;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

/* BUTTON HOVER */
.cardss .btn:hover{
  transform:scale(1.1);
  background:#020617;
}

/* ICON */
.cardss i{
  font-size:14px;
}

.cardss:hover{
  box-shadow:0 0 10px rgba(0,255,200,0.5);
}
/* card end */





/* customer review */
.review-section {
  padding: 70px 20px;
  background-color: white;
  text-align: center;
}
h2.heading-2{
  color: #4e92f4;
}

.review-slider {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

/* FIXED */
.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* FIXED */
.review-card {
  min-width: calc(100% / 3);
  padding: 15px;
  box-sizing: border-box;
}

.review-card > div,
.review-card p {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.review-stars {
  color: #4facfe;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}



/* Buttons */
.btn-prev,
.btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #4facfe;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.btn-prev { left: 10px; }
.btn-next { right: 10px; }

/* Responsive */
@media (max-width: 900px) {
  .review-card {
    min-width: calc(100% / 2);
  }
}

@media (max-width: 600px) {
  .review-card {
    min-width: 100%;
  }
}
/* customer review */














/* icons */

/* Container to keep everything aligned on the right */
.floating-contact-wrap {
  position: fixed;
  bottom: 140px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px; /* Spacing between buttons */
  z-index: 1000;
}

/* Base style for all floating buttons */
.btn-float {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-float:hover {
  transform: scale(1.05);
  color: #fff; /* Keeps text white on hover */
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  /* ... your other styles ... */
}

/* Specific Colors */
.btn-phone {
  background-color: navy;
}

.btn-whatsapp {
  background-color: #25D366; /* Official WhatsApp green */
}

.btn-scroll {
  background-color: #333; /* Dark grey for scroll */
  width: 50px;  /* Making scroll button circular */
  height: 50px;
  padding: 0;
  align-self: flex-end; /* Align to the right of the stack */
}




/* icons end */








/* faq */


/* Section */
.faq-section {
  padding: 80px 20px;
  text-align: center;
  background:#020617;
  font-weight:600;

  background:#020617;
  backdrop-filter:blur(10px);
  box-shadow:0 10px 40px rgba(0,0,0,0.4);

}

/* Title Glow */
.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(0,255,200,0.5);
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Glass Card */
.faq-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s;
}

/* Hover Glow */
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,255,200,0.5);
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
}

/* Icon */
.icon {
  font-size: 22px;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #ddd;
  text-align: left;
  transition: all 0.4s ease;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

/* Rotate icon */
.faq-item.active .icon {
  transform: rotate(180deg);
}

/* faq */




/* service card */

.profile-img {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
  border: 4px solid #00d4ff;
}
.name-card{
  color: #00d4ff;
}
.service-card-btn{
 background:linear-gradient(135deg,#00f2fe,#4facfe);
}
.service-card-btn a{
  text-decoration: none;
  color:  #020617;
  font-size: 20px;
}

/* service card end*/





/* scrollbar */

/* Scrollbar width */

/* Truck container */
.truck-container {
  position: fixed;
  right: 5px; /* near scrollbar */
  top: 0;
  z-index: 9999;
  pointer-events: none;
}

/* Truck body */
.truck {
  width: 40px;
  height: 60px;
  position: relative;
  transform-origin: center center;
}

/* Truck cab/body */
.truck-body {
  width: 100%;
  height: 35px;
  background: #ff5722;
  border-radius: 5px;
  position: absolute;
  top: 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

/* Wheels */
.wheel {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
}

.wheel1 { left: 5px; }
.wheel2 { right: 5px; }

/* Spin animation placeholder */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Road effect next to scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: repeating-linear-gradient(
    to bottom,
    #2c2c2c 0px,
    #2c2c2c 20px,
    #ffffff 20px,
    #ffffff 30px
  );
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #ff5722;
  border-radius: 10px;
  border: 3px solid #2c2c2c;
}

::-webkit-scrollbar-thumb:hover {
  background: #e64a19;
}


/* scrollbar */




/* social media */

.card-containers {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding:50px 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:30px;
}

.qr-card {
  height: 340px;
  
  overflow: hidden;
  background: #fff;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  cursor: pointer;
}

.qr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effect */
.qr-card:hover {
  
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* social media */






/* contact card */


/* FULL WIDTH SECTION */
.contact-cards {
  margin-top: 20px;
  width: 100%;
  min-height: 550px;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
   background:#020617;
   font-weight:100;
}

/* WRAPPER */
.cards-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.card {
  width: 300px;
  height: 380px;
  perspective: 1000px;
}

/* INNER FLIP */
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: 0.8s;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 25px;
  backface-visibility: hidden;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: center;
  color: white;
}

/* FRONT */
.card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* PROFILE IMAGE */
.profile {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid rgba(255,255,255,0.5);
}

/* NAME */
.card-front h3 {
  margin: 10px 0;
  font-size: 22px;
  letter-spacing: 1px;
}

/* TEXT */
.card-front p {
  font-size: 14px;
  opacity: 0.8;
}

/* BACK */
.card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SOCIAL LINKS */
.socialss {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.socialss a {
  text-decoration: none;
  background: linear-gradient(45deg, #ff7eb3, #ff758c);
  padding: 10px;
  border-radius: 25px;
  color: white;
  transition: 0.3s;
}

.socialss a:hover {
  transform: scale(1.1);
}



/*contact card  */

















/* footer */
/* FOOTER */
.footer{
  background: linear-gradient(135deg,#020617,#0f172a);
  color:#fff;
  padding:60px 20px 20px;
  font-weight:600;
}

/* GRID */
.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* BOX */
.footer-box{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  padding:20px;
  border-radius:15px;
  transition:0.3s;
}

.footer-box:hover{
  transform:translateY(-5px);
}

/* HEADINGS */
.footer-box h3{
  margin-bottom:15px;
  color:#00f2fe;
}

/* TEXT */
.footer-box p{
  font-size:14px;
  margin:10px 0;
  line-height:1.5;
}

/* MAP */
.footer-box iframe{
  width:100%;
  height:200px;
  border-radius:10px;
  border:none;
}

/* LINKS */
.footer-box a{
  color:#cbd5f5;
  text-decoration:none;
}

.footer-box a:hover{
  color:#00f2fe;
}

/* FOOTER LAYOUT */
.footer{
  background:#020617;
  color:#fff;
  padding:50px 20px 20px;
}

.footer-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:30px;
}

/* BOX */
.footer-box{
  flex:1 1 300px;
}

/* MAP */
.footer-box iframe{
  width:100%;
  border-radius:10px;
}

/* TEXT */
.footer-box p{
  margin:10px 0;
  line-height:1.6;
}

.footer-box a{
  color:#fff;
  text-decoration:none;
}

.footer-box a:hover{
  color:#00f2fe;
}

/* BUTTON STACK */
.footer-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-btn{
  display:block;
  width:100%;
  padding:12px;
  text-align:center;
  border-radius:8px;

  background:linear-gradient(135deg,#00f2fe,#4facfe);
  color:#000;
  font-weight:600;

  transition:0.3s;
}

/* HOVER */
.footer-btn:hover{
  transform:translateX(5px);
  background:linear-gradient(135deg,#4facfe,#00f2fe);
}

/* BOTTOM */
.footer-bottom{
  margin-top:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
}

/* SOCIAL */
.socials a{
  margin-left:10px;
  font-size:18px;
  color:#fff;
  transition:0.3s;
}

.socials a:hover{
  color:#00f2fe;
  transform:scale(1.2);
}
/* BUTTON */
button{
  width:100%;
  padding:12px;
  border:none;
  border-radius:25px;
  background:linear-gradient(45deg,#00f2fe,#4facfe);
  color:#000;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  transform:scale(1.05);
}

/* BOTTOM */
.footer-bottom{
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

/* SOCIAL */
.socials a{
  margin-right:10px;
  font-size:18px;
  color:#fff;
  transition:0.3s;
}

.socials a:hover{
  color:#00f2fe;
}

/* footer end */
