:root {
  /* Primary Color Palette */
  --primary-1: #34495e; /* Deep blue-gray */
  --primary-2: #1abc9c; /* Teal */
  --primary-3: #e67e22; /* Orange */
  --primary-4: #9b59b6; /* Purple */
  --primary-5: #f1c40f; /* Yellow */
  
  /* Light/Dark Variations */
  --primary-1-light: #4a6b8a;
  --primary-1-dark: #2c3e50;
  --primary-2-light: #2ecc71;
  --primary-2-dark: #16a085;
  --primary-3-light: #f39c12;
  --primary-3-dark: #d35400;
  --primary-4-light: #a569bd;
  --primary-4-dark: #8e44ad;
  --primary-5-light: #f4d03f;
  --primary-5-dark: #e6b900;
  
  /* Neutral Tones */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --black: #000000;
  
  /* Font Sizes */
  --h1-size: 3.5rem;
  --h2-size: 2.8rem;
  --h3-size: 2.2rem;
  --h4-size: 1.8rem;
  --h5-size: 1.4rem;
  --h6-size: 1.2rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-1-dark);
}

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-2-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

.btn-secondary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title h2 {
  font-size: var(--h2-size);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary-2);
  bottom: 0;
  left: 25%;
}

.section-subtitle {
  font-size: var(--h5-size);
  color: var(--primary-3);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.section-description {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background-color: var(--white);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
}

.navbar-nav .nav-link {
  color: var(--primary-1);
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  position: relative;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-2);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  width: 70%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(135deg, rgba(52, 73, 94, 0.9), rgba(26, 188, 156, 0.8)), url('../MET_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: var(--h1-size);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 1s ease;
}

.hero-subtitle-1 {
  font-size: var(--h4-size);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-desc-1 {
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
  max-width: 600px;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 20%;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: var(--spacing-md);
}

.about-feature {
  background: var(--white);
  border-radius: 8px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 0;
  background: var(--primary-2);
  top: 0;
  left: 0;
  transition: height 0.3s ease;
}

.about-feature:hover:before {
  height: 100%;
}

.about-feature-name {
  font-weight: 700;
  font-size: var(--h5-size);
  margin-bottom: 10px;
  color: var(--primary-1);
  position: relative;
  padding-left: 15px;
}

.about-feature-desc {
  color: var(--dark-gray);
  padding-left: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
  position: relative;
}

.services-container {
  position: relative;
  z-index: 2;
}

.service-item {
  background: var(--white);
  border-radius: 10px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-2);
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: rotateY(180deg);
}

.service-name {
  font-weight: 700;
  font-size: var(--h4-size);
  margin-bottom: 10px;
  color: var(--primary-1);
}

.service-desc {
  margin-bottom: var(--spacing-sm);
}

.service-features {
  margin-bottom: var(--spacing-sm);
}

.service-features ul {
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 5px;
}

.service-price {
  font-size: var(--h5-size);
  font-weight: 700;
  color: var(--primary-3);
  margin-top: auto;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-md);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--primary-2-light);
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto var(--spacing-sm);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--primary-2);
  transform: rotateY(180deg);
}

.feature-name {
  font-weight: 700;
  font-size: var(--h5-size);
  margin-bottom: 10px;
  color: var(--primary-1);
}

.feature-desc {
  color: var(--dark-gray);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
  position: relative;
}

.price-item {
  background: var(--white);
  border-radius: 10px;
  padding: var(--spacing-md);
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-2);
  color: var(--white);
  padding: 5px 15px;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 0 10px 0 10px;
}

.price-name {
  font-weight: 700;
  font-size: var(--h4-size);
  margin-bottom: 10px;
  color: var(--primary-1);
}

.price-desc {
  margin-bottom: var(--spacing-sm);
}

.price-features {
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.price-features ul {
  padding-left: 20px;
  list-style-type: none;
}

.price-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-2);
  position: absolute;
  left: 0;
  top: 2px;
}

.price-value {
  font-size: var(--h3-size);
  font-weight: 700;
  color: var(--primary-3);
  margin-bottom: var(--spacing-sm);
}

/* Team Section */
.team-section {
  position: relative;
}

.team-container {
  position: relative;
  z-index: 2;
}

.team-member {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-content {
  padding: var(--spacing-md);
  text-align: center;
}

.team-member-name {
  font-weight: 700;
  font-size: var(--h5-size);
  margin-bottom: 5px;
  color: var(--primary-1);
}

.team-member-role {
  color: var(--primary-2);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
  position: relative;
}

.reviews-container {
  position: relative;
  z-index: 2;
}

.review-slider {
  margin-bottom: var(--spacing-md);
}

.review-item {
  background: var(--white);
  border-radius: 10px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 10px;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-left: 30px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-2-light);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  opacity: 0.5;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
  display: flex;
  align-items: center;
}

.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.review-name {
  margin-bottom: 0;
}

.review-position {
  font-size: var(--text-sm);
  color: var(--primary-2);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-2);
  transition: all 0.3s ease;
}

.coreinfo-item:hover .coreinfo-icon {
  transform: rotateY(180deg);
}

.coreinfo-title {
  font-weight: 700;
  font-size: var(--h5-size);
  margin-bottom: 10px;
  color: var(--primary-1);
}

.coreinfo-desc {
  color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  background: var(--white);
  border-radius: 10px;
  padding: var(--spacing-md);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-control {
  height: calc(2.5rem + 2px);
  padding: 0.5rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 0.2rem rgba(26, 188, 156, 0.25);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

.contact-info {
  background: var(--primary-1);
  color: var(--white);
  border-radius: 10px;
  padding: var(--spacing-md);
  height: 100%;
}

.contact-info-item {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--primary-2);
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-weight: 600;
  margin-bottom: 5px;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-gray);
  position: relative;
}

.blog-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-date {
  font-size: var(--text-sm);
  color: var(--primary-2);
  margin-bottom: 10px;
}

.blog-title {
  font-weight: 700;
  font-size: var(--h5-size);
  margin-bottom: 10px;
  color: var(--primary-1);
}

.blog-excerpt {
  margin-bottom: var(--spacing-sm);
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.faq-accordion {
  margin-bottom: var(--spacing-md);
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--medium-gray);
}

.accordion-header {
  background: var(--white);
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: var(--primary-1);
  transition: all 0.3s ease;
}

.accordion-header:after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.accordion-header.active {
  background: var(--primary-2-light);
  color: var(--white);
}

.accordion-header.active:after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  background: var(--white);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content-inner {
  padding: 15px 20px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 15px 20px;
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-container {
  margin-bottom: var(--spacing-md);
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 188, 156, 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-icon {
  color: var(--white);
  font-size: 2rem;
  transform: scale(0);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Footer */
.footer {
  background: var(--primary-1-dark);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-logo img {
  height: 40px;
}

.footer-desc {
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: var(--h5-size);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.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;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-2);
}

.footer-bottom {
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  margin-bottom: var(--spacing-sm);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--primary-1);
  padding: 100px 0 30px;
  position: relative;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  font-size: var(--h2-size);
  color: var(--white);
  margin-bottom: 10px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav a {
  color: var(--white);
}

.breadcrumb-nav i {
  margin: 0 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Additional Pages Styles */
.add-page-section {
  padding: var(--spacing-xl) 0;
}

.add-page-content {
  margin-bottom: var(--spacing-lg);
}

.add-page-title {
  font-size: var(--h2-size);
  margin-bottom: var(--spacing-sm);
  color: var(--primary-1);
}

.add-page-subtitle {
  font-size: var(--h5-size);
  color: var(--primary-2);
  margin-bottom: var(--spacing-sm);
}

.add-page-desc {
  margin-bottom: var(--spacing-md);
}

.add-page-element {
  background: var(--white);
  border-radius: 10px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.add-page-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.add-page-element-title {
  font-weight: 700;
  font-size: var(--h5-size);
  margin-bottom: 10px;
  color: var(--primary-1);
}

.add-page-element-desc {
  color: var(--dark-gray);
}

.add-page-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.add-page-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.add-page-img:hover img {
  transform: scale(1.05);
} 