﻿:root {
  --primary: #0B1F3A;
  /* Dark Navy */
  --secondary: #00D9FF;
  /* Electric Cyan */
  --accent: #0099FF;
  /* Accent Blue */
  --bg: #FFFFFF;
  /* Background */
  --section-bg: #F5F9FF;
  /* Section Background */
  --card-bg: #FFFFFF;
  /* Card Background */
  --text-primary: #0B1F3A;
  /* Text Primary */
  --text-secondary: #5F6B7A;
  /* Text Secondary */
  --heading: #0B1F3A;
  /* Heading */
  --hero-heading: #FFFFFF;
  /* Hero Heading */
  --hero-text: #DCE8F5;
  /* Hero paragraph - light gray/blue */
  --border: #8EBBE8;


  --gradient-btn: linear-gradient(135deg, #0099FF, #00D9FF);
  --gradient-btn-hover: linear-gradient(135deg, #00D9FF, #0099FF);
  --gradient-text: linear-gradient(90deg, #0099FF, #00D9FF);
  --gradient-dark: linear-gradient(135deg, #0B1F3A, #123A6B);
  --gradient-dark-2: linear-gradient(180deg, #0B1F3A, #123A6B);

  --shadow-soft: 0 10px 25px rgba(11, 31, 58, 0.08);
  --shadow-soft-hover: 0 15px 35px rgba(11, 31, 58, 0.12);
  --shadow-glow: 0 8px 25px rgba(0, 217, 255, 0.35);
  --shadow-card: 0 10px 25px rgba(11, 31, 58, 0.08);
  --shadow-card-hover: 0 15px 35px rgba(0, 153, 255, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::selection {
  background: var(--secondary);
  color: #ffffff;
}

body {
  background-color: var(--bg);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(11, 31, 58, 0.06);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.12);
}

/* LOGO */
.logo img {
  width: 140px;
  /* larger logo */
  height: auto;
  transition: all 0.4s ease;
}

.logo img:hover {
  opacity: 0.75;
  transform: scale(1.03);
}

/* NAVIGATION */
nav {
  margin-left: auto;
  margin-right: 80px;
}

/* NAV LIST */
nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

/* NAV LINKS */
nav ul li a.active {
  color: var(--secondary);
  /* same as hover color */
}

/* underline permanently */
nav ul li a.active::after {
  width: 100%;
}

nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--secondary);
  /* text color changes */
}

/* underline element */
nav ul li a::after {
  color: var(--secondary);
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: 0.3s;
}

/* hover animation */
nav ul li a:hover::after {
  color: var(--secondary);
  width: 100%;
}

/* HERO SECTION (DESKTOP) */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* keeps text on left */
  min-height: 100vh;
  padding: 80px 6%;
  overflow: hidden;
  background-color: var(--primary);
}

/* Dark gradient overlay so text stands out over video */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 31, 58, 0.80) 0%, rgba(11, 31, 58, 0.40) 100%);
  z-index: 1;
  pointer-events: none;

  /* TEST */
  display: none;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-bg-video.active {
  opacity: 1;
}

/* TEXT */
.hero-text {
  width: 45%;
  position: relative;
  z-index: 2;

}

/* TEXT SLIDER */
.text-slider {
  position: relative;
  height: 160px;
}

/* FIX: slides are now controlled purely by JS toggling the
   .active class (see the script at the bottom of index.html).
   The old version relied only on staggered CSS animation-delay
   values with an identical animation-duration on every slide,
   which drifts out of sync over time and caused every slide to
   render on top of each other (opacity:1 simultaneously). */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* HEADING */
.slide h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: var(--hero-heading);
}

.slide span {
  background: linear-gradient(120deg,
      #009dff,
      #ffffff,
      #0077ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 18px rgba(0, 150, 255, 0.35);
}

h2 span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

/* PARAGRAPH */
.slide p {
  margin-top: 15px;
  font-size: 28px;
  color: var(--hero-text);
}

/* VIDEO */
.hero-video video {
  width: 460px;
  border-radius: 18px;
}

/* SOCIAL BAR */
.social-bar {
  backdrop-filter: blur(10px);
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* ICON STYLE */
.social-bar a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-bar a:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-glow);
}

.linkedin {
  background: #0077b5;
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.gmail {
  background: #ea4335;
}

.whatsapp {
  background: #25D366;
}

/* TRUSTED SECTION */
.trusted {
  padding: 80px 6%;
  text-align: center;
  background: var(--bg);
}

.trusted h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--heading);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin-bottom: 10px;
}

.trusted p {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 50px;
}

/* LOGO SLIDER */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: logoslide 35s linear infinite;
}

.logo-track img {
  height: 90px;
  width: 160px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
  transition: 0.3s;
}

.logo-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes logoslide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SERVICES SECTION */
.services {
  padding: 100px 6%;
  background: linear-gradient(135deg,
      #2B6EA8,
      #4A98D9,
      #66BCEB);
  text-align: center;
}

.services h2 {
  color: var(--hero-heading);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 60px;
  -webkit-background-clip: text;
}

.services h2 span {
  background: linear-gradient(90deg,
      #002F73 0%,
      #004DB3 25%,
      #006FE0 50%,
      #004DB3 75%,
      #002F73 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.service-track {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.service-slider {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.service-slide {
  width: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 20px 40px;
  box-sizing: border-box;
  flex-wrap: nowrap;
}

.service-slide img {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 420/260;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}


.service-text {
  flex: 1 1 280px;
  max-width: 420px;
  text-align: left;
}

.service-text h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--hero-heading);
}

.service-text p {
  font-size: 16px;
  color: var(--hero-text);
}

.why-title {
  position: relative;
  z-index: 2;
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 60px;
}

.why-section {
  position: relative;
  padding: 120px 6%;
  background: var(--bg);
  overflow: hidden;
}

.why-slider {
  position: relative;
  max-width: 1000px;
  margin: auto;
  height: 320px;
  z-index: 2;
}

.why-slide:nth-child(1) {
  animation-delay: 0s;
}

.why-slide:nth-child(2) {
  animation-delay: 4s;
}

.why-slide:nth-child(3) {
  animation-delay: 8s;
}

.why-slide:nth-child(4) {
  animation-delay: 12s;
}

.why-heading {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
  color: var(--heading);
}

.why-heading span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.why-text,
.why-texts {

  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;


}

.why-text h3 {
  width: 30%;
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--heading);
  font-weight: bolder;
}

.text-slide h3 span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

.text-slide {
  opacity: 0;
  max-width: 400px;
  top: 0;
  left: 0;
  width: 100%;
  animation: textChange 200s infinite;
  position: absolute;
  z-index: 2;
}

.why-points {
  list-style: none;
  margin-top: 25px;
  padding: 0;
}

.why-points li {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.why-points li::before {
  content: "✔";
  color: var(--secondary);
  font-weight: bold;
  margin-right: 10px;
}

.why-points li:nth-child(1) {
  animation-delay: 0.3s;
}

.why-points li:nth-child(2) {
  animation-delay: 0.8s;
}

.why-points li:nth-child(3) {
  animation-delay: 1.3s;
}

.why-points li:nth-child(4) {
  animation-delay: 1.8s;
}

@keyframes pointAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trusted-outline {
  display: inline-block;
  position: relative;
  padding: 10px 30px;
  border-radius: 14px;
  margin-bottom: 50px;
}

.trusted-outline p {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin: 0;
}

.trusted-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: 14px;
  box-sizing: border-box;
}

.why-text p {
  font-size: 16px;
  color: var(--text-secondary);
}

.text-slide:nth-child(1) {
  animation-delay: 0s;
}

.text-slide:nth-child(2) {
  animation-delay: 50s;
}

.text-slide:nth-child(3) {
  animation-delay: 100s;
}

.text-slide:nth-child(4) {
  animation-delay: 150s;
}

.text-slide h3 {
  font-size: 35px;
  margin-bottom: 12px;
  color: var(--heading);
}

.text-slide p {
  font-size: 16px;
  color: var(--text-secondary);
}

@keyframes textChange {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  0.5% {
    opacity: 1;
    transform: translateY(0);
  }

  24.5% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes imageChange {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  5% {
    opacity: 1;
    transform: scale(1);
  }

  20% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.bg-outline {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 60px;
  z-index: 1;
}

.bg-outline svg {
  width: 100%;
  height: 200px;
}

.bg-outline text {
  font-size: 120px;
  font-weight: 800;
  fill: none;
  stroke: var(--border);
  stroke-width: 2;
  letter-spacing: 6px;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: strokeRun 6s linear infinite;
}

@keyframes strokeRun {
  0% {
    stroke-dashoffset: 700;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.why-video {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-video video {
  width: 360px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.feature-list {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.feature-list li {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 8px 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  animation: showPoint 1s forwards;
}

.feature-list li::before {
  content: "✔";
  color: var(--secondary);
  font-weight: bold;
  margin-right: 10px;
}

.feature-list li:nth-child(1) {
  animation-delay: 0.5s;
}

.feature-list li:nth-child(2) {
  animation-delay: 1.5s;
}

.feature-list li:nth-child(3) {
  animation-delay: 2.5s;
}

.feature-list li:nth-child(4) {
  animation-delay: 3.5s;
}

@keyframes showPoint {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* STATS SECTION */
.stats-section {
  padding: 100px 6%;
  background: var(--gradient-dark-2);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  justify-content: center;
  gap: 30px;
  margin: auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  color: white;
  width: 220px;
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease;
}

.stat-box.show {
  opacity: 1;
  transform: translateX(0);
}

.stat-box h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--secondary);
}

.stat-box h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--hero-heading);
}

.stat-box p {
  font-size: 13px;
  opacity: 0.8;
  color: var(--hero-text);
}

.stat-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow);
  transition: 0.3s;
}

/* CEO SECTION */
.ceo-section {
  padding: 120px 6%;
  background: var(--section-bg);
}

.ceo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1100px;
  margin: auto;
}

.ceo-text {
  width: 55%;
  color: var(--heading);
}

.ceo-text p {
  margin: 14px 0;
  line-height: 1.6;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  text-align: justify;
  line-height: 1.8;
}

.ceo-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.ceo-heading span {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ceo-title-box {
  position: relative;
  display: inline-block;
  padding: 18px 35px;
  margin-bottom: 30px;
  border-radius: 20px;
  background: var(--card-bg);
  overflow: hidden;
}

.ceo-title-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--secondary);
  border-radius: 20px;
}

.ceo-heading {
  position: relative;
  z-index: 2;
}

.ceo-title-box svg,
.ceo-image-box svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ceo-title-box rect,
.ceo-image-box rect {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 3;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: outlineMove 2s linear infinite;
}

.ceo-image-box {
  position: relative;
  width: 300px;
  margin-top: 150px;
}

@media (min-width:1200px) {
  .ceo-image-box {
    width: 380px;
  }
}

.ceo-image-box img {
  width: 100%;
  border-radius: 25px;
  display: block;
  animation: ceoFloat 6s ease-in-out infinite;
  box-shadow: var(--shadow-soft);
}

.ceo-image-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  border-radius: 25px;
  box-sizing: border-box;
  animation: borderMove 2s linear infinite;
}

@keyframes ceoFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* FOOTER */

.info-box div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}


.footer {
  width: 100%;
  position: relative;
  display: block;

  background: linear-gradient(135deg,
      #e8f2ff,
      #f1e9ff);

  color: #334155;

  margin-top: auto;
  padding: 70px 6% 20px;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  padding: 0 6%;
  flex-wrap: wrap;
}


.footer-logo {
  width: 160px;
  transition: all 0.4s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.footer-logo:hover {
  opacity: 0.75;
  transform: scale(1.03);
}


/* Footer headings */

.footer-col h3 {
  font-size: 20px;
  color: #0b5ed7;
  margin-bottom: 15px;
  font-weight: 700;
}


.footer-heading {
  color: #0b5ed7;
  font-size: 15px;
}


/* Footer list */

.footer-col ul {
  list-style: none;
  padding: 0;
}


.footer-col ul li {

  margin: 10px 0;
  color: #475569;
  font-size: 14px;
}


.footer-col ul li a {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  transition: 0.3s;
}


.footer-col ul li a:hover {
  color: #0b5ed7;
  text-decoration: underline;
}

/* CONTACT SECTION */
.contact-section {
  padding: 120px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
      #234F82 0%,
      #2D629C 50%,
      #3A75B3 100%);

}

.contact-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--hero-heading);
}

.contact-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.contact-title .send {
  color: var(--hero-heading);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: inherit;
  font-weight: inherit;
}

.contact-title .message {
  background: var(--gradient-text);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  -webkit-background-clip: text;
  color: transparent;
  font-size: inherit;
  font-weight: inherit;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-box {
  position: relative;
  width: 420px;
  margin: auto;
}

.input-box input,
.input-box textarea {
  width: 420px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-size: 14px;
  outline: none;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg, var(--accent), var(--secondary)) border-box;
}

.input-box input:hover,
.input-box textarea:hover {
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg, var(--secondary), var(--accent)) border-box;
}

.input-box textarea {
  height: 100px;
  resize: none;
}

.input-box:nth-child(1)::before {
  animation-direction: normal;
}

.input-box:nth-child(2)::before {
  animation-direction: reverse;
  animation-delay: 4s;
}

.input-box:nth-child(3)::before {
  animation-direction: normal;
  animation-delay: 2s;
}

.checkbox {
  width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hero-text);
}

.checkbox input[type="checkbox"] {
  accent-color: var(--secondary);
}

.send-btn {
  margin-top: 10px;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  background: var(--gradient-btn);
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  width: auto;
  align-self: center;
}

.send-btn:hover {
  background: var(--gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  color: #334e68;
}

.contact-item {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #334e68;
}



/* FIX: Center the contact form on the Home page (index.html) - CARD STYLE */
.contact-section #contact-form {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 45px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-section .row {
  display: flex;
  gap: 30px;
}

.contact-section .row .field {
  flex: 1;
}

.contact-section .field {
  margin-bottom: 25px;
  width: 100%;
}

.contact-section .field input,
.contact-section .field textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--heading);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .field input:focus,
.contact-section .field textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15);
}

.contact-section .field label {
  font-size: 12px;
  color: var(--hero-text);
  display: block;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.contact-section button {
  display: block;
  margin: 10px auto 0 auto;
}

@media (max-width: 768px) {
  .contact-section #contact-form {
    padding: 30px 25px;
  }

  .contact-section .row {
    flex-direction: column;
    gap: 0;
  }
}






/* ABOUT SECTION */
.about-section {
  padding: 100px 6%;
  background: var(--section-bg);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  width: 50%;
}

.about-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-heading .gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.about-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 550px;
}

.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
  font-size: 16px;
  color: var(--text-primary);
  margin: 10px 0;
  opacity: 0;
  transform: translateY(20px);
}

.about-points li::before {
  content: "✔";
  color: var(--secondary);
  font-weight: bold;
  margin-right: 10px;
}

.about-image {
  position: relative;
  width: 45%;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  animation: floatImage 6s ease-in-out infinite;
  box-shadow: var(--shadow-soft);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: 20px;
  box-sizing: border-box;
}

@keyframes borderMove {
  0% {
    clip-path: inset(0 100% 100% 0);
  }

  25% {
    clip-path: inset(0 0 100% 0);
  }

  50% {
    clip-path: inset(0 0 0 100%);
  }

  75% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 100% 100% 0);
  }
}

.about-points li {
  opacity: 0;
  transform: translateY(20px);
}

.about-points.show li {
  animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.book-wrapper {
  position: relative;
  width: 500px;
  margin: auto;
}

.book-wrapper .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  transition: none;
  box-shadow: var(--shadow-soft);
}

.book-wrapper .arrow.left {
  left: -40px;
}

.book-wrapper .arrow.right {
  right: -40px;
}

.book-wrapper .arrow:hover {
  transform: translateY(-50%);
  box-shadow: var(--shadow-glow);
}

.strength-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--heading);
  -webkit-text-stroke: 2px var(--border);
}

.strength-heading span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  margin: 0 auto 15px auto;
  width: 100%;
}

.strength-section {
  position: relative;
  padding: 120px 6%;
  text-align: center;
  overflow: hidden;
  background: url("../Images/strength\ background.webp") no-repeat center/cover;
}

.strength-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.65));
  z-index: 0;
}

.strength-heading,
.strength-slider {
  position: relative;
  z-index: 1;
}

.strength-heading {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 40px;
  margin-bottom: 60px;
  color: var(--hero-heading);
  -webkit-text-stroke: 0;
}

.strength-heading span {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

.strength-slider {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.strength-track {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.strength-box {
  min-width: 300px;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.4s ease;
}

.strength-box:hover {
  opacity: 1;
  z-index: 5;
  border-color: var(--secondary);
  box-shadow: var(--shadow-card-hover);
}

.strength-box.active {
  opacity: 1;
  transform: scale(1.03);
  z-index: 2;
  border-color: var(--secondary);
  box-shadow: var(--shadow-card-hover);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  padding: 0;
  line-height: 1;
  background: var(--gradient-btn);
  color: #fff;
  border: none;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.book-section {
  padding: 120px 6%;
  text-align: center;
  background: var(--section-bg);
  position: relative;
  overflow: hidden;
}

.book-heading {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 38px;
  margin-bottom: 60px;
  color: var(--heading);
}

.book-heading span {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

.book-container {
  position: relative;
  width: 360px;
  height: 280px;
  margin: auto;
  perspective: 2000px;
  overflow: hidden;
}

.book-container .arrow.left {
  left: -60px;
}

.book-container .arrow.right {
  right: -60px;
}

.book-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-soft);
}

.nav-btn {
  margin-left: 20px;
}

.contact-btn {
  padding: 10px 22px;
  background: var(--gradient-btn);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: var(--gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

@keyframes flipPage {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(-180deg);
  }
}

@keyframes flipForward {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(-180deg);
  }
}

@keyframes flipBackward {
  0% {
    transform: rotateY(-180deg);
  }

  100% {
    transform: rotateY(0);
  }
}

.book-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0));
  opacity: 0;
}

.book-card.front::after {
  opacity: 1;
}

.book-card.front {
  z-index: 3;
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
}

.book-card.middle {
  z-index: 2;
  transform: translateX(20px) scale(0.98) rotateY(0deg);
  opacity: 1;
}

.book-card.back {
  z-index: 1;
  transform: translateX(40px) scale(0.96) rotateY(0deg);
  opacity: 1;
}

.book-card h3 {
  color: var(--secondary);
  margin-bottom: 10px;
}

.book-card p {
  font-size: 14px;
  color: var(--hero-text);
}

.book-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(0, 217, 255, 0.15);
}

.book-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.process-section {
  padding: 120px 6%;
  text-align: center;
  background: var(--section-bg);
}

.achievement-section {
  padding: 100px 6%;
  background: var(--gradient-dark);
  text-align: center;
}

.achievement-heading {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: var(--hero-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

.achievement-heading span {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

.achievement-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.achievement-card {
  flex: 1;
  max-width: 320px;
  position: relative;
  background: var(--card-bg);
  padding: 35px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: 18px;
  box-sizing: border-box;
  clip-path: inset(0 100% 100% 0);
  animation: runBorder 8s linear infinite;
}

.achievement-card:nth-child(1)::before {
  animation-delay: 0s;
}

.achievement-card:nth-child(2)::before {
  animation-delay: 1s;
}

.achievement-card:nth-child(3)::before {
  animation-delay: 2s;
}

.achievement-card:nth-child(4)::before {
  animation-delay: 3s;
}

@keyframes runBorder {
  0% {
    clip-path: inset(0 100% 100% 0);
  }

  25% {
    clip-path: inset(0 0 100% 0);
  }

  50% {
    clip-path: inset(0 0 0 100%);
  }

  75% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 100% 100% 0);
  }
}

.achievement-card h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.achievement-card p {
  font-size: 15px;
  color: var(--text-secondary);
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.achievement-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.services-section {
  background-color: transparent;
  padding: 40px 6% 120px 6%;
  background: url("../Images/services-background.webp") no-repeat center center/cover;
  text-align: center;
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.88), rgba(11, 31, 58, 0.70));
  z-index: 0;
}

.services-section>* {
  position: relative;
  z-index: 1;
}

.service-fade-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  animation: serviceFade 18s infinite;
}

.service-fade-slide:nth-child(1) {
  animation-delay: 0s;
}

.service-fade-slide:nth-child(2) {
  animation-delay: 3s;
}

.service-fade-slide:nth-child(3) {
  animation-delay: 6s;
}

.service-fade-slide:nth-child(4) {
  animation-delay: 9s;
}

.service-fade-slide:nth-child(5) {
  animation-delay: 12s;
}

.service-fade-slide:nth-child(6) {
  animation-delay: 15s;
}

@keyframes serviceFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  5% {
    opacity: 1;
    transform: translateY(0);
  }

  15% {
    opacity: 1;
  }

  20% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 0;
  }
}

.services-heading {
  color: var(--hero-heading);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 60px;
}

.services-heading span {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

.services-slider {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;

  cursor: grab;

  /* Scrollbar hide */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.services-slider:active {
  cursor: grabbing;
}

.service-box {
  min-width: 260px;
  max-width: 260px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-box:hover {
  transform: scale(1.08);
  z-index: 5;
  border-color: var(--secondary);
  box-shadow: var(--shadow-card-hover);
}

.services-track {
  display: flex;
  gap: 50px;
  width: max-content;

}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

.service-box h3 {
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 8px;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-box.active {
  position: relative;
  z-index: 2;
}

.service-box.active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  border: 2px solid var(--secondary);
  clip-path: inset(0 100% 100% 0);
  animation: border1 6s linear infinite;
}

.service-box.active::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  border: 2px solid var(--accent);
  clip-path: inset(100% 0 0 100%);
  animation: border2 6s linear infinite;
}

@keyframes slideServices {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes border1 {
  0% {
    clip-path: inset(0 100% 100% 0);
  }

  25% {
    clip-path: inset(0 0 100% 0);
  }

  50% {
    clip-path: inset(0 0 0 100%);
  }

  75% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 100% 100% 0);
  }
}

@keyframes border2 {
  0% {
    clip-path: inset(100% 0 0 100%);
  }

  50% {
    clip-path: inset(0 0 0 100%);
  }

  100% {
    clip-path: inset(0 100% 100% 0);
  }
}

.service-box p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 200px;
  margin: auto;
  white-space: normal;
}

.why-services {
  padding: 70px 6%;
  background: var(--bg);
  text-align: center;
  margin-top: -40px;
}

.typing-heading {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.typing-heading #typing-text {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#typing-text::after {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  content: "|";
  margin-left: 5px;
  animation: blink 0.8s infinite;
  color: var(--secondary);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.why-subtext {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.why-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.why-box {
  border: 2px solid var(--border);
  position: relative;
  flex: 1;
  background: var(--card-bg);
  padding: 25px 15px;
  overflow: hidden;
  max-width: 240px;
  border-radius: 14px;
  z-index: 1;
  box-shadow: var(--shadow-card);
  transition: 0.3s;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--secondary);
}

.why-box h3 {
  color: var(--heading);
  margin-bottom: 12px;
}

.why-box p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.why-subtext {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 10px auto 40px auto;
  max-width: 900px;
}

.why-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  border: 0.5px solid var(--secondary);
  border-radius: 14px;
  transform: translateX(-100%);
  animation: lineMoveTop 3s linear infinite;
}

.why-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: translateX(100%);
  animation: lineMoveBottom 3s linear infinite;
}

.why-box:nth-child(1)::before,
.why-box:nth-child(1)::after {
  animation-delay: 0s;
}

.why-box:nth-child(2)::before,
.why-box:nth-child(2)::after {
  animation-delay: 0.5s;
}

.why-box:nth-child(3)::before,
.why-box:nth-child(3)::after {
  animation-delay: 1s;
}

.why-box:nth-child(4)::before,
.why-box:nth-child(4)::after {
  animation-delay: 1.5s;
}

.why-box::before,
.why-box::after {
  animation-duration: 3.5s;
}

.icon {
  font-size: 38px;
  margin-bottom: 15px;
}

.blue {
  color: var(--secondary);
}

.green {
  color: var(--secondary);
}

.orange {
  color: var(--accent);
}

.purple {
  color: var(--accent);
}

/* CONTACT HERO */
.contact-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url("../Images/contact\ background.webp") no-repeat center center/cover;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.55));
  z-index: 0;
}

.content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  color: transparent;
  -webkit-text-stroke: 2px var(--secondary);
  font-weight: 1000;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}

.dot {
  color: var(--hero-heading);
  -webkit-text-stroke: 2px var(--secondary);
}

.contact-hero p {
  font-size: 18px;
  color: var(--hero-text);
  line-height: 1.6;
}

.contact-hero p span {
  color: var(--secondary);
  font-weight: 600;
}

#typing::after {
  content: "|";
  margin-left: 5px;
  animation: blink 1s infinite;
  color: var(--secondary);
}

#typing.done::after {
  content: "";
  animation: none;
}

.contact-pagesec {
  scroll-margin-top: 100px;
  padding: 120px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.contact-box {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  background: var(--card-bg);
  padding: 50px;
  border-radius: 25px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contact-left {
  flex: 1;
}

.contact-left h1 {
  font-size: 48px;
  color: var(--heading);
  margin-bottom: 15px;
}

.contact-left span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-left p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-right {
  flex: 1;
  max-width: 55%;
}

.divider {
  width: 1px;
  background: var(--border);
  height: auto;
}

.contact-right form {
  width: 100%;
}

.row {
  display: flex;
  gap: 30px;
}

.field {
  width: 100%;
}

.contact-left h2 {
  font-size: 40px;
  color: var(--heading);
  margin-bottom: 15px;
}

.contact-left h2 span {
  color: var(--accent);
}

.contact-left p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-box {
  margin-bottom: 20px;
}

.info {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
  width: fit-content;
}

.info div {
  display: flex;
  flex-direction: column;
}

.icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 153, 255, 0.08);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon i {
  color: var(--accent);
  font-size: 18px;
}

.info-box h4 {
  font-size: 16px;
  color: var(--heading);
}

.info-box span {
  font-size: 14px;
  color: var(--text-secondary);
}

form {
  width: 100%;
}

.field {
  flex: 1;
  margin-bottom: 25px;
}

.field label {
  font-size: 12px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--heading);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-secondary);
}

.map-section {
  padding: 80px 6%;
  text-align: center;
  position: relative;
  background: var(--gradient-dark);
}

.map-section h2 {
  font-size: 32px;
  color: var(--hero-heading);
  margin-bottom: 30px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.map-section h2 span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  color: transparent;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.map-container {
  max-width: 700px;
  height: 300px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.checkbox input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--secondary);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
}

.checkbox input[type="checkbox"]:checked {
  background: var(--secondary);
  position: relative;
}

.checkbox input[type="checkbox"]:checked::after {
  content: "✔";
  color: #ffffff;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

button {
  margin-top: 20px;
  padding: 16px 35px;
  border-radius: 30px;
  border: none;
  background: var(--gradient-btn);
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  opacity: 1;
  background: var(--gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.menu-toggle {
  display: none;
}

/* ==========================================================
   MEDIA QUERIES
   ========================================================== */

/* NAVBAR MOBILE MENU */
@media screen and (max-width: 992px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    background: var(--bg);
    box-shadow: 0 2px 10px rgba(11, 31, 58, 0.06);
    position: relative;
  }

  nav {
    margin-left: auto;
    margin-right: 20px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--heading);
    cursor: pointer;
    position: relative;
    z-index: 1001;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0;
    background-color: var(--bg);
    box-shadow: 0 10px 15px rgba(11, 31, 58, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }





  .nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    margin: 0;
    width: 100%;
  }

  .nav-menu ul li {
    padding: 10px 0;
  }

  .nav-menu ul li a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-menu .nav-btn {
    display: none !important;
    position: static !important;
    margin: 0 !important;
  }

  .nav-menu.active .nav-btn {
    display: block !important;
    position: static !important;
    width: 100%;
    text-align: center;
    padding: 15px 0 20px 0;
    border-top: 1px solid var(--border);
  }

  .nav-menu.active .nav-btn .contact-btn {
    display: inline-block !important;
  }

  .contact-hero h1 {
    font-size: 30px;
  }
}

@media screen and (min-width: 993px) {
  nav.nav-menu {
    display: flex;
    align-items: center;
  }

  nav.nav-menu .nav-btn {
    margin-left: 80px;
  }
}

/* TABLET / LARGE MOBILE (max-width: 900px) */
@media (max-width: 900px) {

  .about-container,
  .ceo-container,
  .why-container,
  .contact-container,
  .contact-box {
    flex-direction: column;
    gap: 40px;
  }

  .about-text,
  .about-image,
  .ceo-text,
  .why-text,
  .why-texts,
  .why-video,
  .contact-left,
  .contact-right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .ceo-image-box {
    width: 100% !important;
    max-width: 320px !important;
    margin: 30px auto 0 auto !important;
  }

  .divider {
    display: none;
  }

  .why-texts {
    height: auto;
    min-height: 355px;
    margin-top: 0;
    margin-bottom: 20px;
    transform: translateY(-55px);
  }

  .why-video {
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }

  .why-video video {
    width: 90%;
    max-width: 400px;
    transform: none;
  }

  .why-boxes {
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-box {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievement-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .achievement-card {
    flex: 1 1 45%;
  }
}

/* TABLET / MEDIUM SCREENS (769px - 1040px) */
@media (min-width:769px) and (max-width:1040px) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 6%;
    min-height: 600px;
    gap: 40px;
  }

  .hero-text {
    width: 100%;
  }

  .text-slider {
    width: 100%;
    height: auto;
  }

  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .slide h1 {
    font-size: 48px;
  }

  .slide p {
    font-size: 18px;
  }
}

/* MOBILE (max-width: 768px) - HERO & LAYOUT FIXES */
@media (max-width:768px) {

  /* HERO MOBILE FIX - Edge-to-Edge Video Banner */
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 380px;
    /* Reduced height - removes big empty dark bars */
    height: auto;
    padding: 60px 5%;
    overflow: hidden;
    background-color: var(--primary);
  }

  /* Overlay gradient over video so white text is crystal clear */
  .hero::before {
    background: linear-gradient(180deg, rgba(11, 31, 58, 0.70) 0%, rgba(11, 31, 58, 0.85) 100%);
  }

  /* Full edge-to-edge video fill without cropping issues */
  .hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;


    filter: brightness(1.25) contrast(1.08) saturate(1.1);
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .text-slider {
    width: 100%;
    height: 140px;
  }

  .slide h1 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .slide p {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  }

  .trusted h2,
  .services h2,
  .why-heading,
  .achievement-heading,
  .strength-heading,
  .book-heading,
  .services-heading,
  .typing-heading,
  .ceo-heading,
  .about-heading,
  .contact-title,
  .contact-left h1,
  .map-section h2 {
    font-size: clamp(24px, 6vw, 34px) !important;
    text-align: center !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .ceo-heading span {
    font-size: clamp(28px, 7vw, 38px) !important;
  }

  .services {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }

  .service-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    height: auto;
  }

  .service-track {
    display: flex;
    height: auto;
    min-height: auto;
  }

  .service-slide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 0 6%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .service-slide img {
    width: 90%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 420/260;
  }

  .service-text {
    max-width: 100%;
    text-align: center;
    flex: 0 0 auto;
  }

  .why-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .book-wrapper {
    width: 90%;
    max-width: 320px;
  }

  .book-container {
    width: 100%;
  }

  .book-wrapper .arrow.left {
    left: -15px;
  }

  .book-wrapper .arrow.right {
    right: -15px;
  }

  .strength-box {
    min-width: 240px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-box {
    width: 100%;
  }

  .contact-form {
    width: 100%;
    padding: 0 4%;
  }

  .input-box,
  .input-box input,
  .input-box textarea,
  .checkbox {
    width: 100% !important;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .row {
    flex-direction: column;
    gap: 0;
  }

  .field {
    margin-bottom: 18px;
  }

  .map-container {
    height: 220px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-col ul {
    padding: 0;
  }

  .info {
    justify-content: center;
    margin: auto;
  }

  .contact-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 10px auto 0 auto;
    text-align: left;
  }

  .contact-item i {
    flex-shrink: 0;
  }

  .social-bar {
    right: 8px;
    gap: 8px;
  }

  .social-bar a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .hero-video video,
  .why-video video {
    width: 100%;
    max-width: 320px;
  }

  .contact-box {
    flex-direction: column;
  }

  .divider {
    display: none;
  }
}

/* SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {

  .navbar {
    padding: 14px 4%;
  }

  .logo img {
    width: 110px;
  }

  .why-texts {
    min-height: 400px;
  }

  .services,
  .why-section,
  .ceo-section,
  .about-section,
  .strength-section,
  .book-section,
  .achievement-section,
  .services-section,
  .why-services,
  .contact-section,
  .contact-pagesec,
  .map-section {
    padding: 60px 5%;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .achievement-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ceo-image-box {
    max-width: 240px !important;
    margin-top: 20px !important;
  }

  .slide h1 {
    font-size: 24px;
  }

  .ceo-text p {
    font-size: 14px;
  }

  .contact-hero h1 {
    font-size: 26px;
  }

  .contact-hero p {
    font-size: 14px;
  }
}




.services-slider:hover .services-track,
.services-slider.dragging .services-track {
  animation-play-state: paused;
}




/* ===========================
   NETWORK TERMINAL SECTION
=========================== */

.terminal-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  background: linear-gradient(180deg, #06162d, #081f3d, #06162d);
}

.terminal-box {

  width: 100%;
  max-width: 900px;

  background: rgba(8, 22, 45, .75);

  border: 1px solid rgba(0, 255, 255, .25);

  backdrop-filter: blur(14px);

  border-radius: 18px;

  overflow: hidden;

  box-shadow:
    0 0 30px rgba(0, 255, 255, .08),
    0 0 60px rgba(0, 255, 255, .05);

}

.terminal-header {

  height: 55px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 0 22px;

  background: rgba(255, 255, 255, .04);

  border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.dot {

  width: 12px;

  height: 12px;

  border-radius: 50%;

}

.red {
  background: #ff5f56;
}

.yellow {
  background: #ffbd2e;
}

.green {
  background: #27c93f;
}

.terminal-title {

  margin-left: 18px;

  color: #ffffff;

  font-size: 14px;

  letter-spacing: 2px;

  font-weight: 600;

}

.terminal-body {

  padding: 18px 25px;

  min-height: 180px;
  height: auto;

  color: #ffffff;

  font-family: "Courier New", monospace;

  font-size: 17px;

  line-height: 1.8;

  white-space: pre-line;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

}

.terminal-line {

  opacity: 0;

  transform: translateY(10px);

  animation: fadeUp .5s forwards;

}

.success {

  color: #36ff84;

  font-weight: 600;

}

.command {

  color: #22d3ee;

}

.cursor {

  display: inline-block;

  width: 10px;

  background: #22d3ee;

  margin-left: 3px;

  animation: blink .8s infinite;

}

@keyframes blink {

  50% {
    opacity: 0;
  }

}

@keyframes fadeUp {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

@media(max-width:768px) {

  .terminal-body {

    padding: 22px;

    font-size: 15px;

    line-height: 1.8;

  }

  .terminal-title {

    font-size: 12px;

    letter-spacing: 1px;

  }

}

.terminal-box {

  animation: floatTerminal 5s ease-in-out infinite;

}

@keyframes floatTerminal {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-8px);

  }

}









.terminal-item {
  color: #00ff88;
  cursor: pointer;
  padding: 8px 0;
  transition: .3s;
  font-size: 15px;
}

.terminal-item:hover {
  color: #00e5ff;
  transform: translateX(8px);
}

.terminal-item.active {
  color: #00e5ff;
}

.terminal-description {

  margin-top: 20px;

  padding: 18px;

  border-left: 3px solid #00e5ff;

  background: rgba(0, 229, 255, .08);

  color: #fff;

  line-height: 1.8;

  border-radius: 8px;

  animation: fade .3s ease;

}

@keyframes fade {

  from {

    opacity: 0;
    transform: translateY(10px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

/* ===========================
   TERMINAL SECTION UPGRADE
   (boot sequence -> clickable
   services -> fading description)
=========================== */

/* ===========================
   TERMINAL SECTION UPGRADE
   (boot sequence -> 2-column
   service list + info card)
=========================== */

.terminal-boot {
  min-height: auto;
  transition: opacity .4s ease;
}

.terminal-boot.fade-out {
  opacity: 0;
}

.terminal-services {
  display: none;
  opacity: 0;
  width: 100%;
  transition: opacity .5s ease;
}

.terminal-services.show {
  display: flex;
  opacity: 1;
  gap: 30px;
  align-items: stretch;
  width: 100%;
}

/* LEFT COLUMN - service list */
.terminal-panel-list {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 20px;
  border-right: 1px solid rgba(0, 229, 255, .15);
}

.terminal-item.active {
  color: #00e5ff;
  text-shadow: 0 0 8px rgba(0, 229, 255, .85), 0 0 18px rgba(0, 229, 255, .45);
  background: rgba(0, 229, 255, .08);
  border-radius: 8px;
  padding-left: 10px;
}

.terminal-line.status-online {
  color: #00e5ff;
  margin-top: 6px;
}

/* RIGHT COLUMN - glassmorphism info card */
.terminal-panel-card {
  flex: 1;
  min-width: 0;
  display: flex;
}

.terminal-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, .25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25), 0 0 25px rgba(0, 229, 255, .06);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}

.terminal-card.show {
  opacity: 1;
  transform: translateY(0);
}

.terminal-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: .5px;
}

.terminal-card-desc {
  font-family: "Courier New", monospace;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 18px;
}

.terminal-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terminal-card-features li {
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.terminal-card-features li::before {
  content: "✔";
  color: #00e5ff;
  font-weight: bold;
  flex-shrink: 0;
}

/* backward-compatible: old single-description element,
   unused now but harmless if still referenced anywhere */
#terminalDescription {
  opacity: 0;
  animation: none;
  transition: opacity .45s ease;
}

#terminalDescription.show {
  opacity: 1;
}

@media (max-width: 768px) {
  .terminal-services.show {
    flex-direction: column;
  }

  .terminal-panel-list {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 229, 255, .15);
    padding-right: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .terminal-card {
    padding: 22px 20px;
  }

  .terminal-card-title {
    font-size: 22px;
  }
}

/* Slogan Styles */
.hero-slogan {
  font-size: clamp(16px, 2vw, 22px);
  color: #00e5ff;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}

.brand-tagline {
  color: #00e5ff;
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-slogan {
  color: #00e5ff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* ==========================================================
   HOME PAGE: DARK SECTION TEXT COLOR FIX
   Ensures text is white (#FFFFFF) on dark backgrounds,
   but leaves accent colors and light-background inputs alone.
   ========================================================== */

/* Make default inherited text white in dark sections */
.home-page .hero,
.home-page .services,
.home-page .stats-section,
.home-page .terminal-section,
.home-page .contact-section {
  color: #FFFFFF;
}

/* Specifically target paragraphs and labels */
.home-page .hero p:not(.hero-slogan),
.home-page .services p,
.home-page .stats-section p,
.home-page .terminal-section p,
.home-page .contact-section .field label {
  color: #FFFFFF;
}

/* Ensure headings in dark sections are purely white (#FFFFFF) */
.home-page .services h2,
.home-page .service-text h3,
.home-page .stats-section h3,
.home-page .terminal-card-title,
.home-page .contact-section h2 {
  color: #FFFFFF;
}

/* Explicitly protect inputs with white backgrounds to keep dark text */
.home-page .contact-section .field input,
.home-page .contact-section .field textarea {
  color: var(--heading);
}


/* Live Desktop overrides for hero main titles */
.home-page .text-slider .slide h1 {
  font-size: clamp(48px, 6vw, 72px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: var(--hero-heading);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}

/* Improve visibility and color of BLUE highlighted portions in hero service headings */
.home-page .text-slider .slide h1 span {
  color: #087FD1 !important;
  -webkit-text-fill-color: #087FD1 !important;
  background: transparent !important;
  -webkit-background-clip: border-box !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
}

/* Ensure Hero background videos are visible and properly stacked */
.hero-bg-video {
  display: block !important;
  visibility: visible !important;
  z-index: 0 !important;
}

.hero-bg-video.active {
  opacity: 1 !important;
}

/* Ensure Hero gradient overlay is visible (fixes TEST display: none) */
.hero::before {
  display: block !important;
  z-index: 1 !important;
}

/* ==========================================================
   RESPONSIVE LAYOUT OVERRIDES
   ========================================================== */

/* Tablet & Smaller Desktop (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .navbar {
    padding: 15px 4%;
  }

  nav {
    margin-right: 20px;
  }

  nav ul {
    gap: 20px;
  }

  .hero {
    padding: 60px 4%;
  }

  .hero-text {
    width: 60%;
  }

  .slide h1 {
    font-size: clamp(36px, 5vw, 50px) !important;
  }

  .about-container,
  .service-container,
  .contact-container {
    flex-direction: column;
    padding: 40px 4%;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .service-card {
    width: 48%;
  }

  .footer-container {
    flex-wrap: wrap;
  }
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .footer {
    padding-bottom: 90px;
  }

  .navbar {
    padding: 12px 4%;
  }

  .hero {
    text-align: center;
    justify-content: center;
    min-height: 80vh;
  }

  .hero-text {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .slide h1 {
    font-size: clamp(28px, 6vw, 36px) !important;
    line-height: 1.2 !important;
    margin-bottom: 12px;
  }

  .social-bar {
    transform: translateY(-50%) scale(0.85);
    transform-origin: right center;
    right: 0;
  }

  .service-slide img {
    aspect-ratio: auto;
    width: 85%;
    max-width: 280px;
    margin-bottom: 15px;
  }

  .service-text {
    padding: 0 45px 0 15px;
    box-sizing: border-box;
  }

  .service-text h3 {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .service-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  .service-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }

  .features,
  .stats-grid,
  .footer-col {
    width: 100%;
  }

  .contact-form {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  input,
  textarea {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .logo img {
    width: 110px;
  }

  .slide h1 {
    font-size: clamp(22px, 7vw, 28px) !important;
  }

  .hero-text {
    width: 100%;
    padding: 0 12px;
  }

  .hero-slogan {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .service-text h3 {
    font-size: 19px;
  }

  .contact-form {
    padding: 15px;
  }
}