/*
Theme Name: Valitara Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Custom WordPress Theme converted from HTML
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valitara-theme
*/

/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

input,
textarea {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

input::placeholder,
textarea::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
:root {
  --primary-blue: #0c2577;
  --secondary-blue: #1e3a8a;
  --light-blue: #3b5cc9;
  --accent-blue: #5e81ff;
  --text-dark: #1c1c28;
  --text-medium: #4a4a68;
  --text-light: #6e6e8e;
  --light-grey: #f8f9fc;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --gradient-blue: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--light-blue)
  );
  --gradient-light: linear-gradient(135deg, #f3f4ff, #e8edff);
  --border-radius-sm: 6px;
  --border-radius: 10px;
  --border-radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: var(--light-blue);
  transition: var(--transition);
  font-weight: 500;
}

a:hover {
  color: var(--primary-blue);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: var(--gradient-blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: transparent;
}

.btn:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: none;
}

.btn-outline::before {
  background: var(--gradient-blue);
}

.btn-outline:hover {
  color: var(--white);
  border-color: transparent;
}

.section {
  padding: 40px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient-light);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(80px);
  z-index: -1;
}

.section:nth-child(odd)::before {
  top: -100px;
  left: -150px;
}

.section:nth-child(even)::before {
  bottom: -100px;
  right: -150px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--primary-blue);
  text-align: center;
  font-weight: 700;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-blue);
  border-radius: 3px;
}

.section-title.active {
  opacity: 1;
  transform: translateY(0);
}

.section-description {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px;
  color: var(--text-medium);
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-description.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: end;
  position: relative;

  z-index: 2;
}

.logo-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: -1px;
}

.logo-tagline {
  color: var(--text-medium);
  margin-left: 8px;
  font-size: 1.1rem;
  font-weight: 300;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 40px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-blue);
  font-weight: 600;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-blue);
  cursor: pointer;
  z-index: 2;
}

/* Hero Section Enhanced */
.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.1),
    rgba(59, 130, 246, 0.05)
  );
  animation: floatAnimation 8s infinite ease-in-out;
}

.hero-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -50px;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(30, 58, 138, 0.1)
  );
}

.hero-circle:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  animation-delay: 1s;
}

.hero-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 20%;
  animation-delay: 2s;
  background: linear-gradient(
    135deg,
    rgba(94, 129, 255, 0.05),
    rgba(30, 58, 138, 0.08)
  );
}

.hero-circle:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 20%;
  animation-delay: 3s;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.06),
    rgba(30, 58, 138, 0.04)
  );
}

.hero-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0),
    rgba(59, 130, 246, 0.3),
    rgba(59, 130, 246, 0)
  );
  animation: lineAnimation 15s infinite linear;
  opacity: 0.5;
}

.hero-line:nth-child(5) {
  width: 80%;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  transform: rotate(5deg);
}

.hero-line:nth-child(6) {
  width: 60%;
  top: 40%;
  left: 20%;
  animation-delay: 2s;
  transform: rotate(-8deg);
}

.hero-line:nth-child(7) {
  width: 70%;
  top: 70%;
  left: 15%;
  animation-delay: 5s;
  transform: rotate(3deg);
}

.hero-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 85%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.01) 0%,
    rgba(30, 58, 138, 0.08) 100%
  );
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 40% 0);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-title-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  line-height: 1.2;
  color: var(--primary-blue);
  font-weight: 700;
  position: relative;
  opacity: 0;
  animation: revealTitle 1.5s forwards 0.3s;
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title-highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 5px;
  left: 0;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  opacity: 0.3;
  border-radius: 5px;
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 40px;
  max-width: 550px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s forwards 1s;
}

.hero-btns {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s forwards 1.5s;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.hero-image {
  position: relative;
  flex: 0 0 45%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1.5s forwards 0.8s;
}

.hero-image-inner {
  position: relative;
  width: 400px;
  aspect-ratio: 1/1;
}

.hero-image-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.1;
  background: var(--primary-blue);
  animation: pulseAnimation 6s infinite alternate;
}

.hero-image-circle:nth-child(2) {
  width: 85%;
  height: 85%;
  top: 7.5%;
  left: 7.5%;
  animation-delay: 0.5s;
  animation-duration: 8s;
}

.hero-image-circle:nth-child(3) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-delay: 1s;
  animation-duration: 10s;
}

.hero-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-image-main img {
  border-radius: 50%;
  width: 55%;
  height: 55%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  opacity: 0.8;
  animation: rotateAnimation 20s infinite linear;
}

.hero-image-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-blue);
  z-index: 3;
  box-shadow: 0 0 10px rgba(94, 129, 255, 0.5);
  transform: scale(0);
  animation: dotAnimation 4s infinite;
}

.hero-image-dot:nth-child(5) {
  top: 15%;
  left: 50%;
  animation-delay: 0s;
}

.hero-image-dot:nth-child(6) {
  top: 50%;
  left: 85%;
  animation-delay: 1s;
}

.hero-image-dot:nth-child(7) {
  top: 85%;
  left: 50%;
  animation-delay: 2s;
}

.hero-image-dot:nth-child(8) {
  top: 50%;
  left: 15%;
  animation-delay: 3s;
}

.hero-image-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio:1/1;
  z-index: 1;
  border-radius: 50%;
  border: 2px dashed rgba(59, 130, 246, 0.2);
  animation: rotateAnimation 30s infinite linear reverse;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-medium);
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeIn 1s forwards 2s;
  z-index: 10;
}

.hero-scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-medium);
  border-radius: 15px;
  margin-top: 8px;
  position: relative;
}

.hero-scroll-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--text-medium);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollAnimation 2s infinite;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes lineAnimation {
  0% {
    transform: translateX(-100%) rotate(var(--rotation, 0deg));
  }
  100% {
    transform: translateX(100%) rotate(var(--rotation, 0deg));
  }
}

@keyframes revealTitle {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulseAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dotAnimation {
  0%,
  100% {
    transform: scale(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scrollAnimation {
  0%,
  100% {
    opacity: 0;
    top: 8px;
  }
  50% {
    opacity: 1;
    top: 30px;
  }
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-text {
  flex: 1;
  min-width: auto;
}

.about-text p {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-text p.active {
  opacity: 1;
  transform: translateY(0);
}

.about-mission {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--light-grey);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.about-mission.active {
  opacity: 1;
  transform: translateY(0);
}

.about-mission h2,
.about-mission h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Stats Section */
.stats {
  background: var(--gradient-blue);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 1;
}

.stats::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 30px;
  flex: 1;
  min-width: 220px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.stat-item.active {
  opacity: 1;
  transform: translateY(0);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.stat-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

/* Services Section Enhanced */
.services {
  background-color: var(--light-grey);
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

.services::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--gradient-light);
  border-radius: 50%;
  top: -200px;
  right: -400px;
  opacity: 0.7;
  filter: blur(100px);
  z-index: 1;
}

.services::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(59, 92, 201, 0.05);
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  filter: blur(80px);
  z-index: 1;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 2;
  margin-top: 10px;
  max-width: 100%;
}

.service-category {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding-top: 20px;
}

.service-category.active {
  opacity: 1;
  transform: translateY(0);
}

.service-category-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.service-category-number {
  font-size: 120px;
  font-weight: 800;
  color: rgba(59, 92, 201, 0.08);
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -20px;
  z-index: -1;
  font-family: "Playfair Display", serif;
}

.service-category-title-container {
  position: relative;
  z-index: 2;
}

.service-category-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.service-category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient-blue);
  border-radius: 3px;
}

.service-category-description {
  color: var(--text-medium);
  font-size: 1.2rem;
  line-height: 1.8;

  margin-top: 20px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  position: relative;
}

.service-item {
  flex: 1 1 100%;
  min-width: 0;
  min-width: auto;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 2;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--gradient-blue);
  transition: var(--transition);
  border-radius: 5px 0 0 5px;
}

.service-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-light);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.service-item.active {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-item:hover::before {
  height: 100%;
}

.service-item:hover::after {
  opacity: 0.5;
}

.service-item:hover .service-icon {
  background: var(--gradient-blue);
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.service-item:hover .service-icon::after {
  border-color: white;
  opacity: 0.5;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-light);
  border-radius: 20px;
  color: var(--primary-blue);
  font-size: 28px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.service-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 25px;
  border: 1px dashed var(--light-blue);
  opacity: 0.3;
  animation: rotate 20s linear infinite;
  transition: var(--transition);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  transition: var(--transition);
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gradient-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.service-item:hover .service-title {
  color: var(--light-blue);
}

.service-item:hover .service-title::after {
  width: 80px;
}

.service-description {
  margin-bottom: 25px;
  color: var(--text-medium);
  line-height: 1.7;
}

.service-list-items {
  margin-top: 20px;
}

.service-list-items li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 30px;
  color: var(--text-medium);
  transition: var(--transition);
}

.service-list-items li:last-child {
  border-bottom: none;
}

.service-list-items li::before {
  content: "✓";
  color: var(--light-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-item:hover .service-list-items li {
  color: var(--text-dark);
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .services::before,
  .projects::before,
  .contact::before {
    display: none;
  }
  .service-item {
    grid-column: span 1;
  }
  .wide-on-tablet {
    grid-column: span 1;
  }
  .service-category-title {
    font-size: 2.3rem;
  }
  .service-category-number {
    font-size: 100px;
    top: -30px;
  }
  .hero {
    padding-top: 100px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-subtitle {
    max-width: unset;
  }
}

@media (max-width: 768px) {
  .service-list {
    grid-template-columns: 1fr;
  }
  .service-item {
    grid-column: span 1;
  }
  .wide-on-tablet {
    grid-column: span 1;
  }
  .nav-container {
    padding: 0 0;
  }
  .logo {
    flex-direction: column;
    align-items: start;
  }

  .hero {
    padding-top: 100px;
  }
  .services-container {
    gap: 70px;
  }
  .service-category-title {
    font-size: 2rem;
  }
  .service-category-number {
    font-size: 80px;
    top: -20px;
    left: -10px;
  }
  .service-category-description {
    font-size: 1.1rem;
  }
  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .wide-on-tablet {
    grid-column: span 1;
  }
  .services-container {
    gap: 50px;
  }
  .service-category-header {
    margin-bottom: 30px;
  }
  .service-category-title {
    font-size: 1.8rem;
  }
  .service-category-number {
    font-size: 60px;
    top: -15px;
    left: -5px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  .service-title {
    font-size: 1.5rem;
  }
}

.service-list {
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-item {
  flex: 1 1 100%;
  min-width: 0;
  min-width: auto;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--gradient-blue);
  transition: var(--transition);
  border-radius: 5px 0 0 5px;
}

.service-item.active {
  opacity: 1;
  transform: translateY(0);
}

.service-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-item:hover::before {
  height: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-light);
  border-radius: 50%;
  color: var(--primary-blue);
  font-size: 28px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px dashed var(--light-blue);
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}
.service-title span {
  display: block;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gradient-blue);
  border-radius: 2px;
}

.service-description {
  margin-bottom: 25px;
  color: var(--text-medium);
  line-height: 1.7;
}

.service-list-items {
  margin-top: 20px;
}

.service-list-items li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 30px;
  color: var(--text-medium);
  transition: var(--transition);
}

.service-list-items li:last-child {
  border-bottom: none;
}

.service-list-items li::before {
  content: "✓";
  color: var(--light-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-list-items li:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

/* Projects Section */
.projects {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--gradient-light);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  opacity: 0.7;
  filter: blur(80px);
  z-index: 1;
}

.project-list-container {
  position: relative;
  z-index: 2;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.project-item {
  flex: 0 0 calc(20% - 30px);
  min-width: 160px;
  max-width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.project-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-light);
  opacity: 0;
  transition: var(--transition);
  transform: rotate(45deg);
  z-index: 1;
}

.project-item.active {
  opacity: 1;
  transform: translateY(0);
}

.project-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow);
  z-index: 2;
}

.project-item:hover::before {
  opacity: 0.3;
  transform: rotate(45deg) translateY(-100px);
}

.project-item img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: var(--transition);
}

.project-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Value Prop Section */
.value-prop {
  background-color: var(--light-grey);
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.value-item {
  flex: 1;
  min-width: auto;
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.value-item.active {
  opacity: 1;
  transform: translateY(0);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-grey);
  border-radius: 50%;
  color: var(--primary-blue);
  font-size: 24px;
}

.value-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
  font-weight: 600;
}

/* Contact Section */
.contact {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--gradient-light);
  border-radius: 50%;
  bottom: -300px;
  left: -300px;
  opacity: 0.6;
  filter: blur(100px);
  z-index: 1;
}

.contact-inner {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 60px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-blue);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.contact-info {
  flex: 1;
  min-width: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-info.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-blue);
  border-radius: 3px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  transition: var(--transition);
}

.contact-detail:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-light);
  border-radius: 50%;
  color: var(--primary-blue);
  font-size: 24px;
  margin-right: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-detail:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #e8edff, #cfd8ff);
}

.contact-text {
  flex: 1;
}

.contact-text p {
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-text a {
  color: var(--text-dark);
  font-size: 1.2rem;
  display: block;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--light-blue);
}

.contact-form {
  flex: 1;
  min-width: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.contact-form.active {
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
  background-color: rgba(0, 0, 0, 0.02);
}

.form-control:focus {
  border-color: var(--light-blue);
  outline: none;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 10px;
  padding: 15px 35px;
  font-size: 16px;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(94, 129, 255, 0.4) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  z-index: 1;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 80%,
    rgba(94, 129, 255, 0.3) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: 1;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  flex: 1;
  min-width: auto;
}

.footer-logo-title {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.footer-logo-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 25px;
}

.footer-logo p {
  max-width: 350px;
  opacity: 0.7;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links {
  flex: 1;
  min-width: 180px;
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-blue);
  border-radius: 2px;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(8px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-counter {
  display: inline-block;
}

/* For Navigation Menu - Adding Testimonials Link */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 700px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-image {
    margin-top: 60px;
    width: 100%;
    flex: none;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .project-item {
    flex: 0 0 calc(33.333% - 30px);
  }

  .contact-container {
    gap: 40px;
  }

  .nav-links li {
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .service-item {
    min-width: 100%;
  }

  .value-item {
    min-width: 100%;
  }

  .stat-item {
    min-width: 200px;
    width: 100%;
  }

  .project-item {
    flex: 0 0 calc(50% - 30px);
  }

  .project-list-container {
    padding: 20px;
  }

  .contact-inner {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .project-item {
    flex: 0 0 calc(100% - 30px);
    max-width: 280px;
  }

  .contact-inner {
    padding: 25px 20px;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .footer-container {
    gap: 40px;
  }
}
.testimonial-list {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 20px;
}
.testimonial-item {
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  background-color: var(--white);
  border-radius: var(--border-radius);

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.testimonial-item_content {
  display: flex;
  flex-direction: column;
}

.testimonial-item_icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.testim_name {
  font-size: 22px;
  font-weight: 700;
}
.testim_job {
  font-size: 14px;
  color: #6e6e8e;
}
.testim_description {
  padding-top: 18px;
  font-size: 16px;
  color: #4a4a68;
}
@media (max-width: 576px) {
  .hero-image-main img {
    width: 150px;
    height: 150px;
  }

  .testimonial-list {
    grid-template-columns: 1fr;
  }
  .testimonial-item {
    grid-template-columns: 1fr;
  }
  .testimonial-item_icon {
    text-align: center;
  }
  .testimonial-item_icon img {
    display: inline-block;
  }
  .testim_name,
  .testim_job {
    text-align: center;
  }
}
@keyframes rotate-day {
  0% {
    background-position: calc(120% + 120px) 0;
  }
  100% {
    background-position: calc(-80% + 120px) 0;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


.background-video {
	display:none
}
