body {
  font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  max-width: 100%;
}
html, body {
  overflow-x: hidden;
}
/* NAVBAR */
.custom-navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #cce4ff, #f5faff, #d6ebff);
}
/* HOVER EFFECT */
.btn-outline-primary:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #3A7BD5, #1E5FAF);
}
/* Hide by default (desktop) */
.company-name {
  display: none;
}
.logo-txt
{
  font-size: 24px;
}
/* Show only in mobile */
@media (max-width: 576px) {
  .logo-txt
{
  font-size: 14px;
}
  .company-name {
    display: block;
    font-size: 24px;        /* Bigger than quote */
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
     background: linear-gradient(90deg, #3A7BD5, #1E5FAF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }

  .hero-title {     /* Smaller than company name */
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }
}
/* ICON COLOR FIX */
.btn-outline-primary:hover i {
  color: #fff;
}
.gradient-text {
 background: linear-gradient(90deg, #3A7BD5, #1E5FAF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CARDS */
.custom-card {
  padding: 30px;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  transition: 0.4s;
  border: none;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.highlight {
  border: 2px solid  #1E5FAF;
}

/* CTA */
.cta {
background: linear-gradient(90deg, #3A7BD5, #1E5FAF);
  padding: 80px 0;
}
/* Mobile view fix */
@media (max-width: 991px) {
  .lang-switcher {
    margin: 10px auto !important;   /* center horizontally */
    display: block;
    width: 120px;                  /* keep it neat */
  }
}
/* CONTACT */
.contact-section {
  background: linear-gradient(135deg, #ffffff, #d9ecff);
}

.contact-card {
  background: rgba(255,255,255,0.85);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}
/* CONTACT INFO */
.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #4a4a4a;
}

.contact-info i {
  font-size: 18px;
}
/* Inputs */
.premium-input {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.premium-input:focus {
  border-color:  #1E5FAF;
  box-shadow: 0 0 12px rgba(51,153,255,0.4);
}

/* BUTTON */
.btn-primary {
background: linear-gradient(90deg, #3A7BD5, #1E5FAF);
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* FOOTER */
.footer {
background: linear-gradient(90deg, #3A7BD5, #1E5FAF);
  color: white;
  padding: 10px;
}

/* CLEAN SERVICES SECTION */
.services-clean {
  background: #e3ebf7;
  padding: 60px 0;
}

/* TITLE */
.service-title {
  font-size: 36px;
  color: #1a1a2e;
}

.service-subtitle {
  max-width: 600px;
  margin: auto;
  font-size: 15px;
  color: #6c757d;
}

/* BOX */
.service-box {
  padding: 25px 20px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 8px 0px;
  border-radius: 10px;
  height: 100%; /* important for equal height */
  text-align: left; /* better for content */
}

/* ICON */
.service-box .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.service-box .icon i {
  font-size: 30px;
}

/* TITLE */
.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a2e;
}

/* TEXT */
.service-box p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

/* LIST */
.service-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.service-box ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  list-style-type: disc;
}

/* HOVER */
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(51, 153, 255, 0.2);
  background: #ffffff;
}

/* WHY CHOOSE SECTION */
#services ul.list-unstyled li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-title {
    font-size: 28px;
  }

  .service-box {
    text-align: center;
  }

  .service-box ul {
    text-align: left;
  }
}

/* PRODUCT CARDS */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h5 {
  padding: 15px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
}
.whatsapp-btn,
.whatsapp-btn:hover,
.whatsapp-btn:focus,
.whatsapp-btn:active {
  text-decoration: none !important;
  outline: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}


/* IMAGE WRAPPER */
.overview-image-wrapper {
  position: relative;
}

/* IMAGE STYLE */
.overview-img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(5, 126, 247, 0.25);
  transition: 0.4s;
}

/* HOVER EFFECT */
.overview-img:hover {
  transform: scale(1.03);
}

/* OPTIONAL BACKGROUND GLOW */
.overview-image-wrapper::before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #127eea, #3c90e3);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5  ;
}


/* PRODUCT GRID IMPROVEMENT */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card h5 {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  padding: 12px;
  margin: 0;
  font-size: 16px;
  backdrop-filter: blur(4px);
}

.product-card img {
  height: 250px;
  transition: 0.4s;
}

.product-card:hover img {
  transform: scale(1.08);
}











/* WHY SECTION */
.why-section {
  background: linear-gradient(135deg, #ffffff, #f0f7ff);
}

/* LIST STYLE */
.why-list {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid  #1E5FAF;
}

/* ITEM */
.why-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 20px;
}

/* DOT */
.why-dot {
  position: absolute;
  left: -11px;
  top: 5px;
  width: 18px;
  height: 18px;
  background:  #1E5FAF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(51,153,255,0.5);
}

/* TITLE */
.why-item h5 {
  font-weight: 600;
  color: #0d1b3d;
}

/* TEXT */
.why-item p {
  margin: 5px 0 0;
  color: #6c757d;
  font-size: 14px;
}

/* HOVER EFFECT */
.why-item:hover {
  transform: translateX(5px);
  transition: 0.3s;
}


/* IMAGE STYLE */
.why-img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(51, 153, 255, 0.25);
  transition: 0.4s;
}

/* HOVER */
.why-img:hover {
  transform: scale(1.03);
}







.value-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.value-header h5 {
  margin: 0;
  font-weight: 600;
  color: #0d1b3d;
}

.value-header i {
  font-size: 22px;
}

.value-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* TEXT AREA */
.value-content {
  padding: 25px;
  text-align: left;
}

.value-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d1b3d;
}

.value-content p {
  font-size: 14px;
  color: #6c757d;
}

/* IMAGE */
.value-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* HOVER EFFECT */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(51, 153, 255, 0.2);
}













/* HERO BASE */
.hero-ultra {
  min-height: 100vh;
    overflow: hidden; 
  background: linear-gradient(135deg, #eaf4ff, #ffffff, #f5faff);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}

/* TITLE */
.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #0d1b3d;
}

.hero-title .bg {
  background: linear-gradient(90deg, #3399ff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.hero-text {
  font-size: 16px;
  color: #6c757d;
  max-width: 500px;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stats-wrapper {
  margin-top: 40px;
}

.target-label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero-stats h4 {
  color: #0066ff;
  font-weight: 700;
}

.hero-stats p {
  font-size: 13px;
  color: #6c757d;
}

/* IMAGE BOX */
.hero-image-box {
  position: relative;
}

.hero-img {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(51, 153, 255, 0.3);
  transition: 0.4s;
}

.hero-img:hover {
  transform: scale(1.04);
}

/* GLASS EFFECT */
.hero-image-box::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3399ff, #66b3ff);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.2;
}

/* FLOATING SHAPES */
.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #3399ff, #66b3ff);
  opacity: 0.15;
  animation: float 6s infinite ease-in-out;
}

.shape1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -50px;
}

.shape2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  right: -40px;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}








#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  display: none;
  z-index: 999;

  /* Center icon */
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

#backToTop i {
  font-size: 18px;
}

#backToTop:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 123, 255, 0.4);
}





/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* Tablets (<= 992px) */
@media (max-width: 992px) {

  .hero-title {
    font-size: 15px;
  }
  .navbar-nav {
    text-align: center;
    width: 100%;
  }

  .navbar-collapse {
    background: white;
    padding: 10px;
    border-radius: 10px;
  }

.navbar-brand
{
  font-size: 15px;
}
@media (max-width: 576px) {
  /* .navbar-brand span {
    display: none;  
  } */
}
  .hero-text {
    font-size: 14px;
  }

  .hero-stats {
    gap: 20px;
  }

  .service-title {
    font-size: 28px;
  }

  .custom-card {
    padding: 20px;
  }

  .contact-card {
    padding: 25px;
  }

  .product-card img {
    height: 200px;
  }

  .value-card img {
    height: 130px;
  }
}


/* Mobile (<= 768px) */
@media (max-width: 768px) {

  /* HERO */
  .hero-ultra {
    text-align: center;
    padding-top: 100px;
      overflow: hidden;
  }
.exp
{
  margin-top: 10px;
}
  .hero-title {
    font-size: 20px;
  }

  .hero-text {
    margin: auto;
  }

  .hero-stats {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .hero-image-box {
    margin-top: 30px;
  }

  /* SERVICES */
  .service-title {
    font-size: 24px;
  }

  .service-subtitle {
    font-size: 13px;
  }

  .service-box {
    margin-bottom: 15px;
  }

  /* CONTACT */
  .contact-section {
    /* text-align: cent er; */
  }

  .contact-card {
    padding: 20px;
  }

  .contact-info .info-item {
    /* justify-content: center; */
  }

  /* WHY SECTION */
  .why-list {
    border-left: none;
    padding-left: 0;
  }

  .why-item {
    padding-left: 0;
  }

  .why-dot {
    display: none;
  }

  /* PRODUCT */
  .product-card img {
    height: 180px;
  }

  /* VALUE */
  .value-card img {
    height: 120px;
  }

  /* BUTTONS */
  #backToTop {
    width: 45px;
    height: 45px;
  }

  .whatsapp-btn {
    font-size: 18px;
    padding: 10px 12px;
  }
}


/* Small Mobile (<= 480px) */
@media (max-width: 480px) {

  .hero-title {
    font-size: 20px;
  }

  .hero-text {
    font-size: 13px;
  }

  .service-title {
    font-size: 20px;
  }

  .product-card img {
    height: 150px;
  }

  .value-card img {
    height: 100px;
  }

  .custom-card {
    padding: 15px;
  }

  .contact-card {
    padding: 15px;
  }
}









/* FULL WIDTH BAND */
.product-band-full {
  width: 100%;
  background: #f8fafc;
  padding: 25px 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

/* TITLE */
.band-title {
  text-align: center;
  font-size: 15px;
  color: #6c757d;
  letter-spacing: 0.6px;
}

/* ROW */
.band-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ITEM */
.band-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
}

/* IMAGE */
.band-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eef3fb;
}

/* TEXT */
.band-item span {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
}

/* DIVIDER */
.band-divider {
  width: 1px;
  height: 45px;
  background: #e0e6ed;
}

/* HOVER */
.band-item:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .band-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px 5px;
  }

  .band-divider {
    display: none;
  }

  .band-item {
    flex: 0 0 auto;
  }

  .band-item img {
    width: 55px;
    height: 55px;
  }

  .band-item span {
    font-size: 14px;
  }
}