:root{
  --primary:#5b2d8b;
  --primary-600:#4a2372;
  --accent:#c3a6e5;
  --bg:#ffffff;
  --soft:#f5f2fa;
  --muted:#6c757d;
  --card-shadow:0 8px 30px rgba(91,45,139,0.07);
  --glass:rgba(255,255,255,0.8);
  --radius:12px;
  --fw-regular:500;
  --fw-strong:700;
}



*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Inter", "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--soft);
  color:#111827;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  scroll-behavior:smooth;
}

.navbar{
  background:var(--bg);
  box-shadow:0 6px 20px rgba(15,23,42,0.04);
  padding:12px 0;
  width:100%;
}
.navbar .navbar-brand img{height:48px}
.navbar .nav-link{
  color:#1f2937;
  font-weight:var(--fw-regular);
  padding:10px 14px;
}
.navbar .nav-link:hover,.navbar .nav-link.active{color:var(--primary)}
.navbar-toggler{border:0}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
section{
  width:100%;
  padding-left:20px;
  padding-right:20px;
  box-sizing:border-box;
}

.hero{
  position: relative;
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  width:100%;
  overflow:hidden;
}

.hero-bg{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center;
  z-index:1;
  transition: filter 0.25s ease;
}

.hero-content{
  position: relative;
  z-index:2;
}

.hero-content *{
  transition: all 0.25s ease;
}


.client-title{
  font-size:clamp(28px,3.2vw,38px);
  font-weight:800;
  color:#4a2372;
  text-align:center;
  margin:0 auto 40px;
  padding:14px 34px;
  width:fit-content;
  border-radius:14px;
  background:linear-gradient(180deg,#ffffff,#f5f2fa);
  box-shadow:0 12px 32px rgba(91,45,139,0.12);
  letter-spacing:.5px;
  position:relative;
}

.client-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  transform:translateX(-50%);
  width:60%;
  height:4px;
  border-radius:10px;
  background:linear-gradient(90deg,#5b2d8b,#c3a6e5);
}

.client-title:hover{
  transform:translateY(-4px);
  transition:.25s ease;
  box-shadow:0 18px 44px rgba(91,45,139,0.18);
}


.client-logos{
  padding:18px 0 40px;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  width:100%;
}
.client-logos img{
  height:56px;
  width: 200px;
  margin:0 18px;
  filter:grayscale(85%);
  opacity:.85;
  transition:filter .25s ease, transform .25s ease, opacity .25s ease;
}
.client-logos img:hover{filter:none; opacity:1; transform:translateY(-6px)}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  padding: 14px 20px;
  color: #4b0082; 
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.section-title:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.latest-news-section{
  padding:54px 20px;
  background:linear-gradient(180deg, var(--bg), var(--soft));
  width:100%;
}
.news-card{
  background:linear-gradient(180deg,#ffffff, #fbfdff);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--card-shadow);
  height:100%;
  transition:transform .18s ease, box-shadow .18s ease;
}
.news-card h5{margin-top:0; color:#0b2b45; font-weight:700}
.news-card p{color:var(--muted); margin-bottom:14px}
.news-card .btn{padding:8px 14px;border-radius:8px}

.collab-section{
  background:#ffffff;
}

.collab-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  padding: 14px 20px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.collab-title:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.collab-logo{
  background:linear-gradient(180deg,#ffffff,#f5f2fa);
  border-radius:16px;
  padding:40px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 32px rgba(91,45,139,0.12);
  transition:.25s ease;
  overflow:hidden;
}

.collab-logo img{
  max-height:88px;
  max-width:220px;
  object-fit:contain;
}

.collab-logo:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 46px rgba(91,45,139,0.18);
}

.collab-tag{
  position:absolute;
  top:18px;
  left:-38px;
  transform:rotate(-45deg);
  padding:6px 46px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#ffffff;
}

.collab-tag.active{
  background:#dc2626;
}

.collab-tag.soon{
  background:#9ca3af;
}

.about-heading {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  padding: 14px 20px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.about-heading:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.about{padding:60px 20px; width:100%}
.about-heading{font-size:28px; font-weight:700; color:#0b2740}
.about-text{color:#374151}

.services{padding:48px 20px; width:100%}
.service-card{
  background:linear-gradient(180deg,#fff,#fbfdff);
  border-radius:14px;
  padding:22px;
  height:100%;
  border-top:4px solid var(--primary);
  transition:transform .18s ease, box-shadow .18s ease;
}

.display-6 {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  padding: 12px 18px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.display-6:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.service-card h6{color:var(--primary); font-weight:700}
.service-card p{color:var(--muted)}

.section-title.text-center {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  padding: 12px 18px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.section-title.text-center:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 26px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.why-choose-us{padding:64px 20px; background:var(--bg); width:100%}
.feature-card{
  background:#fff;
  border-radius:12px;
  padding:18px;
  transition:transform .18s ease, box-shadow .18s ease;
  border-left:4px solid var(--primary);
}
.feature-card h5{color:#0b2740; margin-bottom:6px}
.feature-card p{color:var(--muted)}

.fw-bold.mb-5 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 16px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 18px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.fw-bold.mb-5:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 24px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.team-section{padding:54px 20px; width:100%}
.team-card{
  background:linear-gradient(180deg,var(--primary),var(--primary-600));
  color:#fff;
  border-radius:12px;
  padding:20px;
  text-align:center;
  transition:transform .18s ease;
}
.team-card img{width:84px;height:84px;border-radius:50%;background:#fff;padding:10px;object-fit:cover}
.team-card h6{margin:12px 0 6px;font-weight:700}
.team-card p{margin:0;color:#e6eefc}
.team-card:hover{transform:translateY(-6px); box-shadow:0 18px 40px rgba(30,144,255,0.12)}

.fw-bold.mb-3 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 16px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 18px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.fw-bold.mb-3:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 24px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.cta-section{
  padding:56px 20px;
  background:linear-gradient(90deg, rgba(30,144,255,0.06), rgba(99,179,237,0.03));
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
}
.cta-box{
  background:linear-gradient(180deg, rgba(30,144,255,0.04), rgba(255,255,255,0.5));
  padding:28px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 20px 40px rgba(2,6,23,0.06);
}
.cta-box h2{margin:0 0 12px;color:#04263b}
.cta-box p{color:var(--muted); margin-bottom:16px}

h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 16px;
  color: #4b0082;
  border: 3px solid rgba(139, 0, 255, 0.4);
  border-radius: 12px;
  width: max-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 18px rgba(139, 0, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

h2:hover {
  border-color: #8a2be2;
  box-shadow: 0 0 24px rgba(139, 0, 255, 0.4);
  transform: translateY(-4px);
}


.contact-section{padding:64px 20px; width:100%}
.contact-form{
  background:var(--bg);
  padding:28px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(2,6,23,0.04);
}
.contact-form input, .contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #e6ecf8;
  resize:vertical;
  font-size:15px;
}
.contact-form input:focus, .contact-form textarea:focus{outline:none; border-color:var(--primary); box-shadow:0 6px 20px rgba(30,144,255,0.06)}
.contact-form button{
  background:var(--primary);
  color:#fff;
  border:0;
  padding:12px 22px;
  border-radius:10px;
  font-weight:700;
}

.footer-section{
  background:#071126;
  color:#cfd9f1;
  padding:60px 20px 30px;
}

.footer-logo{
  height:56px;
  filter:brightness(0) invert(1);
}

.footer-desc{
  color:#9fb2d9;
  line-height:1.7;
  font-size:14.5px;
}

.footer-heading{
  font-size:17px;
  font-weight:700;
  margin-bottom:14px;
  color:#ffffff;
}

.footer-section p{
  font-size:14px;
  color:#b6c6e3;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#cfd9f1;
  text-decoration:none;
  transition:.2s ease;
}

.footer-links a:hover{
  color:#c3a6e5;
  padding-left:4px;
}

.footer-social{
  display:flex;
  gap:12px;
  justify-content:flex-start;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.06);
  color:#ffffff;
  transition:.25s ease;
}

.footer-social a:hover{
  background:#5b2d8b;
  transform:translateY(-4px);
}

.footer-hr{
  margin:30px 0 16px;
  border:0;
  height:1px;
  background:rgba(255,255,255,0.08);
}

.footer-bottom{
  font-size:13px;
  color:#9fb2d9;
}
.footer-bottom a{
  color:#c3a6e5;
  text-decoration:none;
}

.section-hover-active *:not(.hovered){
  filter: blur(4px) brightness(70%);
  pointer-events: none;
  transition: all 0.25s ease;
}

.interactive-box{
  transition: all 0.25s ease;
  z-index: 2;
}

.interactive-box.hovered{
  filter: none !important;
  transform: translateY(-6px);
  pointer-events: auto;
  z-index: 5;
}
@media (max-width:768px){
  .hero{
    text-align:center;
    flex-direction:column;
    justify-content:center;
  }
}