:root {
  --orange: #ffa500;
  --lightgreen: #4B0082;
  --purple: #4B0082;
  --white: #ffffff;
  --black: #ffffff;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* Preloader */
#logo-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logo-animation {
  width: 100px;
  animation: expandLogo 2s ease forwards;
}

@keyframes expandLogo {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(50);
    opacity: 0;
  }
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: var(--black);
  color: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--lightgreen);
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: var(--#4B0082);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--orange), var(--lightgreen));
  color: var(--black);
  text-align: center;
  padding: 6rem 2rem;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
}

/* Company Info Section */
.company-info {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
  color: var(--black);
}

.company-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--purple);
}

/* Footer */
footer {
  background-color: #121212;
  color: #A3C500;
  text-align: center;
  padding: 1rem;

}

/* Navigation Menu */
.main-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  color: var(--lightgreen);
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem;
}

.main-menu li:hover > a {
  color: var(--orange);
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--purple);
  padding: 0.5rem 0;
  border-radius: 8px;
  min-width: 160px;
  z-index: 999;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu li a {
  color: var(--white);
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  background: var(--orange);
  color: var(--black);
  border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mega Menu */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 999;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
  border-top: 3px solid var(--orange);
  border-radius: 10px;
}

.mega-dropdown:hover .mega-menu {
  display: flex;
}

.mega-menu .column {
  flex: 1;
}

.mega-menu .column.full-width {
  flex: 1 100%;
  text-align: center;
  margin-top: 10px;
}

.mega-menu h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  color: #000;
}

.mega-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu li {
  margin-bottom: 8px;
}

.mega-menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.mega-menu a:hover {
  color: var(--orange);
}

.contact-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  border: 1px solid var(--orange);
  color: var(--orange);
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.contact-button:hover {
  background-color: var(--orange);
  color: white;
}

/* Fix video being overlapped */
header {
  position: relative;
  z-index: 10;
}

.inline-video {
  position: relative;
  width: 100%;
  height: 80vh; /* You can adjust this */
  overflow: hidden;
  z-index: 1;
  margin-top: 0; /* Ensure it's not hidden under header */
}

.inline-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-uses {
  background-color: #eef2f5; /* Soft light blue/gray */
  padding: 60px 20px;
  text-align: center;
}

.who-uses h2 {
  font-size: 28px;
  color: #004d66;
  margin-bottom: 20px;
}

.who-uses p {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.happy-clients {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  border-top: 5px solid #4B0082; /* Same as text color above */
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.happy-clients h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #222;
}

.clients-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

.clients-track img {
  height: 80px;
  margin: 0 40px;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s, opacity 0.3s;
}

.clients-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Section Divider Between Who Uses and Happy Clients */
.section-divider {
  height: 30px;
  background: linear-gradient(to right, #eef2f5 50%, #ffffff 50%);
}

.stats-overview {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f7f9fc, #ffffff);
  text-align: center;
}


.stats-overview h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.stats-overview h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--orange);
  margin: 20px auto 0;
  border-radius: 2px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-box {
  flex: 1 1 calc(25% - 30px); /* 4 per row, accounting for gap */
  min-width: 250px;
  max-width: 280px;
}

.stat-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 35px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
  font-size: 2.6rem;
  color: #4B0082;
  font-weight: bold;
  margin-bottom: 12px;
}

.stat-box p {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4B0082;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.stat-box span {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}



.inquire-now-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4B0082;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.inquire-now-box:hover {
  background-color: #4B0082;
}

/* Highlight Free Consultancy button */
.free-consultancy-link a {
  background-color: #007BFF;
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.free-consultancy-link a:hover {
  background-color: #0056b3;
}

/* Who Uses Section Changes */
.who-uses {
  padding: 60px 20px;
  background-color: #ffffff; /* Changed to white */
}

.who-uses-container {
  display: flex;
  flex-direction: row; /* Force horizontal layout */
  align-items: stretch;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap; /* Prevent wrapping */
}

.who-uses-image {
  width: 50%; /* Image takes up half of the container */
  flex-shrink: 0;
}

.who-uses-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image will cover the full height/width */
  display: block;
}

.who-uses-text {
  width: 50%; /* Text area also takes up half of the container */
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff; /* White background for the text side */
  text-align: left;
}

.who-uses-text h2 {
  font-size: 2.4em;
  margin-bottom: 20px;
  color: #222;
}

.who-uses-text p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1em;
  white-space: pre-line;
}

.who-uses-text {
  background: #f9f9ff;
  border-left: 6px solid var(--purple);
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.03);
}

.clients-banner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}


/* ================= OUR PROCESS SECTION CUSTOM STYLES ================= */
.our-process {
  padding: 100px 20px;
  text-align: center;
  color: #4B0082;
  background: linear-gradient(to bottom right, #f8f9ff, #ffffff);
  position: relative;
}

.our-process h2 {
  font-size: 40px;
  margin-bottom: 70px;
  text-transform: uppercase;
  color: #4B0082;
  letter-spacing: 1px;
  position: relative;
}

.our-process h2::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 70px;
  height: 4px;
  background-color: #4B0082;
  border-radius: 2px;
}

.process-circle {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}
.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Base styles for steps remain same */
.our-process {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom right, #f8f9ff, #ffffff);
  color: #4B0082;
  position: relative;
}

.our-process h2 {
  font-size: 40px;
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our-process h2::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 70px;
  height: 4px;
  background-color: #4B0082;
  border-radius: 2px;
}

.process-circle {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.our-process {
  text-align: center;
  padding: 100px 20px;
  background-color: #f9f9ff;
}

.our-process h2 {
  font-size: 40px;
  color: #000;
  margin-bottom: 100px; /* increased from 70px */
  text-transform: uppercase;
  position: relative;
}


.our-process h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #4B0082;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.circle-container {
  position: relative;
  width: 780px;   /* increased from 650px */
  height: 780px;  /* increased from 650px */
  margin: 0 auto;
}

.center-image {
  width: 340px;   /* increased from 280px */
  height: 340px;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-item {
  position: absolute;
  width: 220px;
  background: white;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  z-index: 1;
}

/* Positions in circular layout */
.pos1 { top: 8%; left: 50%; transform: translate(-50%, -50%); }
.pos2 { top: 20%; left: 85%; transform: translate(-50%, -50%); }
.pos3 { top: 65%; left: 95%; transform: translate(-50%, -50%); }
.pos4 { top: 90%; left: 50%; transform: translate(-50%, -50%); }
.pos5 { top: 65%; left: 5%; transform: translate(-50%, -50%); }
.pos6 { top: 20%; left: 15%; transform: translate(-50%, -50%); }

@media (max-width: 768px) {
  .circle-container {
    transform: scale(0.8);
  }
}
