/* ====== CSS Variables & Reset ====== */
:root {
  --primary: #6c63ff;
  --primary-dark: #5a52d5;
  --secondary: #ff6584;
  --accent: #36d1dc;
  --dark: #121212;
  --dark-light: #1e1e1e;
  --light: #f8f9ff;
  --light-gray: #e9ecff;
  --gray: #7a7f9a;
  --gradient-primary: linear-gradient(135deg, #6c63ff 0%, #36d1dc 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6584 0%, #ffa07a 100%);
  --gradient-dark: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
  --gradient-light: linear-gradient(135deg, #f8f9ff 0%, #e9ecff 100%);
  --shadow: 0 10px 30px rgba(108, 99, 255, 0.08);
  --shadow-hover: 0 20px 40px rgba(108, 99, 255, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --border-radius: 16px;
  --container-width: 1300px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(108, 99, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 101, 132, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  position: relative;
  display: inline-block;
}

h2:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

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

p {
  margin-bottom: 1.2rem;
  color: var(--gray);
  font-size: 1.05rem;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
}

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

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

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(108, 99, 255, 0.35);
}

.btn-secondary {
  background: var(--gradient-secondary);
}

.btn-secondary:before {
  background: var(--gradient-primary);
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* ====== Loading Screen ====== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  border-right-color: var(--secondary);
  animation: spin 1.2s ease-in-out infinite;
  margin-bottom: 25px;
}

.loading h4 {
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ====== Progress Bar ====== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s ease;
}

/* ====== Scroll to Top Button ====== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
  font-size: 1.2rem;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px) rotate(360deg);
  background: var(--gradient-secondary);
}

/* ====== Header & Navigation ====== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  z-index: 1002;
}

.logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.logo span {
  color: var(--secondary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.25);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  font-size: 1rem;
}

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

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

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

.nav-links .btn-contact {
  background: var(--gradient-primary);
  color: white !important;
  padding: 12px 28px !important;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
}

.nav-links .btn-contact:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px);
}

.nav-links .btn-contact:after {
  display: none;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 18px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
 
  font-weight: 600;
  margin: 5px 0;
  transition: var(--transition);
  display: inline-block;
}

.mobile-nav-links a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.mobile-nav-links .btn-contact {
  background: var(--gradient-secondary);
  padding: 10px 20px !important;
  font-size: 1rem !important;
  border-radius: 10px;
  margin-top: 10px;
}

/* ====== Hero Section ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.85) 0%,
      rgba(30, 30, 30, 0.85) 100%
    ),
    url("./assets/bgappsmania.avif")
      no-repeat center center/cover;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  width: 100%;
  z-index: 1;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  background: linear-gradient(to right, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero p span {
  font-weight: 700;
  color: var(--accent);
}

.hero .btn {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.4s forwards;
  font-size: 1.1rem;
  padding: 18px 42px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== About Section ====== */
.about {
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full screen background image */
.about-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45); /* darken for readability */
  z-index: -2;
}

/* Gradient overlay */
.about:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: -1;
}

.about-overlay {
  position: relative;
  z-index: 2;
  padding: 6rem 1.2rem;
}

/* Title */
.section-title h2 {
  color: #121212;
  text-align: left;
}

/* Content */
.about-content {
  max-width: 750px;
  margin-top: 2rem;
}

/* Heading */
.about-text h3 {
  font-size: 2.3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.6rem;
}

/* Paragraphs */
.about-text p {
  color: #eee;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* Button */
.about-text .btn {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: 0.3s;
}

.about-text .btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .about {
    min-height: auto;
    padding: 4rem 0;
  }

  .about-text h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    text-align: center;
  }

  .about-content {
    margin-top: 1.5rem;
  }

  .about-text h3 {
    text-align: center;
    font-size: 1.8rem;
  }

  .about-text p {
    text-align: center;
  }

  .about-text .btn {
    display: block;
    margin: 1.5rem auto 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-overlay {
    padding: 4rem 1rem;
  }
}

/* ====== Stats Section ====== */
.stats {
  background: var(--gradient-dark);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
}

.stat-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  opacity: 0.9;
  color: var(--accent);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-text {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ====== Values Section ====== */
.values {
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.values:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: var(--gradient-secondary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.value-card {
  padding: 50px 35px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.first_card {
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.7) 0%,
      rgba(30, 30, 30, 0.7) 100%
    ),
    url("./assets/strategy/strategyy.jpg") no-repeat center center/cover;
}

.second_card {
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.7) 0%,
      rgba(30, 30, 30, 0.7) 100%
    ),
    url("./assets/strategy/creative_direc.png") no-repeat center center/cover;
}

.third_card {
  background: linear-gradient(
      135deg,
      rgba(18, 18, 18, 0.7) 0%,
      rgba(30, 30, 30, 0.7) 100%
    ),
    url("./assets/strategy/client_cen.png") no-repeat center center/cover;
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
  cursor: pointer;
}

.value-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  transition: var(--transition);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: rgba(108, 99, 255, 0.1);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: orange;
}

.value-card p {
  color: white;
}

/* ====== Services Section ====== */
.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 25px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Testimonials Section */
.client-testimonials {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

.testimonial-wrapper {
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.client-card {
  min-width: 100%;
  border-radius: 12px;
  padding: 30px 20px;
  background-color: #ffffff;
  text-align: center;
  transition: all 0.3s ease;
}

.client-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  overflow: hidden;
  margin: 0 auto 10px;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.client-rating {
  color: orange;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.client-feedback {
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
  line-height: 1.5;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ====== FAQ Section ====== */
.faq {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.faq:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--gradient-secondary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(108, 99, 255, 0.1);
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.faq-question {
  background: white;
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
  font-size: 1.1rem;
}

.faq-question:hover {
  background: #f9f9ff;
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary);
}

.faq-answer {
  background: white;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  background: var(--primary);
  color: white;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: white;
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 500px;
}

/* ====== Footer ====== */
footer {
  background: var(--gradient-dark);
  color: white;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  margin-bottom: 25px;
  display: inline-block;
}

.footer-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.footer-logo span {
  color: var(--accent);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-links a:before {
  content: "›";
  margin-right: 10px;
  color: var(--accent);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links a:hover:before {
  margin-right: 15px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--accent);
  margin-top: 5px;
  font-size: 1.2rem;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ====== Responsive Design ====== */

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

  .hero {
    min-height: 90vh;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .nav-links {
    display: none;
  }

  /* Staggered animation for mobile nav items */
  .mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .mobile-nav-overlay.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .mobile-nav-overlay.active .mobile-nav-links li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .mobile-nav-overlay.active .mobile-nav-links li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .mobile-nav-overlay.active .mobile-nav-links li:nth-child(7) {
    transition-delay: 0.7s;
  }
  .mobile-nav-overlay.active .mobile-nav-links li:nth-child(8) {
    transition-delay: 0.8s;
  }
}

@media (max-width: 768px) {
.hero-content {
  margin-top: 70px;
}
  .hero h1 {
 font-size: 30px;
}
  .hero {
    min-height: 85vh;
  }

  h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .hero p {
    font-size: 1.15rem;
  }

  .services-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    padding: 40px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

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

  .hero {
    min-height: 80vh;
    padding-top: 80px;
  }

  .btn {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .footer-contact span {
    font-size: 0.95rem;
  }

  .mobile-nav-links a {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .header-container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.6rem;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
  }
}

.aboutussec {
  margin-bottom: 14px !important;
  margin-top: 140px !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
  background: var(--gradient-secondary);
}
