/* GOOGLE FONT
  NOTE: Font is now loaded via <link> tags in each HTML <head> for better performance.
*/

/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{

  background:
  linear-gradient(
    135deg,
    #020617,
    #07142e,
    #0b1e45
  );

  color:#fff;

  overflow-x:hidden;
}

/* ================= NAVBAR PROFESSIONAL ================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  padding:14px 6%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(6,15,35,.92);
  backdrop-filter:blur(14px);

  border-bottom:
  1px solid rgba(255,255,255,.08);

  z-index:999;
}

/* LOGO */

.logo-container{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-img{
  width:65px;
}

.logo-text h2{
  font-size:24px;
  font-weight:700;
  margin:0;
}

.logo-text span{
  font-size:11px;
  color:#4ea5ff;
  letter-spacing:2px;
}

/* NAV LINKS */

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#fff;
  font-size:17px;
  font-weight:500;
  transition:.3s;
}

.nav-links a:hover{
  color:#4ea5ff;
}

/* CONTACT BUTTON */

.nav-btn{
  text-decoration:none;

  background:
  linear-gradient(
    135deg,
    #0066ff,
    #4ea5ff
  );

  color:white;

  padding:14px 26px;

  border-radius:14px;

  font-size:16px;

  transition:.3s;
}

.nav-btn:hover{
  transform:translateY(-3px);
}

/* ================= HERO SECTION ================= */

.hero{
  min-height:100vh;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:
  140px 8% 60px;
}

/* CONTENT */

.hero-content{
  max-width:900px;
}

.hero-content h1{
  font-size:58px;   /* NORMAL SIZE */
  line-height:1.2;
  margin-bottom:20px;
  font-weight:800;
}

.hero-content span{
  color:#4ea5ff;
}

.hero-content p{
  font-size:18px;   /* NORMAL */
  line-height:1.9;
  color:#d8ddeb;

  max-width:900px;
  margin:auto auto 35px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:30px;
}

.primary-btn,
.secondary-btn{
  text-decoration:none;
  padding:14px 26px;
  border-radius:14px;
  transition:.3s;
  font-size:16px;
}

.primary-btn{
  background:
  linear-gradient(
    135deg,
    #0066ff,
    #4ea5ff
  );

  color:white;
}

.secondary-btn{
  border:
  1px solid rgba(255,255,255,.2);

  color:white;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-3px);
}

/* NAV LINKS */

.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
}

/* SERVICES DROPDOWN */

.dropdown{
  position:relative;
  margin-right:18px;
}

/* DROPDOWN MENU */

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  width:250px;
  background:#08152f;
  border-radius:0 0 15px 15px;
  overflow:hidden;
  display:none;
  z-index:999;
}

/* SHOW MENU */

.dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:14px 18px;
  color:white;
  text-decoration:none;
}

.dropdown-menu a:hover{
  background:#1d4ed8;
}
/* RESPONSIVE */

@media(max-width:900px){

  .nav-links{
    display:none;
  }

  .hero-content h1{
    font-size:40px;
  }

  .hero-content p{
    font-size:16px;
  }

  .nav-btn{
    display:none;
  }
}

/* SLIDER */

.slider-section{

  padding:
  20px 8% 100px;
}

.slider{

  position:relative;

  width:100%;

  max-width:1200px;

  height:550px;

  margin:auto;

  overflow:hidden;

  border-radius:35px;

  box-shadow:
  0 20px 50px
  rgba(0,0,0,.35);
}

.slide{

  position:absolute;

  width:100%;

  height:100%;

  object-fit:cover;

  opacity:0;

  transition:
  opacity 1s ease;
}

.active-slide{

  opacity:1;
}
/* KEYFRAMES */

@keyframes fadeUp{

  from{

    opacity:0;

    transform:
    translateY(60px);
  }

  to{

    opacity:1;

    transform:
    translateY(0);
  }
}

@keyframes fadeLeft{

  from{

    opacity:0;

    transform:
    translateX(-80px);
  }

  to{

    opacity:1;

    transform:
    translateX(0);
  }
}

@keyframes fadeRight{

  from{

    opacity:0;

    transform:
    translateX(80px);
  }

  to{

    opacity:1;

    transform:
    translateX(0);
  }
}
/* SLIDER */

.slider-section{

  padding:
  20px 8% 100px;
}

.slider{

  position:relative;

  width:100%;

  max-width:1200px;

  height:550px;

  margin:auto;

  overflow:hidden;

  border-radius:35px;

  box-shadow:
  0 20px 50px
  rgba(0,0,0,.35);
}

.slide{

  position:absolute;

  width:100%;

  height:100%;

  object-fit:cover;

  opacity:0;

  transition:
  opacity 1s ease;
}

.active-slide{

  opacity:1;
}

/* COMMON PAGE */

.about-page,
.services-page,
.team-page,
.contact-page{

  padding:
  150px 8% 100px;
}

/* HEADINGS */

.about-page h1,
.services-page h1,
.team-page h1,
.contact-page h1{

  text-align:center;

  font-size:58px;

  margin-bottom:20px;
}

.service-subtitle,
.team-subtitle,
.contact-subtitle{

  text-align:center;

  color:#d7dcec;

  margin-bottom:50px;
}

/* ABOUT */

.about-image{

  display:flex;
  justify-content:center;

  margin-bottom:50px;
}

.about-image img{

  width:80%;

  max-width:1100px;

  height:450px;

  object-fit:cover;

  border-radius:30px;

  box-shadow:
  0 20px 50px rgba(0,0,0,.4);
}

.about-content{

  max-width:1000px;

  margin:auto;

  text-align:center;
}

.about-content p{

  color:#d7dcec;

  font-size:18px;

  line-height:2;

  margin-bottom:20px;
}

/* ABOUT CARDS */

.why-about-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:30px;

  margin-top:50px;
}

.about-card{

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  padding:35px;

  border-radius:25px;

  transition:.3s;
}

.about-card:hover{

  transform:
  translateY(-8px);
}

.about-card i{

  font-size:40px;

  color:#4ea5ff;

  margin-bottom:20px;
}

/* INDUSTRIES SECTION — AUTO CAROUSEL */

.industries-section{
  margin-top:70px;
  width:100%;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
  background:rgba(255,255,255,.05);
  color:#fff;
  border-radius:32px;
  padding:60px 55px;
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:
    0 20px 60px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.industries-eyebrow{
  text-align:center;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#9fb7ff;
  margin-bottom:10px;
}

.industries-section h2{
  text-align:center;
  font-size:44px;
  color:#fff;
  margin-bottom:16px;
}

.industries-intro{
  text-align:center;
  max-width:900px;
  margin:0 auto;
  font-size:16px;
  line-height:1.9;
  color:#d7dcec;
}

.industries-carousel{
  margin-top:46px;
}

.industries-viewport{
  overflow:hidden;
}

.industries-track{
  display:flex;
  gap:34px;
  transition:transform .65s cubic-bezier(0.22,1,0.36,1);
  will-change:transform;
}

.industry-card{
  flex:0 0 calc((100% - 68px) / 3);
  text-align:center;
  padding:26px 20px 24px;
  border-radius:22px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    0 10px 30px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .35s cubic-bezier(0.22,1,0.36,1), border-color .35s ease, box-shadow .35s ease;
}

.industry-card:hover{
  transform:translateY(-8px);
  border-color:rgba(78,165,255,.35);
  box-shadow:
    0 18px 45px rgba(0,102,255,.18),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.industry-icon{
  width:82px;
  height:82px;
  border-radius:18px;
  margin:0 auto 18px;
  background:rgba(78,165,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#4ea5ff;
}

.industry-icon i{
  font-size:34px;
}

.industry-card h3{
  font-size:22px;
  margin-bottom:10px;
  color:#fff;
}

.industry-card p{
  font-size:14.5px;
  color:#d7dcec;
  line-height:1.7;
}

.industries-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:26px;
}

.industries-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.28);
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}

.industries-dot.is-active{
  background:#4ea5ff;
  transform:scale(1.18);
}

.industries-dot:focus-visible{
  outline:3px solid rgba(29,78,216,.35);
  outline-offset:4px;
}

@media(max-width:900px){
  .industries-section{
    padding:52px 34px;
  }

  .industries-section h2{
    font-size:36px;
  }

  .industries-track{
    gap:22px;
  }

  .industry-card{
    flex-basis:calc((100% - 22px) / 2);
  }
}

@media(max-width:600px){
  .industries-section{
    padding:44px 26px;
    border-radius:26px;
  }

  .industries-section h2{
    font-size:32px;
  }

  .industries-track{
    gap:16px;
  }

  .industry-card{
    flex-basis:100%;
  }
}

/* WHY BUSINESSES TRUST US — GLASS CARDS */

.trust-section{
  margin-top:70px;
  width:100%;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.trust-section h2{
  font-size:42px;
  color:#fff;
  text-align:center;
  margin-bottom:18px;
}

.trust-intro{
  text-align:center;
  color:#d7dcec;
  font-size:18px;
  line-height:1.9;
  max-width:780px;
  margin:0 auto 45px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:28px;
}

.glass-card{
  position:relative;
  text-align:center;
  padding:38px 28px 34px;
  border-radius:26px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:
  0 8px 32px rgba(0,0,0,.25),
  inset 0 1px 0 rgba(255,255,255,.1);
  transition:
  transform .4s cubic-bezier(0.22,1,0.36,1),
  box-shadow .4s ease,
  border-color .4s ease;
}

.glass-card:hover{
  transform:translateY(-10px);
  border-color:rgba(78,165,255,.35);
  box-shadow:
  0 18px 45px rgba(0,102,255,.2),
  inset 0 1px 0 rgba(255,255,255,.15);
}

.glass-check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}

.glass-check i{
  font-size:22px;
  color:#4ea5ff;
}

.glass-icon{
  display:block;
  font-size:44px;
  color:#4ea5ff;
  margin:0 auto 18px;
  opacity:.95;
}

.glass-card h3{
  font-size:22px;
  font-weight:600;
  color:#fff;
  margin-bottom:14px;
}

.glass-card p{
  color:#c8d4ea;
  font-size:15px;
  line-height:1.75;
}

/* HOME — PREMIUM STATS */

.stats-section{
  padding:30px 8% 70px;
  max-width:1200px;
  margin:0 auto;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.stat-card{
  position:relative;
  text-align:center;
  padding:42px 24px 36px;
  border-radius:28px;
  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.09),
    rgba(255,255,255,.03)
  );
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:
  0 12px 40px rgba(0,0,0,.28),
  inset 0 1px 0 rgba(255,255,255,.12);
  transition:
  transform .45s cubic-bezier(0.22,1,0.36,1),
  box-shadow .45s ease,
  border-color .45s ease;
  overflow:hidden;
}

.stat-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,#0066ff,#4ea5ff);
  opacity:.85;
}

.stat-card::after{
  content:"✔";
  position:absolute;
  top:16px;
  right:18px;
  font-size:14px;
  color:#4ea5ff;
  opacity:.7;
}

.stat-card:hover{
  transform:translateY(-12px);
  border-color:rgba(78,165,255,.4);
  box-shadow:
  0 22px 50px rgba(0,102,255,.22),
  inset 0 1px 0 rgba(255,255,255,.18);
}

.stat-icon-wrap{
  width:64px;
  height:64px;
  margin:0 auto 22px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(78,165,255,.12);
  border:1px solid rgba(78,165,255,.25);
}

.stat-icon-wrap i{
  font-size:28px;
  color:#4ea5ff;
}

.stat-number{
  font-size:48px;
  font-weight:800;
  line-height:1.1;
  margin-bottom:10px;
  background:linear-gradient(135deg,#fff,#4ea5ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.stat-label{
  color:#d8ddeb;
  font-size:17px;
  font-weight:500;
  letter-spacing:.3px;
}

/* SERVICES */

.service-tabs{

  display:flex;
  justify-content:center;

  gap:20px;

  flex-wrap:wrap;

  margin-bottom:50px;
}

.tab-btn{

  border:none;

  padding:15px 25px;

  border-radius:40px;

  background:
  rgba(255,255,255,.08);

  color:white;

  cursor:pointer;

  transition:.3s;
}

.tab-btn.active,
.tab-btn:hover{

  background:
  linear-gradient(
    135deg,
    #0066ff,
    #4ea5ff
  );
}

.service-content{

  display:none;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:30px;

  padding:50px;

  align-items:center;

  justify-content:space-between;

  gap:40px;
}

.active-service{
  display:flex;
}

.service-text i{

  font-size:60px;

  color:#4ea5ff;

  margin-bottom:20px;
}

.service-text h2{

  font-size:38px;

  margin-bottom:15px;
}

.service-text p{

  color:#d7dcec;

  line-height:1.9;
}

.service-image img{

  width:420px;

  border-radius:25px;
}

/* TEAM */

.team-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:30px;
}

.team-card{

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:25px;

  padding:40px;

  text-align:center;

  transition:.3s;
}

.team-card:hover{

  transform:
  translateY(-8px);
}

.profile-circle{

  width:90px;
  height:90px;

  border-radius:50%;

  margin:auto auto 20px;

  background:
  linear-gradient(
    135deg,
    #0066ff,
    #4ea5ff
  );

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:28px;
  font-weight:700;
}

/* CONTACT */

.contact-container{

  display:grid;

  grid-template-columns:
  1fr 1.3fr;

  gap:40px;
}

.info-card,
.contact-form-box{

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:25px;

  padding:35px;
}

.info-card{

  margin-bottom:20px;
}

.info-card i{

  font-size:35px;

  color:#4ea5ff;

  margin-bottom:15px;
}

.contact-form-box form{

  display:flex;
  flex-direction:column;

  gap:20px;
}

.contact-form-box input,
.contact-form-box textarea{

  padding:18px;

  border:none;

  border-radius:14px;

  background:
  rgba(255,255,255,.08);

  color:white;

  outline:none;
}

textarea{
  height:160px;
}

.contact-form-box button{

  border:none;

  padding:18px;

  border-radius:14px;

  background:
  linear-gradient(
    135deg,
    #0066ff,
    #4ea5ff
  );

  color:white;

  cursor:pointer;
}

.contact-form-box button:disabled{
  opacity:.75;
  cursor:not-allowed;
}

.input-error{
  outline:2px solid rgba(255, 85, 85, .75) !important;
}

.field-error{
  margin-top:-12px;
  font-size:13px;
  color:#ffb4b4;
}

.form-status{
  margin-top:6px;
  font-size:14px;
  color:#d7dcec;
  min-height:18px;
}

/* SUCCESS POPUP */

.success-popup{

  position:fixed;

  top:50%;
  left:50%;

  transform:
  translate(-50%,-50%)
  scale(.8);

  background:#08132c;

  padding:40px;

  border-radius:30px;

  text-align:center;

  opacity:0;
  visibility:hidden;

  transition:.4s;

  z-index:9999;
}

.success-popup.active{

  opacity:1;
  visibility:visible;

  transform:
  translate(-50%,-50%)
  scale(1);
}

.success-popup i{

  font-size:60px;

  color:#4ea5ff;

  margin-bottom:20px;
}

/* FOOTER — PREMIUM 4-COLUMN */

.site-footer{
  background:#000;
  color:#fff;
  margin-top:0;
  text-align:left;
}

.footer-main{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  max-width:1200px;
  margin:0 auto;
  padding:60px 8% 45px;
}

.footer-col h4{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
  color:#fff;
}

.footer-line{
  display:block;
  width:42px;
  height:3px;
  background:#22c55e;
  margin-bottom:22px;
  border-radius:2px;
}

.footer-logo{
  width:100px;
  margin-bottom:22px;
  display:block;
}

.footer-about{
  color:#c8d4e8;
  font-size:14px;
  line-height:1.85;
  margin-bottom:28px;
  max-width:340px;
}

.footer-social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.footer-social a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#1a1a1a;
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  transition:background .3s ease,transform .3s ease,color .3s ease;
}

.footer-social a:hover{
  background:#4ea5ff;
  color:#fff;
  transform:translateY(-3px);
}

.footer-links,
.footer-contact-list{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li,
.footer-contact-list li{
  margin-bottom:14px;
}

.footer-links a{
  color:#e2e8f5;
  text-decoration:none;
  font-size:15px;
  transition:color .3s ease,padding-left .3s ease;
}

.footer-links a:hover{
  color:#4ea5ff;
  padding-left:6px;
}

.footer-contact-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  color:#e2e8f5;
  font-size:14px;
  line-height:1.6;
}

.footer-contact-list i{
  color:#4ea5ff;
  font-size:18px;
  margin-top:3px;
  flex-shrink:0;
  width:20px;
}

.footer-contact-list a{
  color:#e2e8f5;
  text-decoration:none;
  transition:color .3s ease;
}

.footer-contact-list a:hover{
  color:#4ea5ff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
  padding:22px 8%;
  background:#050505;
}

.footer-bottom p{
  color:#9ca8c4;
  font-size:14px;
  margin-bottom:6px;
}

.footer-tagline{
  color:#4ea5ff;
  font-size:13px;
  margin-bottom:0 !important;
}

/* RESPONSIVE */

@media(max-width:900px){

  .hero,
  .service-content,
  .contact-container{

    flex-direction:column;
    grid-template-columns:1fr;
  }

  .hero{

    flex-direction:column;
    text-align:center;
  }

  .hero-content h1{

    font-size:45px;
  }

  .hero-image img,
  .service-image img{

    width:100%;
  }

  .nav-links{
    display:none;
  }

  .about-image img{
    width:95%;
  }

}
.service-content{
  display:none;
}

.active-service{
  display:flex;
  justify-content:center;
  align-items:center;
}
/* SERVICES DROPDOWN */

.dropdown{
  position: relative;
}

/* DROPDOWN MENU */

.dropdown-menu{

  position: absolute;

  top: 100%; /* IMPORTANT FIX */

  left: 0;

  width: 270px;

  background: #08152f;

  border-radius: 0 0 15px 15px;

  overflow: hidden;

  display: none;

  z-index: 999;

  box-shadow:
  0 10px 30px rgba(0,0,0,.3);

  padding-top: 5px;
}

/* KEEP OPEN */

.dropdown:hover .dropdown-menu{
  display: block;
}

/* LINKS */

.dropdown-menu a{

  display: block;

  padding: 16px 20px;

  color: white;

  text-decoration: none;

  transition: 0.3s;
}

.dropdown-menu a:hover{

  background: #1d4ed8;
}

/* OPTIONAL SMOOTH HOVER AREA */

.dropdown::after{

  content: "";

  position: absolute;

  left: 0;

  top: 100%;

  width: 100%;

  height: 15px;
}
/* SCROLLING BRAND LOGOS */

.brands-section{
  padding:80px 0 100px;
  text-align:center;
  overflow:hidden;
}

.brands-section h2{
  font-size:42px;
  color:#fff;
  margin-bottom:14px;
  padding:0 8%;
}

.brands-subtitle{
  color:#d8ddeb;
  font-size:17px;
  margin-bottom:45px;
  padding:0 8%;
}

.brands-marquee{
  position:relative;
  width:100%;
  overflow:hidden;
  padding:28px 0;
  background:
  linear-gradient(
    90deg,
    rgba(2,6,23,.95) 0%,
    rgba(255,255,255,.04) 50%,
    rgba(2,6,23,.95) 100%
  );
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  -webkit-mask-image:linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image:linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.brands-track{
  display:flex;
  align-items:center;
  gap:0;
  width:max-content;
  animation:brandScroll 28s linear infinite;
}

.brands-marquee:hover .brands-track{
  animation-play-state:paused;
}

.brand-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:18px 48px;
  margin:0 8px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  white-space:nowrap;
}

.brand-item::after{
  content:"|";
  margin-left:48px;
  color:rgba(78,165,255,.45);
  font-weight:300;
  font-size:22px;
}

.brand-name{
  font-size:28px;
  font-weight:700;
  letter-spacing:1px;
  color:#fff;
  text-transform:uppercase;
}

.brand-apple i{
  font-size:30px;
  color:#4ea5ff;
}

.brand-item:hover{
  border-color:rgba(78,165,255,.35);
  background:rgba(78,165,255,.1);
  transform:scale(1.04);
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
}

@keyframes brandScroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

@media(max-width:900px){

  .brands-section h2{
    font-size:32px;
  }

  .brand-name{
    font-size:22px;
  }

  .brand-item{
    padding:14px 32px;
  }

  .brand-item::after{
    margin-left:32px;
  }
}

@media(prefers-reduced-motion:reduce){

  .brands-track{
    animation:none;
    flex-wrap:wrap;
    justify-content:center;
    width:100%;
    gap:16px;
    padding:0 8%;
  }

  .brand-item::after{
    display:none;
  }
}
/* SERVICE SECTION */

.service-wrapper{

  display:flex;
  justify-content:center;
  margin-top:40px;
}

/* HIDE ALL SERVICES */

.service-box{

  display:none;

  max-width:1100px;
  width:100%;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:30px;

  overflow:hidden;

  animation:
  fadeIn .7s ease;
}

/* ONLY ACTIVE SHOW */

.active-service{

  display:flex;

  align-items:center;

  gap:40px;
}

/* IMAGE */

.service-image{

  width:50%;
}

.service-image img{

  width:100%;

  height:500px;

  object-fit:cover;
}

/* TEXT */

.service-text{

  width:50%;

  padding:50px;
}

.service-text i{

  font-size:55px;

  color:#4ea5ff;

  margin-bottom:20px;
}

.service-text h2{

  font-size:42px;

  margin-bottom:20px;
}

.service-text p{

  color:#d9ddeb;

  line-height:2;

  font-size:18px;
}

/* ANIMATION */

@keyframes fadeIn{

  from{
    opacity:0;
    transform:
    translateY(40px);
  }

  to{
    opacity:1;
    transform:
    translateY(0);
  }
}

/* MOBILE */

@media(max-width:900px){

  .active-service{

    flex-direction:column;
  }

  .service-image,
  .service-text{

    width:100%;
  }

  .service-image img{

    height:300px;
  }

}
.service-box{
  display:none;
  text-align:center;
  padding:50px 45px;
}

.service-box > i{
  display:block;
  font-size:52px;
  color:#4ea5ff;
  margin:0 auto 22px;
}

.service-box h2{
  color:#4ea5ff;
  text-align:center;
  font-size:40px;
  font-weight:700;
  margin-bottom:28px;
  line-height:1.3;
}

.service-box > p{
  text-align:center;
  color:#d9ddeb;
  line-height:1.9;
  font-size:18px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:18px;
}

.active-service{
  display:block;
  animation: fadeIn .5s ease;
}

.default-service h2{
  color:#4ea5ff;
  text-align:center;
}

/* Services dropdown — blue centered labels */
.dropdown-menu a{
  color:#4ea5ff !important;
  text-align:center;
  font-weight:500;
}

.dropdown-menu a:hover{
  color:#fff !important;
  background:#1d4ed8;
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* SLIDER */

.slider{

  position:relative;

  width:100%;

  max-width:1200px;

  height:550px;

  margin:auto;

  overflow:hidden;

  border-radius:35px;

  box-shadow:
  0 20px 50px
  rgba(0,0,0,.35);
}

/* IMAGE */

.slide{

  position:absolute;

  width:100%;

  height:100%;

  object-fit:cover;

  opacity:0;

  transform:
  scale(1.08);

  transition:
  opacity 1.2s ease,
  transform 6s ease;

}

/* ACTIVE */

.active-slide{

  opacity:1;

  transform:
  scale(1);
} 
/* SERVICE IMAGE CARDS */

.service-cards{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(230px,1fr));

  gap:25px;

  margin-top:35px;
}

/* SINGLE CARD */

.img-card{

  background:
  rgba(255,255,255,.06);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:22px;

  overflow:hidden;

  transition:.4s;

  text-align:center;

  backdrop-filter:
  blur(12px);
}

.img-card:hover{

  transform:
  translateY(-8px);

  box-shadow:
  0 15px 35px
  rgba(0,0,0,.35);
}

/* IMAGE */

.img-card img{

  width:100%;

  height:220px;

  object-fit:cover;
}

/* TITLE */

.img-card h3{

  padding:18px;

  color:white;

  font-size:20px;
}

/* ================= FIXES: NAV + HERO + RESPONSIVE ================= */

.logo-link{
  text-decoration:none;
  color:inherit;
}

.nav-links a.nav-active{
  color:#4ea5ff;
}

.nav-links a.nav-active::after{
  width:100%;
}

.nav-toggle{
  display:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  font-size:22px;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  transition:background .3s ease;
}

.nav-toggle:hover{
  background:rgba(78,165,255,.2);
}

.hero--animated{
  min-height:auto;
  padding-top:110px;
  padding-bottom:50px;
  width:100%;
}

.hero--animated .slider-section.hero-slider{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}

.hero--animated .slider{
  width:100%;
  max-width:1200px;
}

.hero--animated .slide{
  position:absolute;
  inset:0;
  left:0;
  top:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:none !important;
}

.hero--animated .hero-content{
  width:100%;
}

@media(max-width:900px){

  .nav-toggle{
    display:block;
  }

  .navbar{
    flex-wrap:wrap;
    gap:12px;
  }

  .nav-links{
    display:none;
    flex-direction:column;
    align-items:stretch;
    width:100%;
    order:4;
    gap:0;
    padding:12px 0 8px;
    border-top:1px solid rgba(255,255,255,.1);
  }

  .navbar.nav-open .nav-links{
    display:flex;
  }

  .nav-links > a,
  .dropdown > a{
    padding:14px 8px;
  }

  .dropdown-menu{
    position:static;
    display:none;
    width:100%;
    border-radius:12px;
    margin-top:4px;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.is-open .dropdown-menu{
    display:block;
  }

  .nav-btn{
    display:inline-flex;
    margin-left:auto;
    padding:12px 18px;
    font-size:14px;
  }

  .hero--animated .slider{
    height:clamp(200px, 55vw, 300px);
    min-height:200px;
    border-radius:20px;
  }

  .hero--animated .slide{
    inset:0;
    width:100%;
    height:100%;
  }

  .hero-content h1{
    font-size:34px;
  }

  .hero-content p{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    max-width:280px;
    text-align:center;
  }

  .contact-container{
    grid-template-columns:1fr;
  }

  .choose-container{
    flex-direction:column;
    align-items:stretch;
  }

  .choose-card{
    width:100%;
    max-width:100%;
  }

  .about-image img{
    height:auto;
    min-height:200px;
    max-height:320px;
  }

  .services-page h1,
  .about-page h1,
  .team-page h1,
  .contact-page h1{
    font-size:38px;
  }

  .service-box{
    padding:35px 22px;
  }

  .service-box h2{
    font-size:30px;
  }

  .trust-section h2{
    font-size:32px;
  }

  .trust-grid{
    grid-template-columns:1fr;
  }

  .glass-card{
    padding:32px 24px;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }

  .stat-number{
    font-size:36px;
  }
}

@media(max-width:520px){

  .stats-grid{
    grid-template-columns:1fr;
  }

  .stat-card{
    padding:34px 22px;
  }

  .footer-main{
    grid-template-columns:1fr 1fr;
    gap:35px;
    padding:50px 8% 35px;
  }

  .footer-brand{
    grid-column:1 / -1;
  }

  .footer-about{
    max-width:100%;
  }
}

@media(max-width:560px){

  .footer-main{
    grid-template-columns:1fr;
    gap:32px;
  }
}

/* Services inner headings — blue & centered */
.services-page .service-box h2,
.default-service h2{
  color:#4ea5ff;
  text-align:center;
}

.navbar .dropdown-menu a{
  color:#4ea5ff;
  text-align:center;
  font-weight:500;
}

.navbar .dropdown-menu a:hover{
  color:#fff;
}
