/* Global Styles */
:root {
  --primary-color: #6c63ff;
  --secondary-color: #5ecdde;
  --accent-color: #ff6584;
  --dark-color: #2a2a5e;
  --light-color: #f7f7ff;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    #8e84ff 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #7edff5 100%
  );
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
}

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

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

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  position: relative;
  margin-bottom: 1.5rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 5px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Header & Navigation */
header {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(42, 42, 94, 0.95) 0%,
      rgba(108, 99, 255, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1374&q=80")
      center/cover no-repeat;
  color: white;
  position: relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 4px;
}

.logo-dots {
  position: relative;
  width: 28px;
  height: 22px;
  margin-left: 5px;
}

.logo-dot {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
}

.logo-dot-1 {
  background: var(--gradient-primary);
  width: 11px;
  height: 11px;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo-dot-2 {
  background: var(--gradient-secondary);
  width: 8px;
  height: 8px;
  top: 30%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-dot-3 {
  background: var(--accent-color);
  width: 6px;
  height: 6px;
  top: 70%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

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

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

.cta-button {
  background-color: var(--accent-color);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 101, 132, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 101, 132, 0.4);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  min-height: calc(100vh - 90px);
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content .highlight {
  color: var(--accent-color);
  position: relative;
  z-index: 1;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 10px;
  background-color: rgba(94, 205, 222, 0.3);
  z-index: -1;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.primary-button,
.secondary-button {
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
}

.primary-button {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(108, 99, 255, 0.4);
}

.secondary-button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-button:hover {
  background-color: white;
  color: var(--primary-color);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 5s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  background: var(--gradient-secondary);
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  bottom: 10%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Services Section */
.services {
  padding: 6rem 10%;
  background-color: white;
}

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

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.service-card h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
}

/* About Section */
.about {
  padding: 6rem 10%;
  background: linear-gradient(
    135deg,
    rgba(247, 247, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #555;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.about-image .image-container {
  position: relative;
  width: 100%;
  height: 400px;
}

.pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.5);
}

.pulse-circle::before,
.pulse-circle::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.pulse-circle::after {
  animation-delay: 1s;
}

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

/* Benefits Section */
.benefits {
  padding: 6rem 10%;
  background-color: white;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.benefit-card h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #666;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 10%;
  background-color: var(--light-color);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 0 auto;
  max-width: 700px;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.author-name {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.author-position {
  color: #777;
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

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

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

/* Contact Section */
.contact {
  padding: 6rem 10%;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 94, 0.95) 0%,
    rgba(108, 99, 255, 0.9) 100%
  );
  color: white;
}

.contact .section-header h2 {
  color: white;
}

.contact .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info-full {
  max-width: 800px;
  text-align: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 10% 1rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-column a {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
  color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 2rem 10%;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .contact-container {
    padding: 0;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .contact-details {
    gap: 1.2rem;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
