* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}




body {
  background: radial-gradient(circle at top, #120000, #020617);
  color: #fff;
  font-family: Inter, sans-serif;
}












/* ================= HERO SECTION ================= */

.laravel-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 100px;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-left {
  max-width: 520px;
  z-index: 2;
}

/* BADGE */
.badge {
  display: inline-block;
  background: rgba(255, 77, 77, 0.15);
  color: #ff4d4d;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* HEADLINE */
.laravel-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.laravel-hero h1 span {
  color: #ff4d4d;
}

/* PARAGRAPH */
.laravel-hero p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 480px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.hero-actions button {
  padding: 12px 22px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s ease;
}

.hero-actions .primary {
  background: linear-gradient(135deg, #ff4d4d, #ff7a7a);
  color: #000;
}

.hero-actions .secondary {
  background: transparent;
  border: 1px solid rgba(255, 77, 77, 0.6);
  color: #fff;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .laravel-hero {
    padding: 100px 60px;
    gap: 40px;
  }

  .laravel-hero h1 {
    font-size: 48px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .laravel-hero {
    flex-direction: column;
    justify-content: center;
    padding: 110px 20px 80px;
    text-align: center;
  }

  .hero-left {
    margin-top: -400px!important;
    max-width: 100%;
  }

  .badge {
    font-size: 13px;
    padding: 6px 12px;
  }

  .laravel-hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .laravel-hero p {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-actions {
   flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions button {
    width: 100%;
    max-width: 260px;
    padding: 11px 0;
    font-size: 14px;
  }

  /* CANVAS SOFT BACKGROUND */
  #laravelCanvas {
    opacity: 0.45;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .laravel-hero h1 {
    font-size: 28px;
  }

  .laravel-hero p {
    font-size: 14px;
  }

  .hero-actions button {
    max-width: 220px;
  }
}













/* ===== HERO FIX ===== */
.laravel-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* TEXT */
.hero-left {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 0 24px;
}

/* CANVAS FULL HERO */
#laravelCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  pointer-events: none;
}






.build-section {
  padding: 140px 120px;
  background: radial-gradient(circle at top, #140000, #020617);
}

.section-heading {
  font-size: 52px;
  margin-bottom: 80px;
}

.section-heading span {
  color: #ff4d4d;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.build-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 77, 77, 0.15);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.build-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, transparent, rgba(255, 77, 77, .15));
  opacity: 0;
  transition: opacity 0.4s;
}

.build-card:hover::before {
  opacity: 1;
}

.build-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 77, 77, 0.25);
}

.build-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.build-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.build-card p {
  opacity: 0.75;
  line-height: 1.6;
}




.metrics {
  padding: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: linear-gradient(180deg, #020617, #120000);
}

.metric {
  border-left: 3px solid #ff4d4d;
  padding-left: 25px;
}

.metric h3 {
  font-size: 56px;
  color: #ff4d4d;
  margin-bottom: 10px;
}

.metric p {
  opacity: 0.75;
  font-size: 15px;
}


body {
  background: radial-gradient(circle at top, #120000, #020617);
  color: #fff;
  font-family: Inter, sans-serif;
}










.laravel-hero {
  min-height: 100vh;
  display: flex;
  padding: 120px;
  position: relative;
}

.hero-left {
  max-width: 520px;
  z-index: 2;
}

.badge {
  background: rgba(255, 50, 50, .15);
  color: #ff4d4d;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 20px 0;
}

h1 span {
  color: #ff4d4d;
}

p {
  opacity: 0.8;
  font-size: 18px;
}

.hero-actions {
  margin-top: 30px;
}

button {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.primary {
  background: #ff4d4d;
  color: black;
}

.secondary {
  background: transparent;
  color: white;
  border: 1px solid #ff4d4d;
  margin-left: 15px;
}

/* #laravelCanvas {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
} */

.build-section {
  padding: 140px 120px;
  background: radial-gradient(circle at top, #140000, #020617);
}

.section-heading {
  font-size: 52px;
  margin-bottom: 80px;
}

.section-heading span {
  color: #ff4d4d;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.build-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 77, 77, 0.15);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.build-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, transparent, rgba(255, 77, 77, .15));
  opacity: 0;
  transition: opacity 0.4s;
}

.build-card:hover::before {
  opacity: 1;
}

.build-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 77, 77, 0.25);
}

.build-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.build-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.build-card p {
  opacity: 0.75;
  line-height: 1.6;
}




.metrics {
  padding: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: linear-gradient(180deg, #020617, #120000);
}

.metric {
  border-left: 3px solid #ff4d4d;
  padding-left: 25px;
}

.metric h3 {
  font-size: 56px;
  color: #ff4d4d;
  margin-bottom: 10px;
}

.metric p {
  opacity: 0.75;
  font-size: 15px;
}

body {
  background: radial-gradient(circle at top, #120000, #020617);
  color: #fff;
  font-family: Inter, sans-serif;
}










.laravel-hero {
  min-height: 100vh;
  display: flex;
  padding: 120px;
  position: relative;
}

.hero-left {
  max-width: 520px;
  z-index: 2;
}

.badge {
  background: rgba(255, 50, 50, .15);
  color: #ff4d4d;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 20px 0;
}

h1 span {
  color: #ff4d4d;
}

p {
  opacity: 0.8;
  font-size: 18px;
}

.hero-actions {
  margin-top: 30px;
}

button {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.primary {
  background: #ff4d4d;
  color: black;
}

.secondary {
  background: transparent;
  color: white;
  border: 1px solid #ff4d4d;
  margin-left: 15px;
}

/* #laravelCanvas {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
} */

.build-section {
  padding: 140px 120px;
  background: radial-gradient(circle at top, #140000, #020617);
}

.section-heading {
  font-size: 52px;
  margin-bottom: 80px;
}

.section-heading span {
  color: #ff4d4d;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.build-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 77, 77, 0.15);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.build-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, transparent, rgba(255, 77, 77, .15));
  opacity: 0;
  transition: opacity 0.4s;
}

.build-card:hover::before {
  opacity: 1;
}

.build-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 77, 77, 0.25);
}

.build-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.build-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.build-card p {
  opacity: 0.75;
  line-height: 1.6;
}




.metrics {
  padding: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: linear-gradient(180deg, #020617, #120000);
}

.metric {
  border-left: 3px solid #ff4d4d;
  padding-left: 25px;
}

.metric h3 {
  font-size: 56px;
  color: #ff4d4d;
  margin-bottom: 10px;
}

.metric p {
  opacity: 0.75;
  font-size: 15px;
}

.laravel-hero {
  min-height: 800px;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 100px;
  position: relative;
}

/* LEFT CONTENT */
.hero-left {
  max-width: 520px;
  z-index: 2;
}



/* ================= TABLET ================= */



/* ================= LARAVEL NAVBAR ================= */








/* ================= LARAVEL NAVBAR ================= */









@media(max-width:768px) {

  .laravel-hero {
    flex-direction: column;
    padding: 120px 20px 80px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  p {
    font-size: 16px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .secondary {
    margin-left: 0;
  }

  #laravelCanvas {
    opacity: .55;
  }
}




@media(max-width:768px) {
  .metrics {
    padding: 80px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .metric h3 {
    font-size: 36px;
  }

  .metric p {
    font-size: 14px;
  }
}






@media(max-width:900px) {


  /* CTA */
  .laravel-cta {
    padding: 10px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff4d4d, #ff7a7a);
    color: #000 !important;
    font-weight: 600;
  }



}



/* ================= BUILD SECTION RESPONSIVE ================= */

/* DEFAULT (DESKTOP) */
.build-section {
  padding: 140px 120px;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .build-section {
    padding: 100px 60px;
  }

  .section-heading {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .build-grid {
    gap: 30px;
  }

  .build-card {
    padding: 32px;
  }

  .build-card h3 {
    font-size: 22px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .build-section {
    padding: 80px 20px;
  }

  .section-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
  }

  .build-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .build-card {
    padding: 26px;
  }

  .build-icon {
    font-size: 32px;
  }

  .build-card h3 {
    font-size: 20px;
  }

  .build-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Disable hover animation on mobile */
  .build-card:hover {
    transform: none;
    box-shadow: none;
  }

  .build-card::before {
    display: none;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .section-heading {
    font-size: 28px;
  }

  .build-card {
    padding: 22px;
    border-radius: 16px;
  }

  .build-card h3 {
    font-size: 18px;
  }

  .build-card p {
    font-size: 14px;
  }
}





/* ui-ux */


/* ================= UI/UX NAVBAR ================= */









/* CTA BUTTON */
.ux-cta {
  padding: 10px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff6bcb, #7f5cff);
  color: #fff !important;
  font-size: 0.85rem;

}

/* ================= MOBILE ================= */












/* UIUX */
.uiux-section {
  padding: 120px 80px
}

.uiux-header {
  max-width: 700px;
  margin-bottom: 80px
}

.uiux-header h2 {
  font-size: 48px
}

.uiux-header span {
  color: #ff4d4d
}

.uiux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.uiux-card {
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 77, 77, .15);
  transition: .4s;
}

.uiux-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 77, 77, .25);
}

.uiux-card.highlight {
  border-color: #ff4d4d
}

/* TABLET */
@media(max-width:1024px) {

  #ui-hero {
    padding: 120px 40px;
    margin-top: 10px;
    ;
    height: 300px !important;
  }

  h1 {
    font-size: 46px
  }

  .uiux-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* MOBILE */
@media(max-width:768px) {




  #ui-hero {

    flex-direction: column;
    padding: 120px 20px 40px;
    text-align: center;
    height: 200px;
  }

  /* #laravelCanvas{
    position:relative;
    width:100%;
    height:320px;
  } */

  h1 {
    font-size: 34px
  }

  .uiux-grid {
    grid-template-columns: 1fr
  }
}

/* SMALL PHONES */
@media(max-width:480px) {
  h1 {
    font-size: 28px
  }

  #laravelCanvas {
    height: 260px
  }
}

/* ================= iPHONE 14 / PRO ================= */
@media (max-width: 430px) {

  /* ===== HERO SECTION FIX ===== */
  #ui-hero {
    padding: 80px 16px 20px;
    gap: 20px;

  }

  .hero-left {
    margin-top: 50px;
    height: 10px;
    max-width: 100%;
    text-align: center;
  }

  .badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  h1 {
    font-size: 26px;
    line-height: 1.15;
    margin: 12px 0;
  }

  .hero-left p {
    font-size: 14px;
  }

  /* ===== 3D MODEL – BIGGER ===== */
  /* #laravelCanvas{
    width: 100%;
    height: 800px; /* 🔥 bada kiya */


  /* ===== UI / UX SECTION ===== */
  .uiux-section {
    margin-top: -200px;
    padding: 70px 16px;
  }

  .uih {
    font-size: 36px;
    height: 50px !important;
    width: 100%;
  }

  .uip {
    margin-top: 35px;
    margin-left: 10px;
    font-size: 13px !important;
    width: 200px;
  }

  .uiux-header {
    margin-bottom: 35px;
    text-align: center;
  }

  .uiux-header h2 {
    font-size: 24px;
    /* 🔥 heading choti */
    line-height: 1.25;
  }

  .uiux-header p {
    font-size: 13px;
  }

  /* ===== UIUX GRID (2 x 3) ===== */
  .uiux-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 column */
    gap: 14px;
  }

  .uiux-card {
    padding: 18px;
    border-radius: 14px;
  }

  .step {
    font-size: 11px;
  }

  .uiux-card h3 {
    font-size: 15px;
    margin: 8px 0;
  }

  .uiux-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .tag {
    font-size: 10px;
    padding: 4px 8px;
    top: 14px;
    right: 14px;
  }
}





/* digital stratergies */


.strategy-section {
  padding: 160px 120px;
  margin-bottom: 200px;
  background: linear-gradient(180deg, #020617, #090012);
}

.strategy-head {
  max-width: 720px;
  margin-bottom: 100px;
}

.strategy-head h2 {
  font-size: 56px;
  margin-bottom: 18px;
}

.strategy-head span {
  color: #ff4d4d;
}

.strategy-head p {
  font-size: 18px;
  opacity: 0.75;
}

.strategy-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 120px;
}

.strategy-card {
  position: relative;
  padding: 45px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 77, 77, 0.15);
  transition: all 0.5s ease;
}

.strategy-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 77, 77, 0.2));
  opacity: 0;
  transition: opacity 0.5s;
}

.strategy-card:hover::after {
  opacity: 1;
}

.strategy-card:hover {
  transform: translateY(-18px);
  box-shadow: 0 45px 90px rgba(255, 77, 77, 0.25);
}

.strategy-card.highlight {
  border-color: #ff4d4d;
  box-shadow: 0 35px 80px rgba(255, 77, 77, 0.35);
}

.strategy-card h3 {
  font-size: 26px;
  margin: 18px 0;
}

.strategy-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 18px;
}

.strategy-card ul {
  padding-left: 18px;
}

.strategy-card li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.7;
}

.index {
  font-size: 14px;
  opacity: 0.5;
}

.strategy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 77, 77, 0.15);
}

.stat h4 {
  font-size: 42px;
  color: #ff4d4d;
}

.stat p {
  opacity: 0.7;
  margin-top: 10px;
}

@media (max-width: 480px) {

  /* ===== SECTION SPACING ===== */
  .strategy-section {
    padding: 90px 16px;
  }

  /* ===== HEADING ===== */
  .strategy-head {
    margin-bottom: 45px;
    text-align: center;
  }

  .strategy-head h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .strategy-head p {
    font-size: 14px;
  }

  /* ===== FLOW CARDS (2 x 2 GRID) ===== */
  .strategy-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 60px;
  }

  .strategy-card {
    padding: 20px;
    border-radius: 16px;
  }

  .strategy-card h3 {
    font-size: 15px;
    margin: 10px 0;
  }

  .strategy-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .strategy-card ul {
    padding-left: 14px;
  }

  .strategy-card li {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .index {
    font-size: 11px;
  }

  /* ===== STATS GRID ===== */
  .strategy-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat {
    padding: 22px;
    border-radius: 16px;
  }

  .stat h4 {
    font-size: 28px;
  }

  .stat p {
    font-size: 12px;
  }
}

@media (min-width: 390px) and (max-width: 430px) {
  .strategy-head h2 {
    font-size: 28px;
  }

  .strategy-card h3 {
    font-size: 16px;
  }

  .strategy-card p {
    font-size: 13px;
  }

  .stat h4 {
    font-size: 30px;
  }
}

@media (max-width: 1024px) {
  .strategy-section {
    padding: 120px 50px;
  }

  .strategy-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .strategy-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategy-head h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {}


















* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: radial-gradient(circle at top, #08121f, #02050a);
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: radial-gradient(circle at top, #08121f, #02050a);
  color: #fff;
  overflow-x: hidden;
}









html {
  scroll-behavior: smooth;
}

img,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  width: 100%;
  overflow-x: hidden;
}







/* ================= CLOUD NAVBAR ================= */






















/* ================= HERO 2 (NO THREE JS) ================= */

:root {
  --hero2-blue: #00d9ff;
  --hero2-dark: #02050a;
}

.cloud-hero-2 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(900px at 20% 10%, rgba(0, 217, 255, .18), transparent 60%),
    radial-gradient(800px at 80% 90%, rgba(0, 119, 255, .18), transparent 60%),
    linear-gradient(180deg, #02050a, #040b16);
  overflow: hidden;
}

.hero2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .3),
      rgba(0, 0, 0, .85));
}

.hero2-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 16px;
}

.hero2-content h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero2-content h1 span {
  color: var(--hero2-blue);
}

.hero2-content p {
  font-size: 18px;
  opacity: .8;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero2-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero2-btn {
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.hero2-btn.primary {
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  color: #000;
}

.hero2-btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero2-content h1 {
    font-size: 34px;
  }

  .hero2-content p {
    font-size: 14px;
  }

  .hero2-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
    margin: auto;
  }

  .hero2-btn {
    padding: 10px;
    font-size: 13px;
  }
}










@media (max-width: 430px) {



  /* HERO */




  .hero-visual {
    height: 260px;
  }

  /* SERVICES */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 12px;
  }

  /* ARCHITECTURE */
  .cloud-architecture {
    padding: 80px 16px;
  }

  .arch-left h2 {
    font-size: 26px;
  }

  .arch-left p {
    font-size: 14px;
  }

  .arch-left ul {
    grid-template-columns: 1fr;
  }

  .arch-box {
    width: 240px;
    height: 240px;
  }
}

/* CTA */



/* ================= CLOUD INVITE CTA ================= */
/* ================= CLOUD INVITE CTA (DESKTOP FIX) ================= */

.cloud-invite {
  padding: 120px 24px;
  background:
    radial-gradient(600px at 50% 0%, rgba(0, 217, 255, 0.22), transparent 70%),
    linear-gradient(180deg, #020617, #02050a);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cloud-invite-box {
  max-width: 760px;
  width: 100%;
  text-align: center;
  padding: 80px 60px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 217, 255, 0.35);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 90px rgba(0, 217, 255, 0.35);
}

.cloud-invite-box h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
}

.cloud-invite-box p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cloud-invite-btn {
  padding: 15px 44px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  color: #000;
  transition: all .3s ease;
}

.cloud-invite-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 217, 255, .6);
}

@media (max-width: 768px) {
  .cloud-invite {
    padding: 80px 16px;
  }

  .cloud-invite-box {
    padding: 50px 24px;
    border-radius: 22px;
  }

  .cloud-invite-box h2 {
    font-size: 28px;
  }

  .cloud-invite-box p {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .cloud-invite-btn {
    width: 100%;
    padding: 13px 0;
    font-size: 15px;
  }
}


/* iPhone 14 / Small phones */
@media (max-width: 430px) {
  .cloud-invite-box h2 {
    font-size: 26px;
  }
}








@media (min-width: 431px) and (max-width: 600px) {


  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arch-left h2 {
    font-size: 30px;
  }

  .arch-box {
    width: 280px;
    height: 280px;
  }
}


@media (min-width: 601px) and (max-width: 1024px) {




  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .arch-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .arch-left h2 {
    font-size: 36px;
  }

  .arch-box {
    width: 300px;
    height: 300px;
  }

  .cta-box h2 {
    font-size: 36px;
  }
}


@media (min-width: 1025px) and (max-width: 1440px) {



  .arch-left h2 {
    font-size: 42px;
  }
}


@media (min-width: 1440px) {


  .arch-wrapper {
    max-width: 1400px;
  }

  .cta-box {
    max-width: 900px;
  }
}









/* ================= CLOUD CTA ================= */

.cloud-cta {

  text-align: center;
}

.cta-box {
  max-width: 760px;
  margin: auto;
  padding: 70px 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(0, 217, 255, .35);
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 80px rgba(0, 217, 255, .35);
}

.cta-box h2 {
  font-size: 42px;
  margin-bottom: 14px;
}

.cta-box p {
  opacity: .75;
  margin-bottom: 34px;
}

.cta-box .primary {
  padding: 14px 38px;
  border-radius: 40px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  color: #000;
  transition: .3s ease;
}

.cta-box .primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 217, 255, .7);
}

/* ================= CLOUD ARCHITECTURE ================= */

.cloud-architecture {
  padding: 120px 24px;
  background:
    radial-gradient(600px at 20% 10%, rgba(0, 217, 255, 0.12), transparent 60%),
    radial-gradient(600px at 80% 90%, rgba(0, 119, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #02050a, #050b14);
  position: relative;
  overflow: hidden;
}

.arch-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.arch-left h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.arch-left p {
  opacity: .75;
  max-width: 520px;
}

.arch-left ul {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
}

.arch-left li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(0, 217, 255, .15);
  backdrop-filter: blur(10px);
  font-size: 14px;
  transition: .3s ease;
}

.arch-left li:hover {
  transform: translateY(-4px);
  border-color: #00d9ff;
}

/* RIGHT VISUAL BOX */
.arch-right {
  display: flex;
  justify-content: center;
}

.arch-box {
  width: 320px;
  height: 320px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 217, 255, .25), rgba(0, 119, 255, .15)),
    rgba(255, 255, 255, .04);
  border: 1px solid rgba(0, 217, 255, .35);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 60px rgba(0, 217, 255, .35),
    inset 0 0 40px rgba(0, 217, 255, .25);
  animation: floatBox 6s ease-in-out infinite;
}

@keyframes floatBox {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}


/* ================= CLOUD SERVICES ================= */
.cloud-services {
  padding: 140px 120px;
  background: radial-gradient(circle at top, #08121f, #02050a);
  text-align: center;
}

.cloud-services h2 {
  font-size: 52px;
  margin-bottom: 14px;
}

.cloud-services h2 span {
  color: #00d9ff;
}

.cloud-services .subtitle {
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 80px;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.service-card {
  padding: 42px 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(0, 217, 255, 0.15);
  backdrop-filter: blur(12px);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* Glow layer */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 217, 255, .25));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 35px 90px rgba(0, 217, 255, .25);
}

/* TEXT */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  opacity: 0.75;
  line-height: 1.6;
}







/* ================= HERO MASTER FIX ================= */














/* ================= MOBILE HERO ================= */
@media (max-width: 768px) {



  /* TEXT OVERLAY */


  /* 🔥 CANVAS FULL HERO BACKGROUND */
  .hero-visual {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 1;
  }

  /* dark overlay for readability */



}

/* IPHONE 14 / SMALL */
@media (max-width: 430px) {
  .cp {
    width: 260px;
    font-size: 15px !important;
  }


}



/* ================= SERVICES MOBILE FIX ================= */

@media (max-width: 768px) {

  .cloud-services {
    padding: 90px 16px;
  }

  .cloud-services h2 {
    font-size: 28px;
  }

  .cloud-services .subtitle {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card {
    padding: 18px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.45;
  }
}

/* EXTRA SMALL */
@media (max-width: 360px) {
  .service-card h3 {
    font-size: 13px;
  }

  .service-card p {
    font-size: 11.5px;
  }
}


/* ================= ARCHITECTURE FIX ================= */

@media (max-width: 768px) {

  .cloud-architecture {
    padding: 90px 16px;
  }

  .arch-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .arch-left h2 {
    font-size: 26px;
  }

  .arch-left p {
    font-size: 14px;
    margin-inline: auto;
  }

  .arch-left ul {
    grid-template-columns: 1fr;
  }

  .arch-right {
    justify-content: center;
  }

  /* 🔥 RESPONSIVE MODEL */
  .arch-box {
    width: min(80vw, 260px);
    height: min(80vw, 260px);
  }
}

/* IPHONE SMALL */
@media (max-width: 430px) {
  .arch-box {
    width: 220px;
    height: 220px;
  }
}
































































/*  */




/* ===== THREE HERO FIX ===== */
.three-hero,
#laravelCanvas,

#strategyCanvas {
  width: 100%;
  height: calc(100vh - var(--nav-height, 80px));
  display: block;
}

canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}



/* navbar*/
/* ================= DG NAVBAR ================= */
.dg-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(2, 6, 23, .92);
  backdrop-filter: blur(14px);
}

.dg-nav-inner {
  max-width: 1300px;
  margin: auto;
  height: 88px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dg-logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.dg-logo span {
  color: #0c77bf;
}

.dg-links {
  display: flex;
  gap: 34px;
}

.dg-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.dg-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d9ff;
  transition: .3s;
}

.dg-links a:hover::after {
  width: 100%;
}

.dg-cta {
  padding: 12px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

/* BURGER */
.dg-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.dg-burger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* ================= MOBILE MENU ================= */
.dg-mobile {
  position: fixed;
  inset: 0;
  background: #020617;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  z-index: 10000;
  transform: translateY(-100%);
}

.dg-mobile a {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.dg-mobile-cta {
  margin-top: 20px;
  padding: 14px 42px;
  border-radius: 40px;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  color: #000 !important;
}

.dg-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px) {

  .dg-links,
  .dg-cta {
    display: none;
  }

  .dg-burger {
    display: flex;
  }
}

@media(min-width:1025px) {
  .dg-mobile {
    display: none;
  }
}