/* ================= HERO ================= */

:root {
  /* ===== Brand Colors ===== */
  --primary: #194479;
  --primary-soft: rgba(25, 68, 121, 0.12);

  --accent: #e26c0c;
  --accent-2: #ff974a;
  --accent-soft: rgba(226, 108, 12, 0.14);

  /* ===== Backgrounds ===== */
  --bg-dark: #0b1220;
  --bg-darker: #0a0f1a;
  --bg-light: #ffffff;
  --bg-surface: #f8fafc;

  /* ===== Text ===== */
  --text-strong: #0b1220;
  --text-main: #2b3345;
  --text-muted: #6b7280;

  /* ===== Layout ===== */
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  /* ===== Motion ===== */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}



.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container.narrow {
  max-width: 860px;
}

.section {
  padding: 50px 0;
  position: relative;
}

.section.alt {
  background: var(--bg-surface);
}

.center {
  text-align: center;
}






.cta-ecom-travel{
  margin-top:40px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:18px 46px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  font-weight:600;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(25,68,121,.35);
  transition:
    transform .6s var(--ease-premium),
    box-shadow .6s var(--ease-premium),
    background .6s var(--ease-premium);
}

/* TEXT */
.cta-text{
  position:relative;
  z-index:2;
  transition:transform .6s var(--ease-premium);
  white-space:nowrap;
}

/* ICON BASE */
.cta-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  font-size:18px;
  position:relative;
  z-index:2;
  transition:all .6s var(--ease-premium);
}

/* LEFT ICON (TRAVELER) */
.cta-icon.travel{
  position:absolute;
  left:18px;
}

/* RIGHT ICON (TARGET) */
.cta-icon.target{
  position:absolute;
  right:18px;
}

/* HOVER EFFECT */
.cta-ecom-travel:hover{
  transform:scale(1.08);
  background:linear-gradient(135deg,var(--accent),var(--primary));
  box-shadow:0 35px 95px rgba(226,108,12,.45);
}

/* ICON TRAVELS ACROSS TEXT */
.cta-ecom-travel:hover .cta-icon.travel{
  transform:translateX(calc(100% + 250px));
}

/* RIGHT ICON MOVES OUT */
.cta-ecom-travel:hover .cta-icon.target{
  transform:translateX(40px);
  opacity:0;
}

/* TEXT SLIDES LEFT SLIGHTLY */
.cta-ecom-travel:hover .cta-text{
  transform:translateX(-20px);
}


/* ===============================
   iOS HERO – LEFT APPLE BACKGROUND
================================ */
/* ===============================
   iOS HERO – PRO MAX
================================ */

/* =========================================
   CLOUD HERO – CENTER CONTENT + SIDE IMAGES
========================================= */

.cloud-hero-centered{
  padding:120px 0 140px;
  background:
    radial-gradient(circle at 15% 20%, var(--primary-soft), transparent 45%),
    radial-gradient(circle at 85% 80%, var(--accent-soft), transparent 45%),
    var(--bg-light);
  overflow:hidden;
}

/* GRID LAYOUT */
.cloud-hero-layout{
  max-width:1400px;
  margin:auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1.3fr 1fr;
  align-items:center;
  gap:60px;
}

/* SIDE IMAGES */
.cloud-side{
  display:flex;
  justify-content:center;
}

.cloud-side img{
  width:100%;
  max-width:300px;
  height:520px;
  object-fit:cover;
  border-radius:var(--radius-xl);
  box-shadow:0 40px 120px rgba(0,0,0,.14);
  animation:cloudFloat 7s ease-in-out infinite;
}

/* DIFFERENT TIMINGS FOR NATURAL MOTION */
.cloud-side-left img{
  animation-delay:0s;
}
.cloud-side-right img{
  animation-delay:3.5s;
}

/* FLOAT ANIMATION */
@keyframes cloudFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-24px)}
}

/* CENTER CONTENT */
.cloud-hero-content{
  text-align:center;
  position:relative;
  z-index:2;
}

/* CHIP */
.cloud-chip{
  display:inline-block;
  padding:10px 20px;
  border-radius:999px;
  background:rgba(25,68,121,.08);
  color:var(--primary);
  font-weight:600;
  margin-bottom:24px;
}

/* TITLES */
.cloud-hero-title{
  font-size:3.1rem;
  line-height:1.15;
  color:var(--text-strong);
}
.cloud-hero-title span{
  color:var(--primary);
}

.cloud-hero-subtitle{
  margin-top:16px;
  font-size:1.45rem;
  color:var(--accent);
}

/* TEXT */
.cloud-hero-desc{
  margin:22px auto 0;
  max-width:680px;
  color:var(--text-main);
}

.cloud-hero-muted{
  margin-top:10px;
  max-width:680px;
  margin-inline:auto;
  color:var(--text-muted);
}

/* SECONDARY CTA */
.cloud-hero-secondary-cta{
  margin-top:22px;
  display:flex;
  justify-content:center;
  gap:22px;
}

.cloud-hero-secondary-cta a{
  color:var(--primary);
  font-weight:500;
  text-decoration:none;
  position:relative;
}

.cloud-hero-secondary-cta a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:.4s var(--ease-premium);
}

.cloud-hero-secondary-cta a:hover::after{
  width:100%;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .cloud-hero-layout{
    grid-template-columns:1fr;
    text-align:left;
  }

  .cloud-side{
    display:none;
  }

  .cloud-hero-content{
    text-align:left;
  }

  .cloud-hero-secondary-cta{
    justify-content:flex-start;
  }
}



/* =========================================
   WHY CLOUD CONSULTING – PREMIUM SECTION
========================================= */

.cloud-why-premium{
  padding:50px 0 50px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg-surface) 100%);
}

/* LAYOUT */
.cloud-why-layout{
  margin-top:70px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:center;
}

/* LEFT VISUAL STRIP */
.cloud-why-visual{
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* VISUAL CARDS */
.cloud-visual-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:38px 28px;
  font-size:1.2rem;
  font-weight:600;
  color:var(--primary);
  box-shadow:0 30px 90px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
  animation:cloudLift 6s ease-in-out infinite;
}

/* STAGGERED MOTION */
.cloud-visual-card.v2{animation-delay:1.5s;}
.cloud-visual-card.v3{animation-delay:3s;}

@keyframes cloudLift{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

/* RIGHT CONTENT */
.cloud-why-content{
  max-width:620px;
}

.cloud-why-text{
  font-size:1.15rem;
  color:var(--text-main);
  line-height:1.75;
  margin-bottom:22px;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .cloud-why-layout{
    grid-template-columns:1fr;
  }
  .cloud-why-visual{
    flex-direction:row;
    justify-content:center;
  }
}
@media(max-width:600px){
  .cloud-why-visual{
    flex-direction:column;
  }
}





/* =========================================
   IMPORTANCE OF CLOUD CONSULTING – PREMIUM
========================================= */

.cloud-importance-premium{
  padding:50px 0 50px;
  background:
    radial-gradient(circle at 10% 20%, var(--primary-soft), transparent 45%),
    radial-gradient(circle at 90% 85%, var(--accent-soft), transparent 45%),
    var(--bg-light);
}

/* LAYOUT */
.cloud-importance-layout{
  margin-top:80px;
  display:grid;
  grid-template-columns:120px 1fr;
  gap:60px;
  align-items:flex-start;
}

/* LEFT STRATEGY RAIL */
.cloud-importance-rail{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:10px 0;
}

.cloud-importance-rail::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:3px;
  height:100%;
  background:linear-gradient(
    180deg,
    var(--primary),
    var(--accent)
  );
  transform:translateX(-50%);
  border-radius:10px;
}

/* DOTS */
.rail-dot{
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  border:3px solid var(--primary);
  position:relative;
  z-index:2;
  box-shadow:0 0 0 6px rgba(25,68,121,.08);
}

/* RIGHT CONTENT */
.cloud-importance-content{
  display:grid;
  gap:34px;
}

/* ITEM */
.cloud-importance-item{
  background:#fff;
  padding:32px 34px;
  border-radius:var(--radius-lg);
  box-shadow:0 30px 80px rgba(0,0,0,.08);
  transition:all .6s var(--ease-premium);
  position:relative;
}

.cloud-importance-item h3{
  font-size:1.2rem;
  color:var(--text-strong);
  margin-bottom:10px;
}

.cloud-importance-item p{
  color:var(--text-main);
  line-height:1.7;
}

/* HOVER EFFECT – CONSULTING LIFT */
.cloud-importance-item:hover{
  transform:translateX(12px);
  box-shadow:0 45px 120px rgba(0,0,0,.14);
}

/* RESPONSIVE */
@media(max-width:1024px){
  .cloud-importance-layout{
    grid-template-columns:1fr;
  }

  .cloud-importance-rail{
    display:none;
  }

  .cloud-importance-item:hover{
    transform:translateY(-8px);
  }
}






/* =========================================
   CLOUD SERVICES – PIPELINE ARCHITECTURE
========================================= */

.cloud-services-pipeline{
  padding:130px 0 150px;
  background:
    radial-gradient(circle at 12% 18%, var(--primary-soft), transparent 40%),
    radial-gradient(circle at 88% 82%, var(--accent-soft), transparent 45%),
    var(--bg-light);
}

/* INTRO */
.cloud-pipeline-intro{
  margin-top:30px;
  max-width:760px;
  color:var(--text-main);
}

/* PIPELINE */
.cloud-pipeline{
  position:relative;
  margin-top:90px;
  padding:40px 0;
}

/* CENTER LINE */
.cloud-pipeline-line{
  position:absolute;
  left:50%;
  top:0;
  width:3px;
  height:100%;
  background:linear-gradient(
    180deg,
    var(--primary),
    var(--accent)
  );
  transform:translateX(-50%);
  opacity:.45;
  border-radius:10px;
}


.cloud-pipeline-item:hover .pipeline-number{
  opacity:.65;
  -webkit-text-stroke-color:var(--accent);
  text-shadow:0 0 18px rgba(226,108,12,.35);
}


/* ITEM */
.cloud-pipeline-item{
  position:relative;
  width:50%;
  padding:30px 40px;
  box-sizing:border-box;
}

.cloud-pipeline-item.left{
  left:0;
  text-align:right;
}
.cloud-pipeline-item.right{
  left:50%;
  text-align:left;
}

/* NUMBER – OUTLINED */
.pipeline-number{
  position:absolute;
  top:20px;
  font-size:64px;
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:2.6px var(--primary);
  opacity:.85;
  transition:all .6s var(--ease-premium);
  z-index: 1000;
 
}

.cloud-pipeline-item.left .pipeline-number{
  right:-20px;
}
.cloud-pipeline-item.right .pipeline-number{
  left:-20px;
}

/* CONTENT */
.pipeline-content{
  position:relative;
  background:#fff;
  padding:34px 36px;
  border-radius:var(--radius-lg);
  box-shadow:0 35px 100px rgba(0,0,0,.08);
  transition:all .6s var(--ease-premium);
  overflow:hidden;
}

/* GRADIENT LAYER */
.pipeline-content::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  opacity:0;
  transition:opacity .6s var(--ease-premium);
  z-index:0;
}

/* CONTENT ABOVE GRADIENT */
.pipeline-content > *{
  position:relative;
  z-index:2;
}

/* HOVER EFFECT */
.cloud-pipeline-item:hover .pipeline-content::before{
  opacity:1;
}

.cloud-pipeline-item:hover .pipeline-content{
  transform:translateY(-12px);
  box-shadow:0 55px 140px rgba(0,0,0,.18);
}

/* TEXT COLOR ON GRADIENT */
.cloud-pipeline-item:hover .pipeline-content h3,
.cloud-pipeline-item:hover .pipeline-content p,
.cloud-pipeline-item:hover .pipeline-content li{
  color:#fff;
}


.pipeline-content h3{
  color:var(--text-strong);
  font-size:1.15rem;
  margin-bottom:10px;
}

.pipeline-content p{
  color:var(--text-main);
  font-size:.95rem;
  margin-bottom:12px;
}

.pipeline-content ul{
  padding-left:18px;
  color:var(--text-muted);
  font-size:.9rem;
}

.pipeline-content li{
  margin-bottom:6px;
}

/* HOVER – PREMIUM MOTION */
.cloud-pipeline-item:hover .pipeline-content{
  transform:translateY(-12px);
  box-shadow:0 55px 140px rgba(0,0,0,.14);
}

.cloud-pipeline-item:hover .pipeline-number{
  opacity:.55;
  -webkit-text-stroke-color:var(--accent);
  transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:1024px){
  .cloud-pipeline-line{
    left:0;
    display:none;
  }
  .cloud-pipeline-item{
    width:100%;
    padding:20px 0;
    text-align:left;
  }
  .pipeline-number{
    position:relative;
    left:auto!important;
    right:auto!important;
    margin-bottom:10px;
    display:block;
  }
}
/* =========================================
   CLOUD PIPELINE – RESPONSIVE FIX
========================================= */

/* ---------- TABLET & MOBILE ---------- */
@media (max-width: 1024px) {

  .cloud-services-pipeline{
    padding: 80px 0 90px;
  }

  /* Remove center timeline */
  .cloud-pipeline-line{
    display: none;
  }

  .cloud-pipeline{
    margin-top: 50px;
    padding: 0;
  }

  /* Stack items */
  .cloud-pipeline-item{
    width: 100%;
    left: 0 !important;
    padding: 0;
    margin-bottom: 36px;
    text-align: left;
  }

  /* Number becomes inline */
  .pipeline-number{
    position: relative;
    font-size: 42px;
    margin-bottom: 12px;
    -webkit-text-stroke-width: 2px;
    opacity: .7;
  }

  /* Card safety */
  .pipeline-content{
    padding: 26px 22px;
    transform: none !important;
  }

  /* Disable hover motion on touch */
  .cloud-pipeline-item:hover .pipeline-content{
    transform: none;
    box-shadow: 0 25px 70px rgba(0,0,0,.12);
  }

  .cloud-pipeline-item:hover .pipeline-content::before{
    opacity: 0;
  }

  .cloud-pipeline-item:hover .pipeline-number{
    transform: none;
    opacity: .7;
  }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 600px) {

  .cloud-services-pipeline{
    padding: 60px 0 70px;
  }

  .pipeline-number{
    font-size: 36px;
  }

  .pipeline-content h3{
    font-size: 1.05rem;
  }

  .pipeline-content p,
  .pipeline-content li{
    font-size: .9rem;
    line-height: 1.6;
  }

  .pipeline-content ul{
    padding-left: 16px;
  }
}



/* =========================================
   WHY CHOOSE US – KINETIC SPOTLIGHT DESIGN
========================================= */

.cloud-why-kinetic{
  padding:40px 0 50px;
  background:#fff;
  overflow:hidden;
}

/* INTRO */
.cloud-why-kinetic-intro{
  margin-top:30px;
  max-width:760px;
  color:var(--text-main);
}

/* ZONE */
.cloud-why-kinetic-zone{
  position:relative;
  margin-top:20px;
  padding:20px 0;
}

/* MOVING GRADIENT BANDS */
.kinetic-band{
  position:absolute;
  left:-10%;
  width:120%;
  height:220px;
  background:linear-gradient(
    135deg,
    var(--primary-soft),
    var(--accent-soft)
  );
  transform:skewY(-6deg);
  animation:bandMove 14s linear infinite;
}

.band-1{
  top:0;
}

.band-2{
  bottom:0;
  animation-direction:reverse;
  opacity:.7;
}

@keyframes bandMove{
  0%{transform:translateX(0) skewY(-6deg);}
  50%{transform:translateX(-80px) skewY(-6deg);}
  100%{transform:translateX(0) skewY(-6deg);}
}

/* ITEMS */
.cloud-why-kinetic-items{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px 80px;
  z-index:2;
}

/* ITEM */
.kinetic-item{
  background:#fff;
  padding:40px 46px;
  border-radius:var(--radius-xl);
  box-shadow:0 40px 120px rgba(0,0,0,.1);
  transition:all .7s var(--ease-premium);
  position:relative;
  overflow:hidden;
}

/* NUMBER – OUTLINE */
.kinetic-number{
  font-size:56px;
  font-weight:700;
  color:transparent;
  -webkit-text-stroke:1.6px var(--accent);
  opacity:.75;
  display:block;
  margin-bottom:10px;
  transition:all .6s var(--ease-premium);
}

/* TEXT */
.kinetic-item h3{
  font-size:1.1rem;
  color:var(--text-strong);
}

/* HOVER EFFECT */
.kinetic-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  opacity:0;
  transition:opacity .6s var(--ease-premium);
  z-index:0;
}

.kinetic-item > *{
  position:relative;
  z-index:2;
}

.kinetic-item:hover::before{
  opacity:1;
}

.kinetic-item:hover{
  transform:translateY(-18px) scale(1.02);
  box-shadow:0 70px 180px rgba(0,0,0,.18);
}

.kinetic-item:hover h3{
  color:#fff;
}

.kinetic-item:hover .kinetic-number{
  opacity:.6;
  -webkit-text-stroke-color:#fff;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .cloud-why-kinetic-items{
    grid-template-columns:1fr;
  }
  .kinetic-band{
    height:160px;
  }
}







.ios-conversion{
  padding:130px 0;
  background:#fff;
}

.ios-conversion-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:90px;
  align-items:flex-start;
}

/* LEFT VISUAL */
.ios-conversion-visual{
  position:sticky;
  top:120px;
}

.ios-visual-frame{
  width:260px;
  margin:auto;
}

.ios-visual-frame img{
  width:100%;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}

/* RIGHT CONTENT */
.ios-conversion-content{
  display:flex;
  flex-direction:column;
  gap:70px;
}

.ios-block h2,
.ios-final-cta h2{
  font-size:32px;
  margin-bottom:14px;
  color:var(--text-strong);
}

.ios-block p,
.ios-final-cta p{
  color:var(--text-main);
  margin-bottom:22px;
  font-size:16px;
}

/* LIST */
.ios-points{
  list-style:none;
  padding:0;
  margin:0 0 26px;
}

.ios-points li{
  position:relative;
  padding-left:26px;
  margin-bottom:12px;
  font-size:15px;
  color:var(--text-main);
}

.ios-points li::before{
  content:'';
  position:absolute;
  left:0;
  top:8px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg,#194479,#e26c0c);
}

/* SUB CTA BUTTONS */
.ios-sub-cta-row{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}

.ios-sub-cta{
  margin-top:8px;
}

.ios-link-btn{
  position:relative;
  font-weight:600;
  color:#000;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:transform .3s ease;
}

.ios-link-btn span{
  position:absolute;
  left:0;
  bottom:-4px;
  height:2px;
  width:0;
  background:linear-gradient(90deg,#194479,#e26c0c);
  transition:width .4s ease;
}

.ios-link-btn:hover{
  transform:scale(1.04);
}

.ios-link-btn:hover span{
  width:100%;
}

/* MAIN CTA */
.ios-main-cta{
  margin:26px 0 20px;
  display:inline-flex;
}

/* RESPONSIVE */
@media(max-width:992px){
  .ios-conversion-grid{
    grid-template-columns:1fr;
  }

  .ios-conversion-visual{
    position:relative;
    top:0;
    margin-bottom:40px;
  }

  .ios-visual-frame{
    width:220px;
  }
}






.uiux-faq{
  padding:50px 0;
  background:var(--bg-dark);
  
}

.uiux-faq-header{
  max-width:760px;
  margin-bottom:80px;
}

.uiux-faq-header h2{
  font-size:2.5rem;
  color:var(--text-strong);
  margin-bottom:12px;
}

.uiux-faq-header p{
  color:var(--text-muted);
  line-height:1.7;
}

/* FAQ LIST */
.uiux-faq-list{
  max-width:900px;
}

/* ITEM */
.faq-item{
  border-radius:var(--radius-xl);
  background:var(--bg-light);
  box-shadow:var(--shadow-soft);
  margin-bottom:18px;
  overflow:hidden;
}

/* QUESTION */
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 30px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:1.05rem;
  font-weight:500;
  color:var(--text-strong);
  text-align:left;
  transition:var(--transition-med);
}

/* ICON */
.faq-icon{
  width:22px;
  height:22px;
  position:relative;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:var(--accent);
  transition:var(--transition-med);
}
.faq-icon::before{
  width:2px;
  height:100%;
  left:50%;
  top:0;
  transform:translateX(-50%);
}
.faq-icon::after{
  width:100%;
  height:2px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 30px;
  color:var(--text-muted);
  line-height:1.7;
  transition:max-height .5s ease, padding .4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:260px;
  padding:0 30px 24px;
}

.faq-item.active .faq-icon::before{
  transform:translateX(-50%) rotate(90deg);
  opacity:0;
}

.faq-item.active .faq-question{
  color:var(--primary);
}
