
/* GENERAL */
body { font-family: 'Segoe UI', sans-serif; }
.section { padding: 80px 0; }

/* NAVBAR */

/* Default (desktop) */
.navbar-brand img {
  max-height: 50px;
}

/* Mobile view */
@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 35px;
  }
}

/* TOP BAR */
.top-bar {
  background: #0b1c4d; /* deep blue */
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar i {
  margin-right: 5px;
}

/* QUOTE BUTTON */
.quote-btn {
  background: #ff3c00;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: 500;
}

.quote-btn:hover {
  background: #e63200;
}

#navbar { transition: 0.4s; }
/*.navbar-transparent { background: transparent; }*/
.navbar-transparent {
  background: rgba(255, 255, 255, 0.8); /* 👈 transparency */
  margin-top: 40px;
}
.navbar-scrolled { background: #ffffff; box-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.nav-link { color: rgb(0, 0, 0) !important; margin-left: 15px; }
.navbar-brand img {
  max-height: 50px;
}

/* MOBILE MENU FIX */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
  }

  .navbar-nav .nav-link {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
}


/* HERO */
.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.overlay {
  background: rgba(0,0,0,0.2);
  height: 100%;
  display: flex;
  align-items: flex-start;   /* 👈 move content UP */
  padding-top: 120px;
  color: white;

}
/* HERO TEXT */
.hero-text h1 {
  font-size: 50px;   /* change this */
  font-weight: 700;
}

.hero-text p {
  font-size: 18px;   /* change this */
}


/* ABOUT STYLE (YOUR IMAGE STYLE) */
.about-style { background: #f8f9fa; }

.about-style h2 {
  font-size: 36px;
  color: #0b2c5f;
}

.experience-box {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #ff3c00;
  color: white;
  padding: 20px;
  text-align: center;
}

/* CARDS */
.card { border: none; transition: 0.3s; }
.card:hover { transform: translateY(-10px); }

/* ICONS */
.icon-box i {
  font-size: 35px;
  color: #0d6efd;
}

/* CTA */
.cta { background: #111; color: white; text-align: center; }


/* MISSION SECTION */
.mission-section {
  background: linear-gradient(135deg, #ff8c00, #cc5200);
  color: white;
  padding: 70px 0;
}

/* TEXT */
.mission-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
}


/* FOOTER */
footer {
  background: #0a022c;
  color: white;
  padding: 30px;
}

/* SOCIAL */
.social-icon {
  margin: 0 10px;
  font-size: 45px;
  color: white;
}

/* FLOAT BUTTONS */
.float-btn {
  position: fixed;
  right: 20px;
  z-index: 999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.top-btn { bottom: 20px; background: #0d6efd; display:none;}
.whatsapp-btn { bottom: 80px; background:#25D366;}
.call-btn { bottom:140px; background:#dc3545;}

/*---ABOUT US---*/
./* ===== ABOUT PAGE ONLY CSS ===== */

/* HERO SECTION */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('hero.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

/* MAIN CONTENT */
.about-content {
  padding: 70px 0;
}

.about-content h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: #f8f9fa;
  padding: 25px;
  border-left: 5px solid #ff3c00;
  margin-top: 20px;
}

/* STATS */
.about-stats {
  margin-top: 40px;
}

.about-stats h1 {
  color: #ff3c00;
  font-weight: 700;
}

/* PRODUCT IMAGE CARDS */
.product-card {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.product-overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  width: 100%;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

/* HOVER EFFECT */
.product-card:hover .product-overlay {
  background: rgba(0,0,0,0.8);
}

/* TEXT */
.product-overlay h5 {
  font-size: 20px;
  font-weight: 600;
}

.product-overlay p {
  font-size: 14px;
}

/* PARALLAX SECTION */
.industries-parallax {
  background-image: url(image/B1.webp); /* change image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 👈 PARALLAX MAGIC */
  height: 300px;
  position: relative;
}

/* DARK OVERLAY */
.industries-parallax .overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  align-items: center;
}

/* TEXT */
.industries-parallax h2 {
  font-size: 36px;
  font-weight: 700;
}

.industries-parallax p {
  font-size: 18px;
}


/*footer*/
.designer {
  color: #ff3c00;
  font-weight: 500;
}

.designer:hover {
  text-decoration: underline;
}

/*PRODUCT PAGE*/

<style>

/* PRODUCT PAGE ONLY */

/* HERO */
.product-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('image/hero1.jpg');
  background-size: cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}

/* PRODUCT CARDS */
.product-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-box:hover {
  transform: translateY(-8px);
}

/* NUMBER */
.product-number {
  font-size: 22px;
  font-weight: bold;
  color: #ff3c00;
}

/* TITLE */
.product-title {
  font-weight: 600;
  margin-top: 10px;
}

/* TEXT */
.product-desc {
  font-size: 14px;
  color: #555;
}

.section {
  padding: 70px 0;
}

/* PRODUCT BOX */
.product-box {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.product-img {
  width: 40%;
  height: 250px;
  
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.product-content {
  padding: 15px;
  width: 60%;
}

/* NUMBER */
.product-number {
  color: #ff3c00;
  font-weight: bold;
}

/* TITLE */
.product-title {
  font-weight: 600;
}

/* TEXT */
.product-desc {
  font-size: 18px;
  color: #555;
}

/* SEE MORE BUTTON */
.see-more-btn {
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 25px;
}

.see-more-btn:hover {
  background: #0b5ed7;
}


/* DEAL SECTION */
.deal-section {
  background: linear-gradient(135deg, #ff8c00, #cc5200);
  color: white;
  padding: 70px 0;
}

/* BOX */
.deal-box {
  margin-top: 20px;
}

/* ITEM */
.deal-item {
  margin-bottom: 25px;
}

/* TITLE */
.deal-item h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.deal-item p {
  font-size: 15px;
  line-height: 1.7;
}


/*-----MOBILE VERSION-----*/

 /*FIX NAVBAR MOBILE DESIGN*/
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .navbar-nav .nav-link {
    padding: 12px;
    border-bottom: 1px solid #eee;
  }
}

/*FIX HERO TEXT (MOST IMPORTANT)*/

@media (max-width: 768px) {

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 14px;
  }

  .overlay {
    padding-top: 80px;
  }

  .carousel-item {
    height: 70vh;
  }

}
/*FIX PRODUCT CARDS*/

@media (max-width: 768px) {

  .product-card {
    height: 180px;
  }

  .product-overlay h5 {
    font-size: 16px;
  }

  .product-overlay p {
    font-size: 12px;
  }

}

/*FIX FLOAT BUTTONS (IMPORTANT)*/

@media (max-width: 768px) {

  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .whatsapp-btn {
    bottom: 80px;
  }

  .call-btn {
    bottom: 140px;
  }

}

/*FIX GENERAL SPACING*/

@media (max-width: 768px) {

  .section {
    padding: 50px 0;
  }

  h2 {
    font-size: 24px;
  }

}
/*BONUS (SUPER IMPORTANT FIX)*/
img {
  max-width: 100%;
  height: auto;
}

/*PRODUCT PAGE FOR MOBILE*/
@media (max-width: 768px) {

  .product-box {
    flex-direction: column !important; /* 👈 force vertical */
  }

  .product-img {
    width: 100%;
    height: 200px;
  }

  .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-content {
    width: 100%;
    padding: 15px;
  }

}

@media (max-width: 768px) {
  .product-box {
    margin-bottom: 20px;
  }
}

/*-----CONTACT US PAGE---*/


/* CONTACT PAGE ONLY */

.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('image/hero1.jpg');
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-box h5 {
  font-weight: 600;
}

.contact-info i {
  color: #ff3c00;
  margin-right: 8px;
}

.section {
  padding: 70px 0;
}

.map-section iframe {
  border-radius: 10px;
}





@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .overlay {
    padding-top: 80px;
  }
}