:root {
  --primary-color-1: #3A86FF; /* Vibrant blue */
  --primary-color-1-light: #70A5FF;
  --primary-color-1-dark: #0059CC;
  
  --primary-color-2: #FF595E; /* Coral red */
  --primary-color-2-light: #FF8B8F;
  --primary-color-2-dark: #CC292F;
  
  --primary-color-3: #FFCA3A; /* Sunny yellow */
  --primary-color-3-light: #FFD970;
  --primary-color-3-dark: #CC9C08;
  
  --primary-color-4: #8AC926; /* Fresh green */
  --primary-color-4-light: #ABD95E;
  --primary-color-4-dark: #5C9700;
  
  --primary-color-5: #6A4C93; /* Deep purple */
  --primary-color-5-light: #9178B3;
  --primary-color-5-dark: #4A2F6A;
  
  --neutral-light: #F8F9FA;
  --neutral-medium: #E9ECEF;
  --neutral-dark: #343A40;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 42px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 60px;
  background-color: var(--primary-color-1);
}

.section-title.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: #fff;
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
}

.navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  width: 70%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--neutral-light);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-position: center;
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  background-color: var(--primary-color-1);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.1;
}

/* Services Section */
.services-section {
  position: relative;
  background-color: var(--neutral-light);
}

.service-card {
  padding: 30px;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--primary-color-1);
  font-size: 30px;
}

.service-price {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--primary-color-3-light);
  color: var(--primary-color-3-dark);
  border-radius: 30px;
  font-weight: 600;
  margin-top: 15px;
}

.service-features {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color-4);
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-feature {
  margin-bottom: 30px;
}

.about-feature-icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--primary-color-1);
  font-size: 25px;
}

/* Features Section */
.features-section {
  background-color: var(--neutral-light);
  position: relative;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto 25px;
  color: var(--primary-color-1);
  font-size: 35px;
}

/* Price Plan Section */
.pricing-card {
  padding: 40px 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  height: 100%;
  border-top: 5px solid var(--primary-color-1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-top-color: var(--primary-color-2);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-price {
  color: var(--primary-color-2);
}

.pricing-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: all 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.team-info h5 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-color-1);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  background-color: var(--neutral-light);
}

.review-card {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.review-text:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color-1);
  opacity: 0.3;
  font-size: 20px;
}

.review-author {
  font-weight: 600;
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-card {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--primary-color-1);
  font-size: 25px;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--neutral-light);
  border: 1px solid transparent;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
  border-radius: 20px;
}

.form-check {
  margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
  position: relative;
  background-color: var(--neutral-light);
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  display: inline-block;
  color: var(--primary-color-1);
  font-weight: 600;
}

.blog-link:hover {
  color: var(--primary-color-1-dark);
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header .accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  background-color: white;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-body {
  padding: 20px 25px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  position: relative;
  background-color: var(--neutral-light);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding-top: 70px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-heading {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 40px;
  background-color: var(--primary-color-1);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 15px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.footer-bottom {
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin-bottom: 0;
} 