/* Completely redesigned CSS with proper light theme, responsive design, and improved colors */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Courier+Prime:wght@400;700&display=swap');

:root {
  /* Premium Light Theme Colors */
  --primary-bg: #ffffff;
  --secondary-bg: #f5f7fa;
  --tertiary-bg: #e8ecf1;
  --accent-lime: #00d452;
  --accent-cyan: #0088ff;
  --accent-coral: #ff2e63;
  --text-dark: #111827;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border-color: #d1d5db;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--primary-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

p {
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
}

h2{
    font-size: 2.5rem;
    /*color: var(--accent-cyan);*/
}

/* Light theme navbar with proper styling */
.navbar-animated {
  transition: all 0.3s ease;
  background-color: var(--primary-bg) !important;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Courier Prime', monospace;
}

.brand-primary {
  color: var(--accent-lime);
}

.brand-secondary {
  color: var(--accent-coral);
}

.navbar-light .navbar-nav .nav-link {
  transition: all 0.3s ease;
  color: black;
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  letter-spacing: 1.2px;
  padding: 0.5rem 0.75rem !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--accent-lime);
}

.contact-nav {
  background: var(--accent-lime) !important;
  color: var(--text-dark) !important;
  border-radius: 4px;
  padding: 0.6rem 1.2rem !important;
  margin-left: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.contact-nav:hover {
  background: var(--accent-coral) !important;
  color: var(--primary-bg) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 46, 99, 0.3);
}

.navbar-toggler {
  border-color: var(--border-color) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23111827' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
    color: black;
    transition: all 0.25s ease-in-out;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-link:hover{
    color: red;
}

.nav-item{
    display:  flex;
    justify-content: center;
    align-items: center;
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.dropdown-item {
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--secondary-bg);
  color: var(--accent-lime);
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -50px;
  top: -50px;
  background: var(--accent-cyan);
  border-radius: 0%;
  opacity: 0.08;
  animation: geometric-rotate 25s linear infinite;
}

@keyframes geometric-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-section h1 {
  line-height: 1.1;
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  color: var(--text-dark);
}

.hero-section .lead {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.hero-image {
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-image img {
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  border: 2px solid var(--accent-cyan);
  max-width: 100%;
  height: auto;
}

/* Buttons */
.btn-primary {
  background: var(--accent-lime);
  border: none;
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--accent-coral);
  color: var(--primary-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 46, 99, 0.3);
}

.btn-outline-light {
  border: 2px solid var(--accent-lime);
  color: var(--accent-lime);
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--accent-lime);
  color: var(--text-dark);
}

.btn-light {
  background: var(--accent-lime);
  color: var(--text-dark);
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.btn-light:hover {
  background: var(--accent-coral);
  color: var(--primary-bg);
}

/* Value Cards */
.value-card {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 212, 82, 0), rgba(0, 212, 82, 1), rgba(0, 212, 82, 0));
  transition: left 0.6s ease;
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--accent-lime);
  box-shadow: var(--shadow-lg);
}

.value-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.icon-box {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  background: var(--secondary-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 212, 82, 0.15), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
}

.service-card:hover::after {
  opacity: 1;
  right: -50px;
  top: -50px;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
  background: var(--primary-bg);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(0, 136, 255, 0.15);
}

.service-card:hover .service-icon {
  color: var(--accent-lime);
  text-shadow: 0 0 30px rgba(0, 212, 82, 0.3);
  transform: scale(1.1) rotate(5deg) translateX(1rem) translateY(1rem);
}

.service-card h5 {
  color: var(--text-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.95rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.service-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-top: 1rem;
}

.page-hero{
    min-height: 70dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-link:hover {
  gap: 1rem;
  color: var(--accent-coral);
}

/* Process Section */
.process-section {
  background: var(--secondary-bg);
  position: relative;
  overflow: hidden;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 212, 82, 0.6);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Courier Prime', monospace;
}

.text-lime{
    color: var(--accent-lime);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.process-step h5 {
  color: var(--text-dark);
  font-weight: 700;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--primary-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-cyan);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 212, 82, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-left-color: var(--accent-lime);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: var(--accent-lime);
  font-size: 1.1rem;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
  color: var(--text-dark);
  font-weight: 700;
}

.testimonial-author small {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent-lime) 0%, var(--accent-cyan) 100%);
  padding: 60px 20px;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.cta-section h2, .cta-section p {
  color: var(--text-dark);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-section .btn-light {
  background: var(--text-dark);
  color: var(--accent-lime);
  font-weight: 700;
  border: 2px solid var(--text-dark);
  transition: all 0.4s ease;
}

.cta-section .btn-light:hover {
  background: var(--accent-coral);
  color: var(--primary-bg);
  border-color: var(--accent-coral);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 46, 99, 0.3);
}

/* Case Study Cards */
.case-study-card {
  background: var(--primary-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid var(--border-color);
}

.case-study-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

.case-study-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  position: relative;
  overflow: hidden;
}

.case-study-card:hover .case-study-image {
  transform: scale(1.1) rotate(2deg);
}

.case-study-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 82, 0.2), rgba(0, 136, 255, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.case-study-card:hover .case-study-image::after {
  opacity: 1;
}

.case-study-content {
  padding: 1.5rem;
}

.case-study-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
}

.metric h6 {
  font-size: 1.3rem;
  color: var(--accent-cyan);
  font-weight: 800;
}

.metric small {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Other Cards */
.mission-card,
.vision-card,
.approach-card {
  background: var(--secondary-bg);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid var(--border-color);
}

.mission-card:hover,
.vision-card:hover,
.approach-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

/* Form & Contact */
.contact-form-wrapper {
  background: var(--secondary-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--primary-bg);
  color: var(--text-dark);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.15);
  background: var(--primary-bg);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
}

footer a {
  color: white;
  transition: all 0.3s ease;
}

footer p {
    color: white;
}

footer h6 {
    color: var(--accent-cyan);
    font-size: 1.4rem;
}

#whyus h5 {
    color: var(--accent-cyan);
    font-size: 1.4rem;
}


footer a:hover {
  color: var(--accent-lime);
}

.social-links a{
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

/* Enhanced responsive media queries */
@media (max-width: 1200px) {
  .hero-section {
    min-height: auto;
    padding: 40px 20px;
  }

  .hero-section h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .service-card, .value-card {
    padding: 1.5rem;
  }
  
  .page-hero{
    min-height: 60dvw;
    }
}

@media (max-width: 992px) {
  .navbar-brand {
    font-size: 1rem;
  }
  
  .page-hero{
    min-height: 50dvw;
    }

  .navbar-light .navbar-nav .nav-link {
    font-size: 0.65rem;
    padding: 0.4rem 0.5rem !important;
  }

  .contact-nav {
    margin-left: 0 !important;
    margin-top: 0.75rem;
    display: inline-block;
  }

  .hero-section {
    min-height: 70vh;
    padding: 30px 20px;
  }

  .hero-section h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .service-card, .value-card, .testimonial-card {
    padding: 1.25rem;
  }

  .btn-primary, .btn-outline-light, .btn-light {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .process-step {
    margin-bottom: 2rem;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .case-study-image, .blog-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 0.95rem;
  }
  
  .hero-image {
      display: none;
  }

  .navbar-light .navbar-nav .nav-link {
    font-size: 0.6rem;
    padding: 0.3rem 0.4rem !important;
  }

  .contact-nav {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.6rem;
  }

  .hero-section {
    min-height: auto;
    padding: 20px 15px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .hero-section .lead {
    font-size: 0.9rem;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .btn-primary, .btn-outline-light, .btn-light {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.65rem;
  }

  .value-card, .service-card, .testimonial-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .cta-section {
    padding: 30px 15px;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .row.g-4 {
    gap: 1rem !important;
  }

  .process-step {
    margin-bottom: 1.5rem;
  }

  .col-md-1 {
    display: none !important;
  }

  .case-study-card, .blog-card {
    margin-bottom: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
  }

  .metric {
    min-width: 45%;
  }

  .hero-image img {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.9rem;
  }
  .page-hero{
    min-height: 40dvw;
    }

  .navbar {
    padding: 0.5rem 0 !important;
  }

  .navbar-brand {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .navbar-light .navbar-nav .nav-link {
    font-size: 0.55rem;
    padding: 0.2rem 0.3rem !important;
  }

  .contact-nav {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.55rem;
    margin-top: 0.5rem;
  }

  .hero-section {
    min-height: auto;
    padding: 15px 12px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .hero-section .lead {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.5rem !important;
  }

  .btn-primary, .btn-outline-light, .btn-light {
    width: 100%;
    padding: 0.55rem 0.8rem;
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }

  .value-card, .service-card, .testimonial-card {
    padding: 0.9rem;
    margin-bottom: 1rem;
  }

  .icon-box, .service-icon, .step-icon {
    font-size: 2rem;
  }

  .value-card h4, .service-card h5 {
    font-size: 0.85rem;
  }

  .value-card p, .service-card p {
    font-size: 0.8rem;
  }

  .cta-section {
    padding: 20px 12px;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .cta-section p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .step-number {
    font-size: 2rem;
  }

  .case-study-image {
    height: 180px;
  }

  .metric h6 {
    font-size: 1.1rem;
  }

  .metric small {
    font-size: 0.6rem;
  }

  .hero-image img {
    max-height: 250px;
  }

  .row.g-4 {
    gap: 0.75rem !important;
  }

  .process-step {
    margin-bottom: 1rem;
  }

  .contact-form-wrapper {
    padding: 1rem;
  }
}
