/* ================= RESET ================= */
*{ margin:0; padding:0; box-sizing:border-box; }
html, body{ width:100%; overflow-x:hidden; }
body{ font-family:'Outfit',sans-serif; background:#fff; }
img{ max-width:100%; height:auto; display:block; }

/* ================= CONTAINER ================= */
.container{
  width:100%;
  max-width:1440px;
  margin:0 auto;
  padding:0 24px;
}

/* ================= HERO ================= */
.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  background-image:url("../images/odyssey hero image.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:grid;
  grid-template-rows:auto 1fr;
}

/* ================= HEADER ================= */
.header{
  position:relative;
  z-index:10;
  padding:18px 0;
}

.header-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  position:relative;
}

.brand-logo{ height:58px; }

.header-right{
  display:flex;
  align-items:center;
  gap:14px;
}

/* hidden checkbox */
.nav-toggle{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* Desktop Nav */
.navbox{
  display:flex;
  gap:30px;
  padding:12px 32px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(0,0,0,0.35);
}

.navlink{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:.25s;
  cursor:pointer;
}
.navlink:hover{ color:#2ec5ff; }

.enquire-btn{
  padding:10px 20px;
  border-radius:8px;
  background:linear-gradient(#f1f1f1,#838181);
  color:#000000;
  text-decoration:none;
  font-weight:600;
  transition:.25s;
  cursor:pointer;
  white-space:nowrap;
}
.enquire-btn:hover{
  background:linear-gradient(#ffffff,#7b7a7a);
  transform:translateY(-2px);
}

/* Hamburger */
.hamburger{
  display:none;
  width:44px;
  height:44px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.25);
  background:rgba(0,0,0,0.35);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  flex-shrink:0;
  position:relative;
  z-index:10001;
}
.hamburger span{
  width:22px;
  height:2px;
  background:#fff;
  border-radius:2px;
  display:block;
  transition:.25s;
}

/* Mobile menu */
.mobile-menu{
  position:fixed;
  top:78px;
  right:16px;
  width:min(320px, calc(100% - 32px));
  border-radius:12px;
  overflow:hidden;
  max-height:0;
  opacity:0;
  pointer-events:none;
  border:0;
  box-shadow:none;
  background:transparent;
  transition:max-height .28s ease, opacity .18s ease;
  z-index:10000;
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  background:#fff;
}

.mobile-link{
  display:block;
  padding:14px 18px;
  text-decoration:none;
  color:#111 !important;
  font-weight:700;
  font-size:16px;
  border-bottom:1px solid rgba(0,0,0,0.08);
}
.mobile-link:last-child{ border-bottom:none; }
.mobile-link:hover{ background:#f3f3f3; }

.nav-toggle:checked ~ .mobile-menu{
  max-height:520px;
  opacity:1;
  pointer-events:auto;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 18px 35px rgba(0,0,0,0.22);
}

/* hamburger -> X */
.nav-toggle:checked ~ .header-right .hamburger span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}
.nav-toggle:checked ~ .header-right .hamburger span:nth-child(2){
  opacity:0;
}
.nav-toggle:checked ~ .header-right .hamburger span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* ================= HERO CONTENT ================= */
.hero-content{
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:10px 0 30px;
}

.hero-title-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.spinner{ width:56px; margin-top:18px; }

.hero-title{
  font-size:64px;
  color:#fff;
  font-weight:500;
  line-height:1.1;
}

.hero-digital{ color:#0c6f90; font-style:italic; }

.hero-desc{
  margin-top:18px;
  color:#ddd;
  max-width:720px;
  line-height:1.6;
}

.connect-btn{
  margin-top:24px;
  padding:12px 30px;
  border-radius:7px;
  border:none;
  background:linear-gradient(#f1f1f1,#a2a0a0);
  color:#000000;
  font-weight:600;
  cursor:pointer;
  transition:.25s;
  text-decoration:none;
}
.connect-btn:hover{
  transform:translateY(-2px);
  background:linear-gradient(#ffffff,#918e8e);
}

/* ================= SOCIAL ================= */
.social{
  margin-top:30px;
  display:flex;
  gap:40px;
  color:#fff;
  flex-wrap:wrap;
  justify-content:center;
}
.social-item{display:flex;align-items:center;gap:10px;color:#2ec5ff;text-decoration:none;font-weight:500;transition:none;}
.social-item:hover{color:#2ec5ff;text-decoration:none;}

/* ================= ABOUT ================= */
.about{ background:#fff; padding:60px 0 70px; }

.about-title{
  font-size:44px;
  font-weight:600;
  text-align:center;
  color:#111;
  margin-bottom:14px;
}

.about-desc{
  font-size:13px;
  line-height:1.85;
  max-width:920px;
  margin:0 auto 40px;
  text-align:center;
  color:#3d3d3d;
}

.about-wrapper{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:80px;
  max-width:1120px;
  margin:0 auto;
}

.about-left{
  width:480px;
  display:flex;
  flex-direction:column;
  gap:56px;
}

.about-item{
  display:grid;
  grid-template-columns:52px 1fr;
  grid-template-rows:auto auto;
  column-gap:18px;
  row-gap:14px;
  align-items:center;
}

.about-icon{ width:52px; grid-column:1; grid-row:1; }

.about-subtitle{
  grid-column:2;
  grid-row:1;
  font-size:18px;
  font-weight:500;
  margin:0;
  color:#111;
}

.about-para{
  grid-column:1 / -1;
  grid-row:2;
  font-size:13px;
  font-weight:400;
  line-height:1.75;
  letter-spacing:.01em;
  color:#444;
  margin:0;
  max-width:300px;
}

.about-right img{ width:520px; max-width:100%; }

/* ================= SERVICES ================= */
.services{ background:#fff; padding:60px 0; text-align:center; }

.services-small{
  font-size:22px;
  font-weight:600;
  color:#0b5f77;
  margin-bottom:8px;
}

.services-title{
  font-size:48px;
  font-weight:700;
  margin-bottom:40px;
}

.services-wrapper{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 200px 1fr;
  align-items:center;
  gap:40px;
}

.services-left{
  display:flex;
  flex-direction:column;
  gap:40px;
}
.services-left img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 10px 20px rgba(0,0,0,0.18);
}

.services-center{ display:flex; justify-content:center; align-items:center; }
.services-center img{ width:190px; }

.services-right{ display:flex; flex-direction:column; gap:40px; }

.service-card{
  height:180px;
  background:#f5f5f5;
  border-radius:10px;
  padding:26px 30px;
  text-align:left;
  box-shadow:0 10px 20px rgba(0,0,0,0.18);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.service-card h3{
  font-family:'Oleo Script', cursive;
  font-size:30px;
  font-weight:400;
  margin:0 0 10px;
}

.service-card p{
  font-size:16px;
  letter-spacing:.04em;
  line-height:1.6;
  color:#222;
  margin:0;
}

/* ================= DISCOVER ================= */
.discover{ background:#fff; padding:40px 0; }

.discover-title{
  text-align:center;
  font-size:42px;
  font-weight:700;
  margin-bottom:50px;
}
.discover-title span{ color:#0f7c8d; }

.discover-wrapper{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:70px;
}

.discover-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:50px;
}

.discover-text h3{
  font-family:"Oleo Script", cursive;
  font-size:34px;
  margin-bottom:20px;
}

.discover-text p{
  font-size:18px;
  line-height:1.9;
  color:#444;
  max-width:460px;
}

.discover-img{ display:flex; justify-content:center; }
.discover-img img{ width:100%; max-width:460px; }

/* ================= WHY CHOOSE ================= */
.why-choose{ background:#fff; padding:55px 0; }

.wc-container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.wc-title{
  font-size:44px;
  font-weight:700;
  margin:0 0 40px;
}
.wc-title span{ color:#1e8ca6; }

.wc-grid{
  display:grid;
  grid-template-columns:420px 1fr 1fr;
  grid-template-rows:170px 260px;
  gap:26px;
  align-items:stretch;
}

.wc-card{ border-radius:10px; box-shadow:0 10px 22px rgba(0,0,0,0.15); }

.wc-left{
  grid-column:1;
  grid-row:1 / span 2;
  background:linear-gradient(180deg, #0c1e2c 0%, #123f4c 100%);
  color:#eaf3f6;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.wc-left-text{ font-size:14px; line-height:1.7; margin:0; }
.wc-left-bottom{ text-align:center; }

.wc-left-head{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.wc-left-sub{
  font-size:13px;
  line-height:1.6;
  max-width:80%;
  margin:0 auto;
}

.wc-data{
  grid-column:2;
  grid-row:1;
  background:linear-gradient(180deg, #0c1e2c 0%, #123f4c 100%);
  color:#fff;
  padding:22px;
}

.wc-mini-head{ display:flex; gap:12px; align-items:center; }
.wc-mini-text{ font-size:13px; line-height:1.6; }

.wc-creative{
  grid-column:3;
  grid-row:1;
  background:#fff;
  padding:18px;
  display:grid;
  grid-template-columns:170px 1fr;
  align-items:center;
}
.wc-cube{ width:170px; }
.wc-creative-text h4{ font-size:18px; margin:0 0 10px; }
.wc-creative-text p{ font-size:13px; }

.wc-ai{
  grid-column:2 / span 2;
  grid-row:2;
  position:relative;
  border-radius:10px;
  overflow:hidden;
}
.wc-ai img{ width:100%; height:100%; object-fit:cover; }
.wc-ai-text{
  position:absolute;
  right:40px;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  font-size:32px;
  font-style:italic;
}
.wc-icon{ width:36px; }

/* ================= STACK TO SUCCESS ================= */
.stack{ background:#fff; padding:70px 0 40px; }
.stack-container{ position:relative; }

.stack-title{
  font-size:44px;
  font-weight:700;
  color:#111;
  margin:0 0 8px;
  max-width:1120px;
  margin-left:auto;
  margin-right:auto;
  padding-left:40px;
}

.stack-script{
  font-family:"Playfair Display", serif;
  font-style:italic;
  font-weight:700;
  font-size:54px;
  margin-bottom:30px;
  color:#111;
  max-width:1120px;
  margin-left:auto;
  margin-right:auto;
  padding-left:40px;
}

.stack-visual{
  position:relative;
  width:100%;
  max-width:1120px;
  height:820px;
  margin:0 auto;
  overflow:hidden;
}

.stack-cluster{ position:absolute; inset:0; }

.stack-cluster::before{
  content:"";
  position:absolute;
  left:-60px;
  right:-60px;
  bottom:-60px;
  height:220px;
  background: radial-gradient(circle at center, rgba(0,170,220,0.28), transparent 70%);
  z-index:0;
}

.stack-lines{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:480px;
  width:100%;
  z-index:1;
  pointer-events:none;
}
.stack-lines path{
  fill:none;
  stroke:rgba(255,255,255,0.9);
  stroke-width:3;
  stroke-linecap:round;
}

.balloon{
  position:absolute;
  left:0;
  top:0;
  width:110px;
  height:110px;
  border-radius:50%;
  z-index:3;
  user-select:none;
  will-change:transform;
  pointer-events:none;
  box-shadow:
    0 22px 45px rgba(0,0,0,0.18),
    inset 0 18px 28px rgba(255,255,255,0.18),
    inset 0 -18px 30px rgba(0,0,0,0.18);
}

.balloon img{ display:none !important; }

.balloon span{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:80%;
  text-align:center;
  color:#fff;
  font-weight:800;
  font-size:18px;
  line-height:1.15;
  text-shadow:0 4px 14px rgba(0,0,0,0.35);
}

.balloon{
  background: radial-gradient(circle at 30% 25%, #5fd1ff 0%, #0b88ad 42%, #063a4b 100%);
}

.balloon.b-pr,
.balloon.b-branding,
.balloon.b-websites,
.balloon.b-video,
.balloon.b-social,
.balloon.b-media,
.balloon.b-logo{
  background: radial-gradient(circle at 30% 25%, #8fe2ff 0%, #2a89ff 45%, #0a2c6c 100%);
}

.balloon.b-seo,
.balloon.b-mobile,
.balloon.b-marketing,
.balloon.b-influencers,
.balloon.b-technology,
.balloon.b-uiux{
  background: radial-gradient(circle at 30% 25%, #9aa7ae 0%, #3a4950 48%, #1a252a 100%);
}

.balloon.success{
  width:110px;
  height:110px;
  z-index:6;
  background: radial-gradient(circle at 30% 25%, #ffd1ad 0%, #ff7a2f 48%, #c84500 100%);
  box-shadow:
    0 28px 60px rgba(255,122,47,0.30),
    0 18px 40px rgba(0,0,0,0.16),
    inset 0 18px 30px rgba(255,255,255,0.18),
    inset 0 -18px 34px rgba(0,0,0,0.18);
}

.balloon.success span{
  font-size:20px;
  transform:translate(-50%, -50%) rotate(55deg);
}

/* ================= WORK PROCESS ================= */
.process{ background:#fff; padding:40px 0; }

.process-title{
  font-size:42px;
  font-weight:700;
  text-align:center;
  margin-bottom:50px;
  color:#111;
}
.process-title span{ color:#0b6a86; }

.process-grid{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:50px;
  flex-wrap:wrap;
}

.process-card{
  background:#f3f3f3;
  width:270px;
  padding:35px 25px;
  text-align:center;
  border-radius:6px;
  box-shadow:0 12px 25px rgba(0,0,0,0.15);
  transition:.25s;
}
.process-card-up{ margin-top:-40px; }

.process-icon{ display:flex; justify-content:center; margin-bottom:15px; }
.process-icon img{ width:42px; }

.process-card h3{ font-size:20px; font-weight:600; margin-bottom:12px; }

.process-card p{ font-size:14px; color:#555; line-height:1.6; }
.process-card:hover{ transform:translateY(-8px); }

/* ================= BRANDS ================= */
.brands{ background:#fff; padding:40px 0; text-align:center; }

.brands-title{
  font-family:"Playfair Display", serif;
  font-size:48px;
  font-style:italic;
  font-weight:600;
  margin-bottom:15px;
  color:#111;
}

.brands-desc{
  font-size:16px;
  color:#555;
  max-width:750px;
  margin:0 auto 40px;
  line-height:1.7;
}

.brands-row{ display:flex; justify-content:center; margin-bottom:35px; }
.brands-row img{ width:100%; max-width:1100px; object-fit:contain; }

/* ================= TESTIMONIALS ================= */
.testimonials{background:#f3f3f3;padding:40px 0;
  text-align:center;
}

.testi-small{
  font-family:"Playfair Display",serif;
  font-size:20px; 
  margin-bottom:10px; }
.testi-title{
  font-family:"Playfair Display", serif;
  font-size:46px;
  font-style:italic;
  margin-bottom:40px;
}

.testi-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
}

.testi-arrow{
  border:none;
  background:transparent;
  font-size:48px;
  color:#777;
  cursor:pointer;
  padding:8px 10px;
  user-select:none;
}
.testi-arrow:hover{ color:#111; }

.testi-viewport{
  position:relative;
  width:min(1120px, 100%);
  height:260px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.testi-cards{
  position:relative;
  width:100%;
  height:100%;
}

.testi-card{
  position:absolute;
  left:50%;
  top:50%;
  width:300px;
  min-height:160px;
  background:#fff;
  border-radius:10px;
  padding:20px 18px;
  box-shadow:0 16px 32px rgba(0,0,0,0.14);
  transform:translate(-50%, -50%);
  opacity:0;
  pointer-events:none;
  transition:transform .5s ease, opacity .5s ease, filter .5s ease;
}

.testi-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:22px;
}
.testi-head img{
  width:58px;
  height:58px;
  border-radius:50%;
  object-fit:cover;
}
.testi-head span{
  font-weight:800;
  font-size:17px;
  color:#111;
}

.testi-card p{
  color:#444;
  font-size:14px;
  line-height:1.7;
}

.testi-card.pos-2{
  opacity:.22;
  filter:blur(1px);
  transform:translate(-50%, -50%) translateX(-540px) scale(.84);
  z-index:1;
}
.testi-card.pos-1{
  opacity:.72;
  filter:blur(.35px);
  transform:translate(-50%, -50%) translateX(-310px) scale(.93);
  z-index:2;
}
.testi-card.active{
  opacity:1;
  filter:none;
  transform:translate(-50%, -50%) scale(1.08);
  z-index:5;
  pointer-events:auto;
}
.testi-card.pos1{
  opacity:.72;
  filter:blur(.35px);
  transform:translate(-50%, -50%) translateX(310px) scale(.93);
  z-index:2;
}
.testi-card.pos2{
  opacity:.22;
  filter:blur(1px);
  transform:translate(-50%, -50%) translateX(540px) scale(.84);
  z-index:1;
}
.testi-card.hide{
  opacity:0;
  transform:translate(-50%, -50%) scale(.75);
  z-index:0;
}

.testi-dots{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:10px;
}
.testi-dots span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#bbb;
  cursor:pointer;
}
.testi-dots span.active{ background:#333; }

@media(max-width:768px){
  .testi-viewport{ height:auto; overflow:visible; }
  .testi-cards{ height:auto; }
  .testi-card{
    position:relative;
    left:auto; top:auto;
    transform:none !important;
    opacity:1 !important;
    pointer-events:auto !important;
    margin:0 auto;
    width:100%;
    max-width:420px;
  }
  .testi-card.pos-2,
  .testi-card.pos-1,
  .testi-card.pos1,
  .testi-card.pos2,
  .testi-card.hide{ display:none; }
}

/* ================= APPLY / CTA ================= */
.apply{ background:#fff; padding:60px 0 30px; }

.apply-container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:90px;
}

.apply-left{ max-width:560px; }

.apply-title{
  font-size:40px;
  font-weight:700;
  margin-bottom:20px;
  color:#111;
  white-space:nowrap;
}

.apply-desc{
  font-size:15px;
  color:#555;
  line-height:1.8;
  margin-bottom:35px;
  max-width:520px;
}

.apply-btns{ display:flex; align-items:center; gap:28px; }
.apply-text{ font-size:18px; color:#111; }

.apply-btn{
  background:#111;
  color:#fff;
  padding:12px 36px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 18px rgba(0,0,0,0.22);
  transition:.2s;
}
.apply-btn:hover{ transform:translateY(-2px); }

.apply-right img{ width:460px; border-radius:12px; }

.apply-cat{ text-align:center; margin-top:45px; }
.apply-cat img{ width:170px; margin:0 auto; }

/* ================= FOOTER ================= */
.footer{
  background:#000;
  color:#e9e9e9;
  padding:50px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:60px;
  align-items:start;
}

.footer-brand{ margin-bottom:20px; }
.footer-logo{ width:170px; height:auto; }

.footer-desc{
  color:#bdbdbd;
  font-size:14px;
  line-height:1.7;
  max-width:320px;
  margin-bottom:25px;
}

.footer-follow-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
}

.footer-social{ display:flex; gap:18px; align-items:center; }
.footer-social a{ color:#fff; display:inline-flex; }
.footer-social svg{ width:22px; height:22px; transition:.25s; }
.footer-social a:hover svg{ transform:scale(1.2); }

.footer-col{ font-size:14px; }
.footer-title{
  font-size:22px;
  font-weight:700;
  color:#fff;
  margin-bottom:15px;
}
.footer-text{ color:#bdbdbd; line-height:1.7; }

.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ color:#bdbdbd; text-decoration:none; transition:.2s; }
.footer-links a:hover{ color:#fff; }

.footer-bottom{
  text-align:center;
  color:#888;
  font-size:13px;
  margin-top:40px;
  border-top:1px solid #222;
  padding-top:18px;
  
}

.footer a{
  color:#ffffff !important;
  text-decoration:none !important;
}

.footer a:hover{
  color:#ffffff !important;
  text-decoration:none !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width:1200px){
  .services-wrapper{ grid-template-columns:1fr 180px 1fr; }
  .wc-grid{ grid-template-columns:380px 1fr 1fr; }
}

@media (max-width:1024px){
  .container{ padding:0 20px; }
  .hero-title{ font-size:48px; }
  .spinner{ width:44px; margin-top:14px; }

  .services-wrapper{ grid-template-columns:1fr; gap:30px; }
  .services-center img{ width:160px; }
  .service-card{ height:auto; }

  .discover-row{ grid-template-columns:1fr; text-align:center; }
  .discover-text p{ margin:0 auto; }

  .wc-grid{ grid-template-columns:1fr; grid-template-rows:auto; }
  .wc-left, .wc-data, .wc-creative, .wc-ai{ grid-column:auto; grid-row:auto; }
  .wc-ai{ height:320px; }
  .wc-ai-text{ right:20px; font-size:26px; }

  .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; }
}

@media (max-width:900px){
  .about-wrapper{ flex-direction:column; align-items:center; gap:50px; }
  .about-left{ width:100%; max-width:480px; }
  .about-right img{ width:100%; max-width:520px; }

  .stack-title{ font-size:34px; padding-left:0; text-align:center; }
  .stack-script{ font-size:40px; padding-left:0; text-align:center; }

  .process{ padding:40px 0; }
  .process-title{ font-size:34px; }
  .process-card{ width:100%; max-width:380px; }
  .process-card-up{ margin-top:0; }

  .brands-title{ font-size:36px; }
  .brands-desc{ font-size:15px; padding:0 10px; }

  .apply-title{ white-space:normal; }
  .apply-container{ flex-direction:column; text-align:center; gap:35px; }
  .apply-btns{ justify-content:center; }
  .apply-right img{ width:100%; max-width:520px; }
}

@media (max-width:768px){
  .hero-title-row{ flex-direction:column; align-items:center; gap:10px; }
  .spinner{ margin-top:0; }
  .hero-title{ font-size:34px; }
  .hero-desc{ padding:0 10px; }

  .services-title{ font-size:36px; }
  .services-small{ font-size:18px; }

  .discover-title{ font-size:34px; margin-bottom:50px; }
  .discover-wrapper{ gap:60px; }

  .footer-grid{ grid-template-columns:1fr; gap:30px; }
}

@media (max-width:600px){
  .container{ padding:0 16px; }

  .navbox,
  .header-right > .enquire-btn{ display:none; }

  .hamburger{
    display:flex;
    width:34px;
    height:34px;
    border-radius:8px;
    gap:5px;
  }
  .hamburger span{ width:18px; height:2px; }

  .mobile-menu{
    width:min(300px, calc(100% - 20px));
    top:68px;
  }
  .mobile-link{
    padding:11px 14px;
    font-size:14px;
  }

  .hero-title{ font-size:30px; }
}

@media (max-width:480px){
  .hero-title{ font-size:28px; }
  .connect-btn{ width:100%; max-width:260px; }
  .enquire-btn{ width:100%; max-width:260px; text-align:center; }

  .hamburger{ width:32px; height:32px; }
  .mobile-link{ padding:10px 12px; font-size:13px; }
}
.social-item:visited{color:#2ec5ff;text-decoration:none;}

/* GAP FIX */
section{padding-top:50px !important;padding-bottom:50px !important;}

/* ===== STACK SECTION FIX ===== */
.stack{
  padding:60px 0 !important;
  margin:0 auto !important;
}

.balloon{
  width:85px !important;
  height:85px !important;
  border-radius:50% !important;
  position:absolute !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.balloon img{
  width:100% !important;
  height:100% !important;
  border-radius:50% !important;
  object-fit:cover !important;
}

.balloon span{
  position:absolute !important;
  top:50% !important;
  left:50% !important;
  transform:translate(-50%, -50%) !important;
  font-size:14px !important;
  font-weight:600 !important;
  color:#ffffff !important;
  text-align:center !important;
  line-height:1.1 !important;
  width:80% !important;
}

.balloon.success span{
  transform:translate(-50%, -50%) rotate(-35deg) !important;
}

.stack-title{
  margin-top:30px !important;
}

.stack-script{
  margin-bottom:40px !important;
}

.stack-visual::before,
.stack-visual::after,
.stack-cluster::before,
.stack-cluster::after{
  display:none !important;
  content:none !important;
}

.stack-visual{
  background:transparent !important;
}

.stack-cluster{
  height:auto !important;
}

.stack{
  padding:40px 0 !important;
  margin:0 !important;
}

.hero{
  padding-top:10px !important;
  margin-top:0 !important;
}

.hero-top{
  padding-top:5px !important;
  margin-top:0 !important;
  align-items:center !important;
}

.hero .container{
  padding-top:0 !important;
  margin-top:0 !important;
}

/* ===== REMOVE BIG GAP BELOW BALLOONS ===== */
.stack{
  padding-top:40px !important;
  padding-bottom:20px !important;
  margin:0 !important;
}

.stack-container{
  text-align:center;
  margin:0 auto !important;
  padding:0 !important;
}

.stack-visual{
  position:relative;
  height:480px !important;
  margin-top:20px !important;
  margin-bottom:0 !important;
  padding-bottom:0 !important;
  overflow:hidden;
}

.stack-cluster{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
  height:auto !important;
}

.stack-lines{
  bottom:0 !important;
}

.stack + section{
  margin-top:0 !important;
  padding-top:20px !important;
}

/* ================= SECTION ALIGNMENT FIX ================= */
.about{
  padding:60px clamp(40px,6vw,120px) 70px;
}

.services{
  padding:60px clamp(40px,6vw,120px);
}

.discover{
  padding:60px clamp(40px,6vw,120px);
}

.about-container,
.services .container,
.discover-wrapper{
  max-width:1200px;
  margin:0 auto;
}

/* ================= WORK PROCESS HORIZONTAL ================= */
.process-grid{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:30px;
  max-width:1000px;
  margin:0 auto;
}

.process-card{
  width:220px;
  background:#f3f3f3;
  padding:28px 20px;
  text-align:center;
  border-radius:6px;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.process-card-up{
  margin-top:-40px;
}

/* ================= BRANDS BIG SMOOTH SCROLL ================= */
.brands-slider{
  overflow:hidden;
  width:100%;
  margin-top:30px;
}

.brands-track{
  display:flex;
  align-items:center;
  gap:60px;
  width:max-content;
  animation:scrollBrands 20s linear infinite;
}

.brands-slider.reverse .brands-track{
  animation-direction:reverse;
}

.brands-slider:hover .brands-track{
  animation-play-state:paused;
}

.brands-track img{
  height:90px;
  width:auto;
  flex-shrink:0;
  object-fit:contain;
}

@keyframes scrollBrands{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}