@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  /* --- Global Colors --- */
  --color-white: #ffffff;
  --color-dark: #111;
  --color-text-dark: #222;
  --color-text-body: #2d3643;
  --color-text-muted: #43516a;

  --color-primary-dark: #1e3361;
  --color-primary-base: #101b33;
  --color-accent: #0fb9e2;
  --color-light-blue-bg: #e8f2fa8a;

  --color-bg-light: #f5f7f9;
  --color-bg-lighter: #f9fbfd;
  --color-nav-text: #1c222b;

  /* --- Contact Form Specific Colors --- */
  --color-form-bg: #f8f9fc;
  --color-input-border: #e0e6ed;
  --color-red-btn: #ff4757;
  --color-red-btn-hover: #ff2e43;
  --color-chip-bg: #edf2f7;
  --color-chip-selected: #dbeafe;
  --color-chip-border: #3b82f6;

  /* --- Gradients --- */
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-primary-base)
  );
  --gradient-box-bg: linear-gradient(
    130.92deg,
    var(--color-primary-dark) 19.04%,
    var(--color-primary-base) 100.79%
  );
  --gradient-footer: linear-gradient(135deg, #1b2230, #111827);

  /* --- Fonts --- */
  --font-heading: "Poppins", sans-serif;
  /* --font-heading: "Open Sans", sans-serif; */

  /* --- Radius & Shadows --- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 42px;

  --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
  --shadow-btn: 0 6px 16px rgba(0, 0, 0, 0.15);
  --shadow-form: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* =========================================
    GLOBAL RESETS
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--color-white);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
}

/* =========================================
    HERO & NAVBAR SECTION
   ========================================= */
#hero {
  position: relative;
  height: 100vh;
  color: var(--color-white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 32, 0.65);
  z-index: -1;
}

.navbar {
  width: 1240px;
  height: 80px;
  padding: 0px 30px;
  margin: auto;
  background: var(--color-white);
  color: var(--color-nav-text);
  border-radius: var(--radius-md);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
}

.logo {
  font-weight: 700;
  width: 162px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.nav-links a:hover {
  color: var(--color-accent);
}

.navbar button {
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar button:hover {
  background: var(--color-accent);
  font-size: 13.5px;
  font-family: var(--font-heading);
}

/* Navbar Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  display: flex;
  align-items: center;
  /* gap: 6px;  */
}

.dropbtn .arrow {
  font-size: 25px;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}
/* .dropbtn span {
  font-size: 12px;
  margin-left: 5px;
} */

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  list-style: none;
  text-align: left;
  transition: all 0.3s ease-in;
}

.dropdown-content li {
  width: 100%;
  margin: 0;
}

.dropdown-content li a {
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease-in;
  white-space: nowrap;
}

.dropdown-content li a:hover {
  background-color: #f0f6fa;
  color: #0da8d1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Carousel */
.hero-carousel {
  width: 1300px;
  max-width: 90%;
  margin: 0px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-slider {
  width: 100%;
}

.hero-track {
  display: flex;
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  width: 100%;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--color-white, #000);
}

.hero-content span {
  color: var(--color-accent, #0da8d1);
}

.hero-content p {
  width: 100%;
  max-width: 800px;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  color: var(--color-white, #555);
}

.cta {
  background: var(--color-accent, #0da8d1);
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  font-weight: 500;
  min-width: 290px;
  height: 60px;
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-heading);
}

.cta:hover {
  background: #e5eef0;
  color: #0da8d1;
  transform: translateY(-2px);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
#about {
  padding: 80px 100px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*
.section-heading {
  font-size: 48px; 
  font-weight: 700;
  text-align: center;
  color: #0c0c0c;
   margin-bottom: 80px; 
} */

/* Stats */
.stats-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.stat-box {
  background: radial-gradient(
    68.68% 144.64% at 22.57% 15.78%,
    rgba(231, 238, 253, 0) 0%,
    #e7eefd 100%
  );
  width: 270px;
  height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  flex: none;
  gap: 15px;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 60px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1;
}
h2 {
  font-size: 60px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1;
}
.plus {
  color: #0da8d1 !important;
  font-size: inherit;
  font-weight: inherit;
}

.stat-label {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 500;
}

.experience-banner {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.exp-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(to right, rgba(6, 14, 31, 0.2) 0%, #060e1f 118%),
    url("../images/experience.svg");
  background-size: cover;
  background-position: center;
  padding: 0 60px;
}

.exp-content {
  max-width: 550px;
  color: #ffffff;
}

.exp-content h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.exp-content h2 span {
  color: #49c5e0;
}

.exp-content p {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .exp-wrapper {
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: auto;
    min-height: 350px;
    background: linear-gradient(rgba(6, 14, 31, 0.6), #060e1f),
      url("../images/experience.svg");
    background-size: cover;
  }

  .exp-content h2 {
    font-size: 30px;
  }

  .exp-content p {
    font-size: 16px;
  }
}

/* About Content */
/* .about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.about-text {
  text-align: left;
}

.main-content {
  font-size: 18px;
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}

.quote {
  background: var(--color-bg-light, #f9f9f9); 
  padding: 20px 24px;
  font-size: 17px;
  border-radius: 21px;
  color: #333;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
  margin-top: 20px;
}

.about-right {
  position: relative;
  width: fit-content;
  justify-self: end; 
}

.about-right::after {
  content: "";
  position: absolute;
  top: -17px;
  right: -22px;
  width: 96%;
  height: 95%;
  background: var(--gradient-box-bg); 
  border-radius: 19px;
  z-index: 0;
}

.about-right img {
  position: relative;
  z-index: 1;
  width: 542px; 
  height: auto; 
  border-radius: var(--radius-sm);
  display: block;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
} */

/* =========================================
    SERVICES SECTION
   ========================================= */
#services {
  overflow: hidden;
  padding: 0px 8%;
  background-color: #fff;
  margin: auto;
}

#services h2 {
  font-weight: 600;
  color: #0c0c0c;
  font-size: 48px;
  margin-bottom: 40px;
  text-align: center;
}

.services-container {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 20px;
  scrollbar-width: none;
}

.services-container::-webkit-scrollbar {
  display: none;
}

.services-track {
  display: flex;
  gap: 10px;
  padding: 0 35px;
}

.service-slide {
  min-width: 1230px;
}

.service-card {
  display: flex;
  width: 100%;
  height: 115%;
  background-color: #e0e9fcc7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  user-select: none;
  padding: 18px;
  box-sizing: border-box;
  align-items: center;
}

.card-img-side {
  width: 550px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.card-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.card-img-side:hover img {
  transform: scale(1.05);
}

.card-text-side {
  width: 72%;
  padding: 0 40px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.icon-heading-box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.small-icon {
  width: 50px;
  height: 50px;
  padding: 0;
}

.icon-heading-box h3 {
  font-size: 38px;
  font-weight: 600;
  color: #0c0c0c;
  line-height: 1.1;
  margin: 0;
}

.card-text-side p {
  font-size: 20px;
  line-height: 30px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 90%;
  font-weight: 500;
}

.read-btn {
  padding: 16px 32px;
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-btn:hover {
  background-color: #494848;
  transform: translateY(-2px);
}

/* =========================================
    PROCESS & OTHER SECTIONS
   ========================================= */
/* #dev-process {
  background: var(--color-bg-light);

}

.process-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 55px 10%;
}

.process-banner h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 45px;
  color: #0c0c0c;
}

.process-banner p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  text-align: left;
}

.steps-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 516px;
  height: 100%;
}

.step-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 22px;
  margin: 10px 0;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
}

.step-card:hover {
  transform: translateY(-8px);
  background: var(--gradient-primary);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 50%;
  border: 0.5px solid var(--color-primary-dark);
  color: var(--color-primary-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  padding: 15px;
}

.step-card:hover h3,
.step-card:hover p {
  color: var(--color-white);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.step-card p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.process-steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  padding: 10px 10%;
}

.process-steps > div:last-child {
  flex: 1;
  display: flex;
}

.process-steps img {
  width: 100%;
  height: 95%;
  object-fit: cover;
  border: 1px solid #34549c;
  border-radius: 30px;
} */
.trusted-brands {
  background: radial-gradient(
    68.68% 144.64% at 22.57% 15.78%,
    rgba(231, 238, 253, 0) 0%,
    #e7eefd 100%
  );
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.brand-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 50px;
  line-height: 112%;
}

.scroller-container {
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  padding: 10px 0;
}

.scroller-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.brand-img {
  width: 160px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 8px;
  object-fit: contain;
  padding: 6px;
  flex-shrink: 0;

  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

@keyframes scrollRtoL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLtoR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.animate-r-to-l {
  animation: scrollRtoL 30s linear infinite;
}

.animate-l-to-r {
  animation: scrollLtoR 30s linear infinite;
}

/* award section */

.award-heading,
.clientBase-heading {
  font-weight: 600;
  color: #0c0c0c;
  font-size: 48px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 57px;
  width: 700px;
  margin: 60px auto;
}
#awards {
  overflow: hidden;
  padding: 0px 8%;
  background-color: #fff;
  margin: 30px auto;
  text-align: center;
}

#awards img {
  width: 80%;
  height: auto;
  margin: 70px auto;
  display: block;
}

/* client base */
#client-base {
  overflow: hidden;
  padding: 0px 8%;
  background-color: #fff;
  margin: 30px auto;
  text-align: center;
}
.clientBase-heading {
  margin-top: 0;
}
.client-map {
  width: 90%;
  height: auto;
  margin: 70px auto;
  display: block;
}

/* Why Us */
#why-us {
  padding: 60px 9%;
  background: var(--color-white);
}

#why-us h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0c0c0c;
}

.why-us-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 110px;
  margin-top: 70px;
}

.video-box {
  position: relative;
  height: 350px;
}

.video-box::after {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 108%;
  height: 94%;
  background: var(--gradient-box-bg);
  border-radius: 20px;
  z-index: 1;
}

.why-work-with-us-video {
  position: relative;
  width: 108%;
  height: 95%;
  border-radius: var(--radius-md);
  object-fit: cover;
  z-index: 2;
}

.why-content {
  max-width: 755px;
}

.why-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.why-content li {
  font-size: 16px;
  line-height: 20px;
  color: var(--color-dark);
  position: relative;
  padding-left: 30px;
  padding-bottom: 28px;
}

.tick-icon {
  width: 19px;
  height: 19px;
  position: absolute;
  left: 0px;
  top: 4px;
  background: var(--color-primary-dark);
  border-radius: 50%;
  padding: 4px;
}

.why-content span {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #0c0c0c;
}

/* Who We Serve */
#who-we-serve {
  padding: 40px 9%;
  background: var(--color-bg-lighter);
}

#who-we-serve h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #0c0c0c;
}

.serve-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.serve-cards {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.serve-card {
  min-width: 355px;
  height: 399px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 2px;
  cursor: pointer;
}

.serve-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serve-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
}

.serve-card span {
  position: absolute;
  bottom: 66px;
  left: 56px;
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  z-index: 2;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  position: absolute;
  z-index: 5;
}

.nav-btn.left {
  left: 0px;
}

.nav-btn.right {
  right: 0px;
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* Clients Section */
#clients {
  padding: 40px 9%;
  background: var(--color-white);
  text-align: center;
}

#clients h2 {
  font-size: 48px;
  margin-bottom: 50px;
  line-height: 58px;
  font-weight: 600;
}

.clients-wrapper {
  display: flex;
  gap: 40px;
  overflow-x: hidden;
  scroll-behavior: auto;
  padding-bottom: 10px;
}

.testimonial-card {
  /* background: var(--gradient-primary); */
  background: #f5f7f9;

  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: var(--color-primary-dark);
  min-width: 838px;
  margin: 10px;
  user-select: none;
  -webkit-user-select: none;
  /* cursor: grab;   */
}

.testimonial-left img {
  width: 247px;
  height: 210px;
  border-radius: 11px;
  object-fit: cover;
  margin-bottom: 8px;
  gap: 20px;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:active {
  cursor: grabbing;
}

.testimonial-left h4 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-left span {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: var(--color-primary-dark);
}

.testimonial-content {
  text-align: left;
}

.testimonial-content p {
  font-size: 18px;
  color: var(--color-primary-dark);
  line-height: 28px;
  text-align: justify;
}

.testimonial-content {
  position: relative;
  padding: 40px;
  z-index: 1;
  overflow: hidden;
}

.testimonial-content::before,
.testimonial-content::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 146px;
  background-image: url(../images/quote.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.testimonial-content::before {
  top: 10px;
  left: 10px;
}
.testimonial-content::after {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}

.client-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.client-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-primary-dark);
  background: var(--color-white);
  color: var(--color-primary-dark);
  font-size: 18px;
  cursor: pointer;
}

.client-controls .next {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.clients-track,
.serve-track {
  display: flex;
  will-change: transform;
}

/* Start Project Section */
/*
#start-project {
  padding: 80px 9%;
  background: var(--color-white);
}

.start-project-box {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 60px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-shadow: var(--shadow-lg);
}

.start-project-content {
  max-width: 634px;
  color: var(--color-white);
}

.start-project-content h2 {
  font-size: 42px;
  line-height: 53px;
  font-weight: 600;
  margin-bottom: 20px;
}

.start-project-content p {
  font-size: 20px;
  line-height: 30px;
  color: #e5e7eb;
  margin-bottom: 26px;
  font-family: var(--font-heading);
}

.start-btn {
  background: var(--color-white);
  color: var(--color-primary-base);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.start-btn:hover {
  background: #dbe6f1;
  font-size: 19px;
}

.start-project-video {
  background: var(--color-white);
  padding: 21px;
  border-radius: 18px;
}

.start-project-video video {
  width: 345px;
  height: 268px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
*/

/* =========================================
    CONTACT FORM SECTION 
   ========================================= */

#contact-section {
  background-color: var(--color-form-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.form-wrapper {
  background: #ffffff;
  width: 100%;
  max-width: 460px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-form);
  margin: 75px auto;
}

.form-group {
  margin-bottom: 16px;
}

.form-wrapper label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0c0c0c;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-wrapper input[type="text"],
.form-wrapper input[type="email"],
.form-wrapper input[type="tel"],
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-wrapper input:focus,
.form-wrapper select:focus,
.form-wrapper textarea:focus {
  border-color: var(--color-accent);
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 100px !important;
}

.number-field {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.number-field input {
  padding-left: 15px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-wrapper input[type="radio"] {
  accent-color: #333;
  transform: scale(1);
}

.chips-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chip {
  cursor: pointer;
}

.chip input {
  display: none;
}

.chip span {
  display: inline-block;
  background-color: var(--color-chip-bg);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-body);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.chip:hover span {
  background-color: #e2e8f0;
}

.chip input:checked + span {
  background-color: var(--color-chip-selected);
  border-color: var(--color-chip-border);
  color: #1a202c;
  font-weight: 600;
}

.form-wrapper textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  width: 100%;
  background-color: var(--color-primary-dark);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: var(--color-text-muted);
}

/* =========================================
    FOOTER SECTION
   ========================================= */
#main-footer {
  background: var(--color-bg-lighter);
  padding: 70px 9% 30px;
  color: var(--color-dark);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col li:hover {
  color: var(--color-accent);
}

.footer-col p,
.footer-col li {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item p:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.social-links img:hover {
  width: 36px;
  height: 36px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #000000;
}

/* Variables for this section */
:root {
  --color-primary-base: #34549c;
  --color-bg-light: #f8f9fa;
  --color-white: #ffffff;
  --color-text-dark: #1a1a1a;
  --transition-speed: 0.4s;
}

#dev-process {
  background-color: var(--color-bg-light);
  padding: 50px 5%;
  margin-top: -20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.process-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 30px;
}

.process-header h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 54px;
  color: #0c0c0c;
}

.process-header p {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: #000000;
  text-align: left;
}

/* --- Layout Wrapper (Splitting Left & Right) --- */
.process-wrapper {
  display: flex;
  gap: 40px;
  /* align-items: stretch;  */
  margin-top: 60px;
}

/* --- LEFT SIDE --- */
.process-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.tab-item {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.tab-item:not(.active):hover {
  background: #f1f4fb;
  transform: translateX(5px);
}

.tab-item.active {
  border-color: var(--color-primary-base);
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(52, 84, 156, 0.15);
}

/* Icon Styling */
.icon-box {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #333;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.tab-item.active .icon-box {
  background: var(--color-primary-base);
  border-color: var(--color-primary-base);
  color: var(--color-white);
}

/* Tab Content */
.tab-content {
  flex: 1;
}

.tab-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
  padding-top: 10px;
  transition: color 0.3s;
}

.tab-item.active .tab-title {
  color: var(--color-text-dark);
}

.tab-description-wrapper {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
  will-change: height, opacity;
}

.tab-item.active .tab-description-wrapper {
  /* grid-template-rows: 1fr; */
  opacity: 1;
}

/* .tab-description-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px); 
}
.tab-description-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  
} */

/* .tab-item.active .tab-description-wrapper {
  grid-template-rows: 1fr;
} */
/* 
.tab-description-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-15px); 
  transition: opacity 0.4s ease, transform 0.4s ease;
} */

/* 3. Active State for Inner Content */
/* .tab-item.active .tab-description-inner {
  opacity: 1;
  transition-delay: 2ms; 
} */

.tab-description {
  padding-top: 15px;
  padding-bottom: 5px;
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.tab-item {
  align-items: flex-start;
}

.tab-title {
  padding-top: 8px;
}

.tab-item {
  align-items: flex-start;
}

.tab-title {
  padding-top: 8px;
}

/* --- RIGHT SIDE: IMAGE --- */
.process-content-area {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  background: #000;
}

.content-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s;
  z-index: 1;
}

.content-card.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-img {
  width: 16px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.contact-block strong {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-links a {
  color: #070707;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #555;
}
