/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body nav {
  cursor: auto;
}


/*  */
.stats {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  cursor: none;
  color: aqua;
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  gap: 4rem;
  animation: fade-in-up 1s ease-out 1s both;
  transform: translateY(0px);
  opacity: 0.8;
}

.btn-secondary {
  padding: 1.2rem 3rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  text-decoration: none;
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: none;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
}

/*  */
/*  */
/* Hide scrollbar but allow scrolling */
::-webkit-scrollbar {
  display: none;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: auto;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Particle background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: hsl(0, 7%, 95%);
  pointer-events: none;
}

body.dark-mode #particles-js {
  background: #121212;
}

/* Body */
body {
  transition: background 0.3s ease, color 0.3s ease;
  color: #000000;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  cursor: none;
  overflow-x: hidden;
}

.stat-item {
  color: rgb(14, 243, 247);
}

body.dark-mode {
  color: #ffffff;
}

body {
  cursor: auto;
  /* Change back to default */
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: background 0.3s ease;
}

body.dark-mode .navbar {
  background: rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand h2 {
  background: linear-gradient(135deg, #06b6d4, #97e0e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
}

.logo {
  height: 50px;
  width: 50px;
  border-radius: 15px;
  /* background: linear-gradient(135deg, #06b6d4, #36bfc9); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
}

.logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  padding: 0.5rem;
  font-weight: 500;
  color: inherit;
  transition: color 0.2s ease;
  cursor: none;
}



#themeToggle {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: none;
  background: linear-gradient(135deg, #06b6d4, transparent);
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#themeToggle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Section base styles */
.section {
  min-height: 100vh;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.section-content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Home Section */
.home-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner {
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  background: rgb(82, 192, 198);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 400% 400%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.banner-content p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* AI and Web Sections */
.ai-section,
.web-section {
  padding: 6rem 0;
}

.ai-section {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(54, 191, 201, 0.05));
}

.web-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
}

body.dark-mode .ai-section {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(54, 191, 201, 0.1));
}

body.dark-mode .web-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
}

/* About Section Styles */
.about-section {
  padding: 80px 20px;
  background: transparent;
}

body.dark-mode .about-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));

}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #666;
}

body.dark-mode .about-subtitle {
  color: #aaa;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Company Story */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a2e;
}

body.dark-mode .about-text h3 {
  color: #ffffff;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

body.dark-mode .about-text p {
  color: #cccccc;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

/* Why Choose Us */
.why-choose-us {
  margin-bottom: 80px;
}

.why-choose-us h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a2e;
}

body.dark-mode .why-choose-us h3 {
  color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

body.dark-mode .benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(6, 182, 212, 0.2);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
  border-color: #06b6d4;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a1a2e;
}

body.dark-mode .benefit-card h4 {
  color: #ffffff;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

body.dark-mode .benefit-card p {
  color: #cccccc;
}

/* Our Values */
.our-values {
  margin-bottom: 80px;
}

.our-values h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a2e;
}

body.dark-mode .our-values h3 {
  color: #ffffff;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  position: relative;
  padding: 40px 30px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 15px;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: scale(1.05);
}

.value-item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.value-number {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 10px;
}

.value-item h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.value-item p {
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* What We Offer */
.what-we-offer h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a2e;
}

body.dark-mode .what-we-offer h3 {
  color: #ffffff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.offer-card {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

body.dark-mode .offer-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(6, 182, 212, 0.2);
}

.offer-card:hover {
  transform: translateY(-10px);
  border-color: #06b6d4;
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
}

.offer-card i {
  font-size: 3.5rem;
  color: #06b6d4;
  margin-bottom: 20px;
}

.offer-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1a1a2e;
}

body.dark-mode .offer-card h4 {
  color: #ffffff;
}

.offer-card p {
  color: #666;
  line-height: 1.6;
}

body.dark-mode .offer-card p {
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-header h2 {
    font-size: 2rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-placeholder {
    height: 300px;
    font-size: 5rem;
  }

  .benefits-grid,
  .values-container,
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  margin: 2rem;
}

body.dark-mode .hero {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #06b6d4, #36bfc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Services Grid */
.services {
  /* padding: 4rem 2rem; */
  max-width: 1200px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #06b6d4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: none;
}

body.dark-mode .service-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #06b6d4, #36bfc9);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #06b6d4;
}

.service-card p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

/* Process Section */
.process {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #06b6d4;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.process-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #06b6d4, #36bfc9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #06b6d4;
}

/* CLIENTS SECTION */

.clients-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

body.dark-mode .clients-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
}

.clients-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.clients-subtitle {
  font-size: 1.2rem;
  color: #666;
}

body.dark-mode .clients-subtitle {
  color: #aaa;
}

/* Client Cards Container */
.clients-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Individual Client Card */
.client-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

body.dark-mode .client-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(6, 182, 212, 0.2);
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  border-color: #06b6d4;
}

/* Card Header */
.client-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.05));
}

body.dark-mode .client-card-header {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(8, 145, 178, 0.1));
}

.client-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.client-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

body.dark-mode .client-info h3 {
  color: #ffffff;
}

.client-category {
  color: #06b6d4;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Body */
.client-card-body {
  padding: 30px;
}

.project-details,
.services-delivered {
  margin-bottom: 25px;
}

.client-card-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0891b2;
  margin-bottom: 10px;
}

body.dark-mode .client-card-body h4 {
  color: #06b6d4;
}

.client-card-body p {
  color: #666;
  line-height: 1.6;
}

body.dark-mode .client-card-body p {
  color: #cccccc;
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tag {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Testimonial */
.client-testimonial {
  margin-top: 25px;
  padding: 20px;
  background: rgba(6, 182, 212, 0.05);
  border-left: 4px solid #06b6d4;
  border-radius: 10px;
  position: relative;
}

body.dark-mode .client-testimonial {
  background: rgba(6, 182, 212, 0.1);
}

.quote-icon {
  font-size: 2rem;
  color: #06b6d4;
  opacity: 0.3;
  margin-bottom: 10px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

body.dark-mode .testimonial-text {
  color: #dddddd;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.rating {
  display: flex;
  gap: 5px;
}

.rating i {
  color: #fbbf24;
  font-size: 1rem;
}

.client-name {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.95rem;
}

body.dark-mode .client-name {
  color: #06b6d4;
}

/* Card Footer */
.client-card-footer {
  display: flex;
  justify-content: space-around;
  padding: 20px 30px;
  background: rgba(6, 182, 212, 0.05);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

body.dark-mode .client-card-footer {
  background: rgba(6, 182, 212, 0.1);
}

.project-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0891b2;
  font-size: 0.9rem;
  font-weight: 600;
}

body.dark-mode .project-stat {
  color: #06b6d4;
}

.project-stat i {
  font-size: 1.1rem;
}

/* Trust Section */
.trust-section {
  max-width: 1200px;
  margin: 80px auto 0;
  text-align: center;
}

.trust-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 40px;
}

body.dark-mode .trust-section h3 {
  color: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.trust-item {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

body.dark-mode .trust-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(6, 182, 212, 0.2);
}

.trust-item:hover {
  transform: translateY(-5px);
  border-color: #06b6d4;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.trust-item i {
  font-size: 3rem;
  color: #06b6d4;
  margin-bottom: 15px;
}

.trust-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

body.dark-mode .trust-item h4 {
  color: #ffffff;
}

.trust-item p {
  color: #666;
  font-size: 0.95rem;
}

body.dark-mode .trust-item p {
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .clients-section {
    padding: 60px 20px;
  }

  .clients-header h2 {
    font-size: 2rem;
  }

  .clients-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .client-card-header {
    flex-direction: column;
    text-align: center;
  }

  .client-info h3 {
    font-size: 1.3rem;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-section h3 {
    font-size: 1.5rem;
  }
}
/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
}

body.dark-mode .contact-section {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

body.dark-mode .contact-form-container {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #06b6d4;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  cursor: none;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(6, 182, 212, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.submit-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #06b6d4, #36bfc9);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

body.dark-mode .info-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #06b6d4, #36bfc9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #06b6d4;
}

.info-card p {
  opacity: 0.9;
  margin: 0.25rem 0;
}

/* CTA Section */
.cta-section {
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  margin: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

body.dark-mode .cta-section {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #06b6d4;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #06b6d4, #36bfc9);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: none;
  margin: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.3);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #06b6d4;
  color: #06b6d4;
}

body.dark-mode .cta-button.secondary {
  color: #06b6d4;
}

.cta-button.secondary:hover {
  background: #06b6d4;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .custom-cursor {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .banner-content h1 {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    flex-direction: column;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .services h2,
  .process h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .section-content {
    padding: 1rem;
  }

  .hero {
    margin: 1rem;
    padding: 2rem 1rem;
  }

  .cta-section {
    margin: 1rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50%;
  color: #06b6d4;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #06b6d4;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #06b6d4;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #06b6d4;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #06b6d4;
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
  min-width: 20px;
}

.footer-contact a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #06b6d4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #06b6d4;
}

.footer-bottom-links span {
  color: #555;
}

/* Dark Mode Footer Adjustments */
body.dark-mode .footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
}

body.dark-mode .footer-description,
body.dark-mode .footer-links a,
body.dark-mode .footer-contact,
body.dark-mode .footer-contact a {
  color: #cccccc;
}

body.dark-mode .footer-links a:hover,
body.dark-mode .footer-contact a:hover {
  color: #06b6d4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}