/* Base Styles */
:root {
  --primary-color: #0066cc;
  --primary-dark: #004e9c;
  --primary-light: #e6f0ff;
  --secondary-color: #00cc99;
  --accent-color: #ff6633;
  --dark-color: #333333;
  --text-color: #4a4a4a;
  --light-text: #777777;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --border-radius: 8px;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--dark-color);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-text);
  font-size: 18px;
}

.highlight {
  color: var(--primary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 700;
}

.logo-text {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-item {
  margin: 0 15px;
}

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

.nav-item a:hover,
.nav-item a.active {
  color: var(--primary-color);
}

.nav-item a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.nav-cta {
  margin-left: 15px;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

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

.hero-content {
  flex: 0 0 50%;
}

.hero-content h1 {
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--text-color);
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 0 0 45%;
  text-align: right;
}

/* Stats Section */
.stats {
  background-color: var(--white);
  padding: 60px 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--border-radius);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.stat-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 18px;
  color: var(--light-text);
}

/* Services Section */
.services {
  background-color: var(--light-bg);
}

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

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

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

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

.service-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.service-card p {
  color: var(--light-text);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.service-link i {
  margin-left: 8px;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Why Us Section */
.why-us {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(360deg);
  transition: transform 0.8s;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature p {
  color: var(--light-text);
}

/* Testimonials Section */
.testimonials-preview {
  background-color: var(--primary-light);
  position: relative;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 30px;
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.author-info p {
  margin: 0;
  color: var(--light-text);
  font-size: 14px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 10px;
}

.testimonial-indicators {
  display: flex;
  gap: 10px;
  margin: 0 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background-color: var(--primary-light);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  font-size: 28px;
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 20px;
}

.footer-links ul,
.footer-services ul {