@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap);
:root {
   --primary: #ff6b6b;
   --primary-dark: #ee5253;
   --secondary: #5f27cd;
   --light: #f9f9f9;
   --dark: #222f3e;
   --gray: #8395a7;
}

body {
   font-family: "Poppins", sans-serif;
   color: var(--dark);
   background-color: #fff;
   overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "Playfair Display", serif;
   font-weight: 600;
}

.navbar {
   transition: all 0.3s ease;
   padding: 1rem 2rem;
}

.navbar-brand {
   font-family: "Playfair Display", serif;
   font-weight: 700;
   font-size: 1.8rem;
   color: var(--primary);
}

.navbar-scrolled {
   background-color: white;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-link {
   color: var(--dark);
   font-weight: 500;
   margin: 0 0.5rem;
   transition: color 0.3s ease;
}

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

.btn-primary {
   background-color: var(--primary);
   border-color: var(--primary);
   border-radius: 30px;
   padding: 0.5rem 1.5rem;
   transition: all 0.3s ease;
}

.btn-primary:hover {
   background-color: var(--primary-dark);
   border-color: var(--primary-dark);
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
   background-color: var(--secondary);
   border-color: var(--secondary);
   border-radius: 30px;
   padding: 0.5rem 1.5rem;
   transition: all 0.3s ease;
}

.btn-secondary:hover {
   background-color: #4527a0;
   border-color: #4527a0;
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(95, 39, 205, 0.4);
}

.btn-outline {
   border: 2px solid var(--primary);
   color: var(--primary);
   background: transparent;
   border-radius: 30px;
   padding: 0.5rem 1.5rem;
   transition: all 0.3s ease;
}

.btn-outline:hover {
   background-color: var(--primary);
   color: white;
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.hero {
   background: linear-gradient(
      135deg,
      rgba(255, 107, 107, 0.05) 0%,
      rgba(95, 39, 205, 0.05) 100%
   );
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
}

.hero::before {
   content: "";
   position: absolute;
   top: -100px;
   right: -100px;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   background: rgba(255, 107, 107, 0.1);
   z-index: 0;
}

.hero::after {
   content: "";
   position: absolute;
   bottom: -100px;
   left: -100px;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   background: rgba(95, 39, 205, 0.1);
   z-index: 0;
}

.hero-content {
   position: relative;
   z-index: 2;
}

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

.hero h1 span {
   color: var(--primary);
}

.hero p {
   font-size: 1.2rem;
   margin-bottom: 2rem;
   color: var(--gray);
}
.hero img {
   border-radius: 24px;
}

.highlight-box {
   background-color: white;
   border-radius: 10px;
   padding: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   height: 100%;
}

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

.highlight-box .icon {
   width: 70px;
   height: 70px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: rgba(255, 107, 107, 0.1);
   color: var(--primary);
   border-radius: 50%;
   font-size: 1.5rem;
   margin-bottom: 1.5rem;
}

.section-title {
   margin-bottom: 3rem;
   position: relative;
}

.section-title::after {
   content: "";
   display: block;
   width: 50px;
   height: 3px;
   background-color: var(--primary);
   margin: 1rem auto 0;
}

.testimonial-card {
   background-color: white;
   border-radius: 10px;
   padding: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   margin-bottom: 2rem;
   position: relative;
}

.testimonial-card::before {
   content: "\201C";
   font-size: 5rem;
   color: rgba(255, 107, 107, 0.1);
   position: absolute;
   top: 10px;
   left: 20px;
   font-family: Georgia, serif;
}

.testimonial-card .avatar {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid var(--primary);
}

.pricing-card {
   background-color: white;
   border-radius: 10px;
   padding: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   position: relative;
   height: 100%;
}

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

.pricing-card.featured {
   border: 2px solid var(--primary);
}

.pricing-card.featured::before {
   content: "Most Popular";
   position: absolute;
   top: -12px;
   left: 50%;
   transform: translateX(-50%);
   background-color: var(--primary);
   color: white;
   padding: 0.25rem 1rem;
   border-radius: 20px;
   font-size: 0.8rem;
   font-weight: 600;
}

.price {
   font-size: 2.5rem;
   font-weight: 700;
   color: var(--primary);
   margin-bottom: 1.5rem;
}

.price span {
   font-size: 1rem;
   color: var(--gray);
   font-weight: 400;
}

.feature-list {
   list-style: none;
   padding: 0;
   margin: 0 0 2rem;
}

.feature-list li {
   padding: 0.5rem 0;
   position: relative;
   padding-left: 1.5rem;
}

.feature-list li::before {
   content: "\f00c";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   color: var(--primary);
   position: absolute;
   left: 0;
}

.contact-form {
   background-color: white;
   border-radius: 10px;
   padding: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
   border: 1px solid #e1e1e1;
   padding: 0.8rem 1rem;
   height: auto;
   border-radius: 5px;
}

.form-control:focus {
   border-color: var(--primary);
   box-shadow: none;
}

footer {
   background-color: var(--dark);
   color: white;
   padding: 4rem 0 2rem;
}

.footer-heading {
   font-size: 1.5rem;
   margin-bottom: 1.5rem;
   color: white;
}

.footer-link {
   color: rgba(255, 255, 255, 0.7);
   transition: all 0.3s ease;
   display: block;
   margin-bottom: 0.5rem;
   text-decoration: none;
}

.footer-link:hover {
   color: var(--primary);
   transform: translateX(5px);
}

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

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

.copyright {
   padding-top: 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   margin-top: 2rem;
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.7);
}

/* Responsive styles */
@media (max-width: 991.98px) {
   .hero h1 {
      font-size: 2.8rem;
   }

   .navbar {
      background-color: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   }
}

@media (max-width: 767.98px) {
   .hero h1 {
      font-size: 2.2rem;
   }

   .section-padding {
      padding: 3rem 0;
   }

   .hero-img {
      margin-top: 2rem;
   }
}
