/* Main Styles for IT Company Website */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --primary-color: #4e54c8;
  --primary-dark: #3f44aa;
  --secondary-color: #8f94fb;
  --accent-color: #e6567a;
  --text-dark: #333;
  --text-light: #666;
  --text-color: #333;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --dark-bg: #263238;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
}

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

.section {
  padding: var(--spacing-lg) 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(78, 84, 200, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  height: 80px;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(78, 84, 200, 0.15);
  height: 70px;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  height: 40px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  max-width: 100%;
}

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

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
  margin-right: auto;
  margin-left: 40px;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
}

.nav-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.nav-contact a:hover {
  color: var(--accent-color);
}

.nav-contact i {
  font-size: 1rem;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1100px) {
  .nav-contact {
    display: none;
  }
}

.nav-links li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

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

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  color: white;
  margin-top: 80px; /* Space for fixed header */
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease, transform 5s ease;
  transform: scale(1.05);
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  z-index: 3;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: linear-gradient(90deg, #6e78ff, #e45673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  width: 100%;
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 10;
}

.hero-control {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-control:hover {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.hero-dots {
  display: flex;
  margin: 0 20px;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-dot.active, .hero-dot:hover {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scale(1.2);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  z-index: 10;
  opacity: 0.8;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-down span {
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.scroll-down i {
  animation: bounce 2s infinite;
}

.scroll-down:hover {
  opacity: 1;
  transform: translateY(-5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

.services.dark-bg {
  color: white;
  position: relative;
  overflow: hidden;
}

.services.dark-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(78, 84, 200, 0.1),
    rgba(230, 86, 122, 0.1),
    rgba(78, 84, 200, 0.1)
  );
  transform: rotate(30deg);
  animation: gradientMovement 20s linear infinite;
  z-index: -1;
}

@keyframes gradientMovement {
  0% {
    transform: rotate(30deg) translateY(0) scale(1);
  }
  50% {
    transform: rotate(30deg) translateY(-10%) scale(1.05);
  }
  100% {
    transform: rotate(30deg) translateY(0) scale(1);
  }
}

.services.dark-bg .section-title {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.services.dark-bg .section-title::after {
  background: white;
  box-shadow: 0 0 15px rgba(255,255,255,0.7);
  height: 3px;
  width: 80px;
  animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.dark-bg .service-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(78, 84, 200, 0.15);
  background-color: rgba(255, 255, 255, 0.95);
}

.dark-bg .service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(230, 86, 122, 0.3);
  background-color: rgba(255, 255, 255, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dark-bg .service-card::before {
  height: 2px;
  background: white;
  opacity: 0.7;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.dark-bg .service-icon {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.dark-bg .service-card:hover .service-icon {
  transform: scale(1.2);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.dark-bg .service-title {
  color: white;
}

.dark-bg .service-card .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: linear-gradient(90deg, rgba(78, 84, 200, 0.2), rgba(230, 86, 122, 0.2));
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dark-bg .service-card .btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.dark-bg .service-card .btn-secondary:hover {
  background: linear-gradient(90deg, rgba(78, 84, 200, 0.4), rgba(230, 86, 122, 0.4));
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.dark-bg .service-card .btn-secondary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow);
}

.about-content h2 {
  color: var(--text-dark);
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.stat {
  text-align: center;
  padding: var(--spacing-sm);
  background-color: var(--light-bg);
  border-radius: var(--border-radius-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(78, 84, 200, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
  display: inline-block;
}

.stat-label {
  color: var(--text-dark);
  font-weight: 500;
}

/* Portfolio Section */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portfolio-img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(78, 84, 200, 0.85), rgba(230, 86, 122, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-sm);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.portfolio-category {
  color: var(--white);
  opacity: 0.8;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(99, 135, 255, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
  color: var(--text-color);
  line-height: 1.6;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -15px;
  font-family: serif;
}

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

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.author-position {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-text {
  flex: 1;
}

.contact-heading {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: var(--spacing-sm);
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: var(--spacing-lg) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: var(--spacing-sm);
}

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

.social-links a:hover {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding: var(--spacing-md) 0;
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .logo img {
    height: 35px;
  }
  
  header, header.scrolled {
    padding: 15px 0;
    height: 70px;
  }
  
  .page-banner {
    margin-top: 70px !important;
    padding: 80px 0;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section {
    padding: var(--spacing-md) 0;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .hero {
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .services-grid,
  .testimonials-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .page-banner {
    padding: 60px 0;
  }
  
  .page-banner h1 {
    font-size: 2.2rem;
  }
}

/* Page Banner Styles */
.page-banner {
  margin-top: 80px !important;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block;
  width: 100%;
  font-size: 3rem;
  font-weight: 700;
}

/* Call to Action Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  text-align: center;
  padding: var(--spacing-lg) 0;
}

.cta .btn {
  background: var(--white);
  color: var(--primary-color);
  font-weight: bold;
  border: none;
}

.cta .btn:hover {
  background: linear-gradient(90deg, var(--white), #f0f0f0);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(to right, rgba(78, 84, 200, 0.9), rgba(230, 86, 122, 0.9)), url('../images/newsletter-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: var(--spacing-lg) 0;
}

.newsletter .btn {
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 600;
  border: none;
}

.newsletter .btn:hover {
  background-color: #f0f0f0;
  color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Update section-title after color */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

/* Update for accordions, faq items, etc. */
.faq-question {
  padding: 15px 20px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: white;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

/* Update active states for category tags, filter buttons */
.category-tag.active {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: white;
}

.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: var(--white);
}

/* Success message colors */
.success-icon {
  color: var(--accent-color);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3);
    z-index: 99;
    transition: all 0.3s ease;
    opacity: 0;
}

.scroll-top.show {
    display: flex;
    opacity: 1;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(78, 84, 200, 0.4);
}

/* New styles for benefit-card, strategy-card, pricing-card, contact-card */
.benefit-card, .strategy-card, .pricing-card, .contact-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover, .strategy-card:hover, .pricing-card:hover, .contact-card:hover {
  transform: translateY(-7px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(99, 135, 255, 0.1);
}

.benefit-card::before, .strategy-card::before, .pricing-card::before, .contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--accent-color) transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before, .strategy-card:hover::before, .pricing-card:hover::before, .contact-card:hover::before {
  opacity: 1;
}

@keyframes border-pulse {
  0% {
    border-color: rgba(78, 84, 200, 0.3);
  }
  50% {
    border-color: var(--accent-color);
  }
  100% {
    border-color: rgba(78, 84, 200, 0.3);
  }
}

.card-pulse-animation {
  animation: border-pulse 2s infinite;
}

.contact-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1:not(.hero-title) {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

h2 {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* For dark backgrounds, make the gradient lighter */
section[style*="background: linear-gradient"] .section-title,
section[style*="background: linear-gradient"] h1,
.cta .section-title,
.cta h1 {
  background: linear-gradient(90deg, #8f94fb, #ff97ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.main-btn {
  position: relative;
  overflow: hidden;
}

.main-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  box-shadow: 0 0 10px rgba(78, 84, 200, 0.5);
}

.main-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  animation: glow-pulse 3s infinite;
}

.dark-bg .text-center .main-btn {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
}

.dark-bg .text-center .main-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: white;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

.dark-bg .btn-secondary {
  border-color: white;
  color: white;
  background: linear-gradient(90deg, rgba(78, 84, 200, 0.2), rgba(230, 86, 122, 0.2));
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.dark-bg .btn-secondary:hover {
  background: linear-gradient(90deg, rgba(78, 84, 200, 0.4), rgba(230, 86, 122, 0.4));
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.dark-bg .text-center .btn {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
}

.dark-bg .text-center .btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: white;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
} 