/* ===== GLOBAL ===== */
body{
    font-family:"Segoe UI", sans-serif;
    color:#212529;
}

/* ===== TOP BAR ===== */
.top-bar{
  background:#0a1930;
  color:#fff;
  font-size:14px;
  padding:8px 0;
}

.top-bar i{
  color:#ffd369;
  margin-right:6px;
}

.iso-badge{
  font-weight:600;
  letter-spacing:.5px;
}

.top-contact{
  margin-right:10px;
}

/* Mobile spacing */
@media(max-width:768px){
  .top-bar .btn{
    margin-top:8px;
  }
}

/* Sticky Navbar Effect */
.nav-shadow{
  box-shadow:0 6px 25px rgba(0,0,0,.35);
  animation:slideDown .4s ease;
}

@keyframes slideDown{
  from{transform:translateY(-100%);}
  to{transform:translateY(0);}
}

/* WhatsApp Button */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25d366;
  color:#fff;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  z-index:999;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
  transition:.3s;
  text-decoration:none;
}

.whatsapp-float:hover{
  transform:scale(1.1);
  color:#fff;
}


/* ===== NAVBAR ===== */
.custom-nav{
    background:#ffffff!important;
    box-shadow:0 4px 15px rgba(0,0,0,.3);
}
/*.navbar-brand span{color:#0d6efd}*/
.nav-link{font-weight:500;margin-left:15px}
.nav-link:hover{color:#0d6efd!important}

/* ===============================
   BRAND WRAPPER (LOGO + TEXT)
================================= */

.brand-wrapper{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}

/* ===============================
   SHINE EFFECT
================================= */

.brand-wrapper::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:40%;
  height:100%;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0) 100%
  );
  transform:skewX(-20deg);
  animation:shine 4s infinite;
  pointer-events:none;
}

@keyframes shine{
  0%{ left:-100%; }
  100%{ left:150%; }
}

/* ===============================
   LOGO
================================= */

.site-logo{
  height:60px;
  width:auto;
  transition:all 0.3s ease;
}

/* ===============================
   BRAND TEXT (DESKTOP)
================================= */

.brand-text{
  font-size:18px;
  font-weight:700;
  color:#082b61;
  line-height:1.2;
  transition:all 0.3s ease;
}

/* ===============================
   SHRINK ON SCROLL
================================= */

.nav-shadow .site-logo{
  height:45px;
}

.nav-shadow .brand-text{
  font-size:16px;
}

/* ===============================
   TABLET
================================= */

@media (max-width: 991px){
  .site-logo{
    height:48px;
  }

  .brand-text{
    display:none;
  }
}

/* ===============================
   MOBILE
================================= */

@media (max-width: 576px){
  .site-logo{
    height:40px;
  }
}

/* ===== HERO ===== */
.hero-slide{
  height:90vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-slide .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(11,44,85,0.75),
    rgba(11,44,85,0.85)
  );
}

.hero-content{
  position:relative;
  max-width:700px;
  color:#fff;
}

.hero-content h1{
  font-size:48px;
  font-weight:800;
}

.hero-content p{
  font-size:18px;
  margin:15px 0 25px;
}

/* Mobile */
@media(max-width:768px){
  .hero-slide{ height:75vh; }
  .hero-content h1{ font-size:30px; }
}


/* ===== SECTIONS ===== */
.section{padding:60px 0}
.section-title{font-weight:700;margin-bottom:30px}

/* ===== BOXES ===== */
.info-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}
.service-box{
    background:#fff;
    padding:28px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}
.service-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(13,110,253,.15);
}
.service-box i{
    font-size:38px;
    color:#0d6efd;
    margin-bottom:12px;
}

/* ===== STATS ===== */
.stats{
    background:linear-gradient(120deg,#0d6efd,#084298);
    color:#fff;
    padding:55px 0;
}

/* ===== TESTIMONIAL ===== 
.testimonial{
    background:#fff;
    padding:28px;
    border-radius:10px;
    border-left:4px solid #0d6efd;
}*/

/* ===== CTA ===== */
.cta{
    background:linear-gradient(120deg,#0b1c2d,#132f4c);
    color:#fff;
    padding:65px 0;
}

/* ===== FOOTER ===== */
.footer{
  background:#0b2c55;
  color:#fff;
  padding:20px 0;
  font-size:14px;
}

.footer a{
  color:#ffc107;
  text-decoration:none;
  font-weight:600;
}

.footer a:hover{
  text-decoration:underline;
}


/* ===== SCROLL ANIMATION ===== */
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}
.reveal.active{
    opacity:1;
    transform:none;
}


/* ===== TESTIMONIALS ===== */
/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-box{
  background:#fff;
  padding:45px 40px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.1);
  position:relative;
}

.testimonial-box p{
  font-size:16px;
  line-height:1.7;
  font-style:italic;
}

.testimonial-box h6{
  margin-top:20px;
  font-weight:700;
}

.testimonial-box span{
  font-size:14px;
  color:#666;
}

/* ===== FIXED QUOTE ICON ===== */
.testimonial-box{
  position:relative;
  overflow:visible; /* IMPORTANT */
}

.quote-icon{
  position:absolute;
  top:0px;
  left:10%;
  transform:translateX(-50%);
  background:#1f3c88;
  color:#fff;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  z-index:2;
}


/* Carousel arrows styling */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter:invert(1);
}


/*
.quote-icon{
    position:absolute;
    top:-18px;
    left:25px;
    background:#0d6efd;
    color:#fff;
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}
*/

.industry-box{
    background:#fff;
    padding:30px 20px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}
.industry-box i{
    font-size:36px;
    color:#0d6efd;
    margin-bottom:10px;
}
.industry-box:hover{
    transform:translateY(-5px);
}

/* ===== PROCESS SECTION ===== */
.process-section{
  background:#fff;
}

.process-box{
  background:#ffffff;
  padding:40px 25px 30px;
  border-radius:18px;
  text-align:center;
  height:100%;
  position:relative;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  transition:.35s ease;
}

.process-box:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 50px rgba(31,60,136,.18);
}

/* Number circle */
.process-step{
  width:60px;
  height:60px;
  background:linear-gradient(135deg,#1f3c88,#0a1930);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:700;
  margin:0 auto 18px;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.process-box h6{
  font-weight:700;
  margin-bottom:10px;
  color:#0a1930;
}

.process-box p{
  font-size:14.5px;
  color:#555;
  line-height:1.6;
}

.trust-list{
    list-style:none;
    padding-left:0;
}
.trust-list li{
    padding:10px 0;
    font-size:16px;
}

/* ========== GLOBAL RESET ========== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Segoe UI', sans-serif;
  padding-top:0 !important;
  overflow-x:hidden;
}

/* ========== NAVBAR ========== */
.custom-nav{
  background:rgba(10,25,47,0.95);
  box-shadow:0 4px 15px rgba(0,0,0,.25);
}

.navbar-brand{
  font-weight:700;
  letter-spacing:1px;
}

.navbar-nav .nav-link{
  color:#000 !important;
  margin-left:15px;
  transition:.3s;
}

.navbar-nav .nav-link:hover{
  color:#ffd369 !important;
}

/* ========== HERO SLIDER ========== */
#heroSlider{
  margin-top:0 !important;
}

.hero-slide{
  min-height:100vh;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(rgba(10,25,47,.75),rgba(10,25,47,.75)),
    url('assets/img/hero.jpg') center/cover no-repeat;
}

.hero-alt{
  background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('assets/img/hero2.jpg') center/cover no-repeat;
}

.hero-slide h1{
  font-size:3rem;
  font-weight:700;
}

/* ========== SECTIONS ========== */
.section{
  padding:80px 0;
}

.section-title{
  font-weight:700;
  margin-bottom:40px;
  color:#0a1930;
}

.bg-light{
  background:#f8f9fa !important;
}

/* ========== SERVICES ========== */
.service-box{
  background:#fff;
  padding:30px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  transition:.3s;
}

.service-box:hover{
  transform:translateY(-10px);
}

.service-box i{
  font-size:40px;
  color:#1f3c88;
  margin-bottom:15px;
}

/* ========== STATS ========== */
.stats{
  background:linear-gradient(135deg,#0a1930,#1f3c88);
  color:#fff;
}

.stat-box{
  padding:30px;
  border-radius:15px;
  background:rgba(255,255,255,.1);
  transition:.3s;
}

.stat-box:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.18);
}

.stat-box i{
  font-size:35px;
  color:#ffd369;
  margin-bottom:10px;
}

.stat-box h2{
  font-weight:700;
}

/* ========== TESTIMONIALS ========== 


.quote-icon{
  position:absolute;
  top:-15px;
  left:20px;
  font-size:30px;
  color:#1f3c88;
}
*/
/* ========== INDUSTRY / PROCESS ========== */
/* INDUSTRY SECTION */
.industry-box {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient glow effect */
.industry-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

/* Icon */
.industry-box i {
  font-size: 46px;
  color: #0d6efd;
  margin-bottom: 15px;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}

/* Title */
.industry-box h6 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}

/* Hover effects */
.industry-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.3);
}

.industry-box:hover::before {
  opacity: 1;
}

.industry-box:hover i,
.industry-box:hover h6 {
  color: #ffffff;
}

/* Icon bounce animation */
.industry-box:hover i {
  transform: rotate(-5deg) scale(1.15);
}

/* Mobile spacing */
@media (max-width: 576px) {
  .industry-box {
    padding: 30px 15px;
  }
}

/* ABOUT SECTION */
.about-section {
  position: relative;
}

.about-tag {
  display: inline-block;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* INFO BOX */
.fancy-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.fancy-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  opacity: 0.08;
}

.fancy-box h5 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

/* FEATURES */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 15px;
  margin-bottom: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.feature-list i {
  color: #0d6efd;
  font-size: 18px;
}

/* Hover effect */
.fancy-box:hover {
  transform: translateY(-6px);
  transition: 0.4s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .about-text {
    font-size: 15px;
  }
}


/* ========== CTA ========== */
.cta{
  background:linear-gradient(135deg,#1f3c88,#0a1930);
  color:#fff;
  padding:80px 0;
}

/* ========== SCROLL REVEAL ========== */
.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:all .9s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ===== TRUST SECTION ===== */
.trust-box{
  background:#fff;
  padding:35px 25px;
  border-radius:16px;
  text-align:center;
  height:100%;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.35s ease;
}

.trust-box:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 45px rgba(31,60,136,.18);
}

.trust-box i{
  font-size:38px;
  color:#1f3c88;
  margin-bottom:15px;
}

.trust-box h6{
  font-weight:700;
  margin-bottom:10px;
  color:#0a1930;
}

.trust-box p{
  font-size:14.5px;
  color:#555;
  line-height:1.6;
}

/* Dropdown Styling */
.dropdown-menu{
  border:none;
  border-radius:8px;
  padding:10px 0;
}

.dropdown-item{
  padding:8px 18px;
  font-weight:500;
  transition:0.3s;
}

.dropdown-item:hover{
  background:#1f3c88;
  color:#fff;
}

.contact-card{
  background:#ffffff;
  padding:35px;
  border-radius:15px;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.contact-card h5{
  font-weight:700;
  color:#0b2c55;
}

.contact-card a{
  text-decoration:none;
}

.contact-card i{
  color:#0d6efd;
}

.contact_add p a{text-decoration:none!important;}

.about-page {
    background: #f9fafc;
}

.main-title {
    font-size: 32px;
    letter-spacing: 1px;
}

.subtitle {
    color: #555;
    font-size: 16px;
}

.title-line {
    width: 80px;
    height: 3px;
    background: #0d6efd;
    border: none;
}

.section-heading {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-heading::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin-top: 8px;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.custom-list li::before {
    content: "✔";
    color: #0d6efd;
    position: absolute;
    left: 0;
}

.modal-backdrop.show {
    backdrop-filter: blur(6px);
    background-color: rgba(0,0,0,0.7) !important;
}

.custom-img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 992px) {
  .custom-img {
    width: 70%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .custom-img {
    width: 95%;
  }
}

.service-link{
  text-decoration:none;
  color:inherit;
}

.service-box{
  background:#fff;
  border-radius:12px;
  padding:20px;
  text-align:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
  height:100%;
}

.service-box:hover{
  transform:translateY(-8px);
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.service-img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:15px;
}

.service-box h5{
  font-weight:600;
  color:#082b61;
  margin-bottom:10px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Image Box */
.img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* Responsive Heights */
@media (max-width: 991px){
  .img-box { height: 160px; }
}

@media (max-width: 576px){
  .img-box { height: 140px; }
}