* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --primary:#0a3d96;
  --primary-dark:#082d70;
  --accent:#f15a24;
  --text:#1f1f1f;
  --muted:#6b7280;
  --light:#f5f7fb;
  --card:#ffffff;
  --border:#e8edf6;
  --shadow: 0 10px 28px rgba(0,0,0,0.06);
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Poppins', sans-serif;
  background: #f7f9fc;
  color: var(--text);
  line-height: 1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  width:100%;
}

ul{
  list-style:none;
}

.container{
  width:92%;
  max-width:1380px;
  margin:0 auto;
}

/* TOPBAR */
.topbar{
  background: var(--primary-dark);
  color:#fff;
  font-size:13px;
  padding:8px 0;
}

.topbar-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.topbar-left,
.topbar-right{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.topbar a{ color:#fff; }
.topbar i{ margin-right:6px; }

/* HEADER */
.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 3px 18px rgba(0,0,0,0.06);
}

.nav-wrap{
  min-height:84px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.logo-text h1{
  font-size:42px;
  line-height:1;
  color:var(--primary);
  font-weight:800;
}

.logo-text h1 span{
  color:var(--accent);
}

.logo-text small{
  display:block;
  font-size:12px;
  color:#333;
  margin-top:2px;
  letter-spacing:0.5px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-links li a{
  font-size:15px;
  font-weight:600;
  color:#111;
  position:relative;
  transition:0.3s;
}

.nav-links li a.active,
.nav-links li a:hover{
  color:var(--primary);
}

.nav-links li a.active::after,
.nav-links li a:hover::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-12px;
  width:100%;
  height:2px;
  background:var(--primary);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.quote-btn{
  background: linear-gradient(90deg, #0f4db9, #0a357f);
  color:#fff;
  padding:13px 26px;
  border-radius:6px;
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(10,61,150,0.22);
  display:inline-block;
  transition:0.3s ease;
}

.quote-btn:hover{
  transform:translateY(-2px);
}

.menu-toggle{
  display:none;
  border:none;
  background:transparent;
  font-size:26px;
  color:var(--primary);
  cursor:pointer;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  background:#000;
}

.hero-slide{
  position:relative;
  min-height:620px;
  display:none;
}

.hero-slide.active{
  display:block;
}

.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.03);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0, 8, 30, 0.95) 0%,
      rgba(0, 16, 50, 0.90) 28%,
      rgba(0, 20, 55, 0.62) 54%,
      rgba(0, 20, 55, 0.22) 78%,
      rgba(0, 0, 0, 0.05) 100%);
}

.hero-inner{
  position:relative;
  z-index:2;
  min-height:620px;
  display:flex;
  align-items:center;
}

.hero-content{
  color:#fff;
  max-width:700px;
  padding-left:10px;
}

.welcome-script{
  font-size:42px;
  color:#65b6ff;
  font-style:italic;
  margin-bottom:8px;
  font-weight:500;
}

.hero-content h2{
  font-size:58px;
  line-height:1.08;
  font-weight:800;
  margin-bottom:12px;
}

.hero-content h3{
  font-size:20px;
  font-weight:500;
  margin-bottom:16px;
}

.hero-list{
  margin-bottom:26px;
}

.hero-list li{
  font-size:20px;
  margin-bottom:7px;
  position:relative;
  padding-left:26px;
}

.hero-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:700;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:8px;
}

.explore-btn{
  display:inline-block;
  background: linear-gradient(90deg, #0f4db9, #0a357f);
  color:#fff;
  padding:13px 30px;
  border-radius:6px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(10,61,150,0.22);
  transition:0.3s ease;
}

.explore-btn:hover{
  transform:translateY(-2px);
}

.hero-outline-btn{
  display:inline-block;
  padding:13px 28px;
  border-radius:6px;
  border:2px solid rgba(255,255,255,0.9);
  color:#fff;
  font-weight:700;
  transition:0.3s;
}

.hero-outline-btn:hover{
  background:#fff;
  color:#0a3d96;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border:none;
  border-radius:10px;
  background:rgba(255,255,255,0.14);
  color:#fff;
  z-index:3;
  cursor:pointer;
  backdrop-filter: blur(4px);
  transition:0.3s;
}

.hero-arrow:hover{
  background:rgba(255,255,255,0.25);
}

.hero-prev{ left:18px; }
.hero-next{ right:18px; }

.hero-dots{
  position:absolute;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);
  z-index:4;
  display:flex;
  gap:10px;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,0.45);
  cursor:pointer;
  transition:0.3s;
}

.dot.active{
  background:#fff;
  transform:scale(1.1);
}

/* ABOUT */
.about-section{
  padding:65px 0 25px;
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:30px;
  align-items:center;
}

.about-image img{
  border-radius:14px;
  height:430px;
  object-fit:cover;
  box-shadow:var(--shadow);
}

.about-content h2{
  font-size:38px;
  line-height:1.2;
  margin-bottom:14px;
}

.about-content p{
  margin-bottom:14px;
  color:#444;
}

.about-btn{
  margin-top:8px;
  display:inline-block;
}

/* SECTION COMMON */
.section-heading{
  margin-bottom:26px;
}

.section-heading.center{
  text-align:center;
}

.section-heading p,
.mini-title{
  font-size:14px;
  color:var(--primary);
  font-weight:700;
  letter-spacing:0.4px;
  margin-bottom:4px;
}

.section-heading h2{
  font-size:40px;
  line-height:1.2;
}

/* SERVICES */
.services-section{
  padding:20px 0 20px;
  background:#fff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:22px;
}

.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:26px 18px 20px;
  text-align:center;
  box-shadow:var(--shadow);
  min-height:190px;
  transition:0.35s ease;
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-icon{
  width:66px;
  height:66px;
  border-radius:50%;
  margin:0 auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.service-icon.blue{ background:#e8f1ff; color:#1460dd; }
.service-icon.purple{ background:#f1e8ff; color:#7b3fe4; }
.service-icon.indigo{ background:#eaf0ff; color:#4b61ff; }
.service-icon.green{ background:#e8fff0; color:#0ea64a; }
.service-icon.orange{ background:#fff0e6; color:#ef7d1a; }
.service-icon.pink{ background:#ffe8f1; color:#e62b73; }

.service-card h3{
  font-size:20px;
  line-height:1.25;
  margin-bottom:8px;
}

.service-card p{
  color:#555;
  font-size:15px;
}

/* STATS */
.stats-section{
  padding:0 0 20px;
  background:#fff;
}

.stats-box{
  background: linear-gradient(90deg, #0d49b0, #082e72);
  border-radius:12px;
  padding:18px 10px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  color:#fff;
  box-shadow:var(--shadow);
}

.stat-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  border-right:1px solid rgba(255,255,255,0.25);
}

.stat-item:last-child{
  border-right:none;
}

.stat-icon{
  font-size:34px;
}

.stat-text h3{
  font-size:34px;
  line-height:1;
}

.stat-text p{
  font-size:15px;
  font-weight:500;
}

/* MAIN CONTENT */
.main-content-section{
  padding:0 0 20px;
  background:#fff;
}

.main-grid{
  display:grid;
  grid-template-columns:2.1fr 1.08fr;
  gap:22px;
  align-items:start;
}

.content-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow);
}

.projects-card{
  padding:18px 18px 12px;
}

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
  gap:15px;
}

.card-top h2{
  font-size:20px;
}

.view-all-link{
  color:var(--primary);
  font-size:15px;
  font-weight:600;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.project-card{
  border:1px solid #edf1f7;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  transition:0.35s ease;
}

.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 26px rgba(0,0,0,0.08);
}

.project-image{
  height:210px;
  overflow:hidden;
}

.project-image img{
  height:100%;
  object-fit:cover;
  transition:0.45s ease;
}

.project-card:hover .project-image img{
  transform:scale(1.05);
}

.project-info{
  padding:10px 12px 12px;
  text-align:center;
}

.project-info h3{
  font-size:17px;
  line-height:1.3;
  margin-bottom:3px;
}

.project-info p{
  font-size:14px;
  color:#666;
}

/* GALLERY */
.gallery-card{
  padding:14px 18px 18px;
  margin-top:12px;
}

.gallery-strip{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:12px;
  margin-top:10px;
}

.gallery-strip img{
  height:95px;
  object-fit:cover;
  border-radius:8px;
  border:1px solid #edf1f7;
  transition:0.35s ease;
}

.gallery-strip img:hover{
  transform:scale(1.04);
}

/* RIGHT */
.right-column{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.testimonial-card{
  padding:18px 22px;
  text-align:center;
  min-height:170px;
}

.quote-mark{
  font-size:56px;
  line-height:1;
  color:#9bb6e9;
  margin:6px 0 2px;
}

.testimonial-text{
  font-size:17px;
  color:#333;
  line-height:1.6;
  max-width:380px;
  margin:0 auto 10px;
}

.stars{
  color:#f5b301;
  font-size:22px;
  letter-spacing:2px;
  margin-bottom:8px;
}

.testimonial-card h4{
  font-size:15px;
  font-weight:600;
  color:#333;
}

.clients-card{
  padding:16px 22px 18px;
}

.client-logos{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
}

.client-box{
  height:72px;
  border:1px solid #e8edf6;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:var(--primary);
  background:#fafcff;
}

.cta-panel{
  background: linear-gradient(135deg, #0c48ad, #082d70);
  border-radius:12px;
  color:#fff;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  min-height:130px;
  box-shadow:var(--shadow);
}

.cta-content h3{
  font-size:32px;
  line-height:1.15;
  margin-bottom:6px;
}

.cta-content p{
  font-size:16px;
  margin-bottom:14px;
}

.contact-btn{
  display:inline-block;
  background:#fff;
  color:var(--primary);
  padding:12px 26px;
  border-radius:6px;
  font-weight:700;
}

.cta-illustration{
  font-size:56px;
  opacity:0.9;
}

/* CAREER */
.career-section{
  padding:0 0 30px;
  background:#fff;
}

.career-box{
  background:#f7f9ff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  box-shadow:var(--shadow);
}

.career-box h2{
  font-size:34px;
  margin-bottom:8px;
}

.career-btn{
  display:inline-block;
}

/* FOOTER */
.footer{
  background: linear-gradient(180deg, #0a2f75, #07275f);
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.1fr;
  gap:28px;
  padding:28px 0 18px;
}

.footer-logo h2{
  font-size:42px;
  line-height:1;
  color:#fff;
  font-weight:800;
}

.footer-logo h2 span{
  color:var(--accent);
}

.footer-logo small{
  display:block;
  font-size:12px;
  margin-top:2px;
}
.footer-main-logo{
    width:220px;
    height:auto;
    margin-bottom:15px;
}

.footer-logo{
    margin-bottom:15px;
}
.footer-col p,
.footer-col li{
  color:rgba(255,255,255,0.92);
  font-size:15px;
  margin-top:10px;
}

.footer-col h3{
  font-size:22px;
  margin-bottom:12px;
}

.footer-col ul li{
  margin-bottom:6px;
}

.footer-social{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.footer-social a{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.15);
  padding:14px 0;
}

.footer-bottom-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:10px;
  align-items:center;
}

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  box-shadow:0 10px 24px rgba(0,0,0,0.2);
  z-index:999;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media (max-width:1300px){
  .services-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .gallery-strip{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width:1100px){
  .nav-links{
    gap:20px;
  }

  .main-grid,
  .about-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:992px){
  .navbar{
    position:absolute;
    top:84px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    box-shadow:0 10px 24px rgba(0,0,0,0.08);
    padding:20px;
  }

  .navbar.active{
    display:block;
  }

  .nav-links{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-actions .quote-btn{
    display:none;
  }

  .about-btn,
  .career-btn{
    display:inline-block !important;
  }

  .hero-content h2{
    font-size:44px;
  }

  .welcome-script{
    font-size:32px;
  }
}

@media (max-width:768px){
  .topbar-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .services-grid,
  .stats-box,
  .projects-grid,
  .gallery-strip,
  .footer-grid,
  .client-logos{
    grid-template-columns:1fr;
  }

  .stat-item{
    border-right:none;
    justify-content:flex-start;
    padding:10px 16px;
  }

  .hero-slide,
  .hero-inner{
    min-height:520px;
  }

  .hero-content h2{
    font-size:34px;
  }

  .hero-content h3{
    font-size:17px;
  }

  .hero-list li{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-panel,
  .career-box,
  .footer-bottom-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .about-image img{
    height:300px;
  }

  .career-box h2{
    font-size:28px;
  }

  .hero-arrow{
    width:40px;
    height:40px;
  }
  
  
  /* PREMIUM CLIENTS SECTION */
.premium-clients{
  padding: 20px 22px 22px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(10,61,150,0.05), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.clients-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:18px;
}

.clients-header h3{
  font-size:22px;
  line-height:1.3;
  color:#111827;
  margin-top:2px;
}

.clients-badge{
  background: linear-gradient(90deg, #0d49b0, #082d70);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.3px;
  white-space:nowrap;
  box-shadow:0 8px 20px rgba(10,61,150,0.18);
}

.clients-grid-premium{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.client-brand-card{
  position:relative;
  background:#fff;
  border:1px solid #e9eef8;
  border-radius:16px;
  padding:18px;
  display:flex;
  align-items:center;
  gap:16px;
  min-height:120px;
  box-shadow:0 10px 26px rgba(15, 23, 42, 0.06);
  transition:all 0.35s ease;
}

.client-brand-card::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:4px;
  border-radius:10px;
  background:linear-gradient(180deg, #0d49b0, #f15a24);
  opacity:0;
  transition:0.3s ease;
}

.client-brand-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 34px rgba(15, 23, 42, 0.10);
  border-color:#dce7fb;
}

.client-brand-card:hover::before{
  opacity:1;
}

.client-logo-wrap{
  width:110px;
  min-width:110px;
  height:72px;
  background:#fff;
  border:1px solid #edf1f7;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}

.client-logo-wrap img{
  max-width:100%;
  max-height:52px;
  object-fit:contain;
  display:block;
}

.client-brand-info h4{
  font-size:18px;
  line-height:1.25;
  margin-bottom:4px;
  color:#111827;
}

.client-brand-info p{
  font-size:14px;
  color:#6b7280;
  margin:0;
  line-height:1.5;
}

@media (max-width: 768px){
  .clients-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .clients-grid-premium{
    grid-template-columns:1fr;
  }

  .client-brand-card{
    padding:16px;
  }

  .client-logo-wrap{
    width:90px;
    min-width:90px;
    height:64px;
  }

  .client-brand-info h4{
    font-size:16px;
  }
}
}

.logo-box{
 display:flex;
 align-items:center;
}
.main-logo{
 height:90px;
 width:auto;
 display:block;
}
.nav-wrap{
 min-height:110px;
}
@media (max-width:768px){
 .main-logo{height:65px;}
 .nav-wrap{min-height:85px;}
}
