:root {
  /* Primary Colors */
  --primary-1: #3A3F78; /* Deep Indigo */
  --primary-2: #E5A356; /* Golden Sand */
  --primary-3: #F5F5F5; /* Soft White */
  --primary-4: #D1E0E8; /* Pale Blue */
  --primary-5: #5D7A8C; /* Steel Blue */
  
  /* Shades */
  --primary-1-light: #4E5392;
  --primary-1-dark: #2C305C;
  --primary-2-light: #F0B778;
  --primary-2-dark: #C6883D;
  --primary-3-light: #FFFFFF;
  --primary-3-dark: #E0E0E0;
  --primary-4-light: #E4EEF3;
  --primary-4-dark: #B5CDDB;
  --primary-5-light: #7A94A3;
  --primary-5-dark: #4A6271;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--primary-3);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-2);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn-primary {
  background-color: var(--primary-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-2);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
}

.btn-outline:hover {
  background-color: var(--primary-1);
  color: white;
}

/* Section styles */
section {
  padding: 100px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--primary-5);
}

/* Header / Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: white;
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 600;
  color: var(--primary-1);
  margin: 0 10px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-2);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-3);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-5);
}

.hero-image {
  position: relative;
}

.shape {
  position: absolute;
  opacity: 0.3;
}

.shape-1 {
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  bottom: -100px;
  left: -50px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-1);
  border-radius: 56% 44% 27% 73% / 30% 65% 35% 70%;
}

/* About Section */
.about {
  background-color: var(--primary-3-light);
}

.about-feature {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 20px;
}

/* Services Section */
.services {
  background-color: var(--primary-4-light);
}

.service-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-image {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 15px 0;
}

.service-features {
  margin: 20px 0;
  flex-grow: 1;
}

.service-features ul {
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 8px;
}

/* Features Section */
.features {
  background-color: white;
}

.feature-item {
  text-align: center;
  margin-bottom: 40px;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--primary-4-light);
}

.price-item {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.price-item .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 20px 0;
}

.price-features {
  margin: 25px 0;
  text-align: left;
}

.price-features ul {
  padding-left: 15px;
  list-style-type: none;
}

.price-features li {
  padding: 5px 0;
  position: relative;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-2);
  position: absolute;
  left: -15px;
}

.price-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  background-color: var(--primary-2);
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 40px;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-5);
  font-style: italic;
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-4-light);
  position: relative;
  overflow: hidden;
}

.reviews .shape {
  z-index: 0;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
  z-index: 10;
}

.review-text {
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.review-text:before, .review-text:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-2);
  opacity: 0.3;
  position: absolute;
}

.review-text:before {
  top: -20px;
  left: -10px;
}

.review-text:after {
  bottom: -40px;
  right: -10px;
}

.review-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.review-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.review-author-info h5 {
  margin-bottom: 0;
}

.review-author-info small {
  color: var(--primary-5);
}

/* Core Info Section */
.coreinfo {
  background-color: white;
}

.coreinfo-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 20px;
}

.coreinfo-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  background-color: var(--primary-3-light);
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.custom-checkbox {
  margin-bottom: 20px;
}

.custom-checkbox .custom-control-label {
  padding-left: 10px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

/* Blog Section */
.blog {
  background-color: var(--primary-3-light);
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 15px;
  color: var(--primary-5);
}

/* FAQ Section */
.faq {
  background-color: white;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: white;
  color: var(--primary-1);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: white;
  box-shadow: none;
}

.accordion-body {
  padding: 20px;
  background-color: white;
}

/* Gallery Section */
.gallery {
  background-color: var(--primary-4-light);
  padding: 100px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 63, 120, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-icon {
  color: white;
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--primary-1-dark);
  color: white;
  padding: 60px 0 20px;
}

footer h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

footer p {
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-2);
  padding-left: 5px;
}

#site-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
} 