* GLOBAL */
:root{
  --primary:#53449b;
  --secondary:#2f2f33;
}

body{
  font-family: Arial, sans-serif;
  padding-top:110px;
}

/* NAVBAR */


/* TOP BAR */

/* TOP BAR */
.top-bar{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050; /* higher than navbar */
  background: var(--secondary);
  color:#fff;
  font-size:13px;
  padding:6px 0;
}

/* NAVBAR BELOW TOP BAR */
.nav-new{
  position: fixed;
  top: 32px; /* height of top bar */
  width: 100%;
  z-index: 1040;
  background:#fff;
}

/* BODY OFFSET */



.top-right a{
  color:#fff;
  margin-left:12px;
  font-size:14px;
  transition:.3s;
}

.top-right a:hover{
  color:var(--primary);
}

/* NAVBAR FIX POSITION */


/* BODY OFFSET */
body{
  padding-top:110px;
}

/* NAV LINKS */
.nav-new .nav-link{
  font-weight:600;
  color:var(--secondary);
  margin:0 8px;
  text-transform:uppercase;
  font-size:14px;
}

.nav-new .nav-link:hover{
  color:var(--primary);
}

/* CTA BUTTON */
.nav-btn{
  background:#53449b;
  color:#fff !important;
  padding:7px 18px;
  border-radius:20px;
  font-weight:600;
}

.nav-btn:hover{
  background:var(--secondary);
  color:#fff !important;
}







/* ABOUT */
.about{
  padding:80px 0;
}

.about-box{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* SERVICES */

/* SERVICES PREMIUM */
.services-premium{
  background:#53449b;
  padding:90px 0;
}

/* TITLE */
.services-premium .title{
  font-weight:800;
}

/* BOX */
.service-box{
  background:#fff;
  padding:30px 25px;
  border-radius:16px;
  text-align:center;
  height:100%;
  border:1px solid rgba(0,0,0,0.05);
  transition:all .3s ease;
}

/* ICON */
.service-box i{
  font-size:42px;
  color:#53449b;
  margin-bottom:15px;
}

/* TITLE */
.service-box h5{
  font-weight:700;
  margin-bottom:10px;
  color:#2f2f33;
}

/* TEXT */
.service-box p{
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* HOVER EFFECT */
.service-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,.15);
}







/* WHY */
.why{
  background:var(--secondary);
  color:#fff;
  padding:80px 0;
}

.why-box i{
  font-size:35px;
  margin-bottom:10px;
}

/* CONTACT */
.contact{
  padding:80px 0;
}

.contact-box{
  background:var(--primary);
  color:#fff;
  padding:30px;
  border-radius:10px;
}

/* FOOTER */


/* FOOTER */
.footer-main{
  background: #53449b;
  color:#fff;
  padding:70px 0 30px;
}

/* LOGO */
.footer-logo{
  max-width:180px;
}

/* TEXT */
.footer-text{
  font-size:14px;
  line-height:1.7;
  color:#ddd;
}

/* TITLE */
.footer-title{
  font-weight:700;
  margin-bottom:20px;
}

/* LINKS */
/* INLINE LINKS (HORIZONTAL) */
.footer-links-inline{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

.footer-links-inline a{
  color:#ddd;
  font-size:14px;
  text-decoration:none;
  position:relative;
  padding-bottom:4px;
  transition:0.3s;
}

/* UNDERLINE HOVER EFFECT */
.footer-links-inline a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:#fff;
  transition:0.3s;
}

.footer-links-inline a:hover{
  color:#fff;
}

.footer-links-inline a:hover::after{
  width:100%;
}

/* FORM */
.footer-form .form-control{
  border-radius:6px;
  border:none;
  height:45px;
}

.footer-form .btn{
  font-weight:600;
  border-radius:6px;
}

/* LINE */
.footer-line{
  border-color:rgba(255,255,255,0.2);
  margin:30px 0;
}

/* BOTTOM */
.footer-bottom{
  font-size:13px;
  color:#ccc;
}





/* TOP BUTTON */
#topBtn{
  position:fixed;
  bottom:20px;
  right:20px;
  background:var(--primary);
  color:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  display:none;
}



/* INDUSTRIES */
.industries{
  padding:90px 0;
  background:#f7f8fc;
}

/* TITLE */
.title{
  font-weight:800;
  color:var(--secondary);
}

.sub-title{
  color:#666;
  max-width:600px;
  margin:auto;
}

/* BOX */
.industry-box{
  background:#fff;
  padding:30px 20px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  transition:.3s;
  height:100%;
}

/* ICON */
.industry-box i{
  font-size:38px;
  color:#53449b;
  margin-bottom:15px;
}

/* TITLE */
.industry-box h6{
  font-weight:700;
  margin-bottom:10px;
  color:var(--secondary);
}

/* TEXT */
.industry-box p{
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* HOVER */
.industry-box:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}




/* HERO BACKGROUND */
.hero-advanced{
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: url("images/banner.jpg") center/cover no-repeat; /* YOU CHANGE IMAGE */
}



.hero-advanced{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: url("images/banner.jpg") center/cover no-repeat;
}

/* OVERLAY (IMPORTANT) */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(47,47,51,0.95),
    rgba(83,68,155,0.85),
    rgba(0,0,0,0.7)
  );
}

/* CONTENT */
.hero-content{
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

.hero-content h1{
  font-size: 50px;
  font-weight: 800;
}

.hero-content p{
  margin-top: 15px;
  color: #ddd;
}

/* BUTTON */
.hero-btn{
  background: #fff;
  color: #53449b;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
}

/* MARQUEE POSITION */
.hero-marquee{
  position: absolute;
  bottom: 150px; /* 👈 moved up */
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.marquee-track{
  display: flex;
  animation: scrollMarquee 18s linear infinite;
}

/* BOX DESIGN (REDUCED HEIGHT) */
.marquee-box{
  background: rgba(255,255,255,0.08);
  color: #fff;

  padding: 28px 38px;   /* 👈 reduced */
  margin-right: 12px;

  border-radius: 8px;
  font-size: 16px;     /* 👈 smaller text */
	font-weight: 600;

  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);

  white-space: nowrap;
}

/* ANIMATION */
@keyframes scrollMarquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.site-logo{
  max-height: 60px;
  width: auto;
}

@media (max-width:768px){
  .site-logo{
    max-height: 45px;
  }
}



/* ABOUT SECTION */
.about{
  padding:100px 0;
  background:#f8f9fc;
}

/* MAIN BOX */
.about-box{
  background:#fff;
  padding:40px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* IMAGE */
.about-img img{
  width:100%;
  border-radius:12px;
}

/* TEXT */
.about h2{
  font-weight:800;
  color:#53449b;
  margin-bottom:20px;
}

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

/* CARDS */
.about-card{
  background:#53449b;
  color:#fff;
  padding:25px;
  border-radius:12px;
  height:100%;
  transition:0.3s;
}

.about-card h5{
  font-weight:700;
  margin-bottom:10px;
}

.about-card p{
  color:#ddd;
}

.about-card:hover{
  transform:translateY(-5px);
}


/* SECTION */
.contact-section{
  padding:100px 0;
  background:#f4f5fb;
}

/* WRAPPER (OVERLAP EFFECT) */
.contact-wrapper{
  position: relative;
  margin-top: 50px;
}

/* LEFT BOX */
.contact-info{
  background:#53449b;
  color:#fff;
  padding:40px;
  border-radius:12px 0 0 12px;
  height:100%;
}

.contact-info h5{
  font-weight:700;
  margin-bottom:20px;
}

/* ITEMS */
.contact-item{
  display:flex;
  margin-bottom:20px;
}

.contact-item i{
  font-size:18px;
  margin-right:12px;
  color:#fff;
  margin-top:4px;
}

.contact-item p{
  margin:0;
  font-size:14px;
  color:#ddd;
}

/* FORM BOX (OVERLAP STYLE) */
.contact-form{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);

  margin-left:-40px; /* 👈 overlap effect */
}

.contact-form h5{
  font-weight:700;
  margin-bottom:20px;
  color:#2f2f33;
}

/* FORM */
.contact-form .form-control{
  height:45px;
  border-radius:6px;
  border:1px solid #ddd;
}

.contact-form textarea.form-control{
  height:auto;
}

/* BUTTON */
.contact-btn{
  background:#d82639;
  color:#fff;
  padding:10px 25px;
  border-radius:30px;
  border:none;
  font-weight:600;
}

.contact-btn:hover{
  background:#53449b;
}

/* RESPONSIVE */
@media (max-width:768px){

  .contact-form{
    margin-left:0;
    margin-top:20px;
  }

  .contact-info{
    border-radius:12px;
  }
}



.contact-bg{
  position: relative;
  background: url("images/contact.png") center/cover no-repeat;
  padding: 140px 0;
}

.contact-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.contact-container{
  position: relative;
  z-index: 2;
}

/* OVERLAP EFFECT */
.contact-wrapper{
  margin-top: -80px;
}