/* Root Variables */
:root {
  --primary-color: #6a8caf;
  --primary-dark: #4e6a8a;
  --primary-light: #a1b9d1;
  --secondary-color: #e8b4bc;
  --secondary-dark: #c98d96;
  --secondary-light: #f7d6db;
  --accent-color: #f4d06f;
  --accent-dark: #dbb346;
  --accent-light: #fae5a8;
  --success-color: #a8d5ba;
  --warning-color: #f8c986;
  --danger-color: #e88c95;
  --text-dark: #2c3e50;
  --text-medium: #546e7a;
  --text-light: #78909c;
  --background-light: #f7f9fc;
  --background-medium: #eef2f7;
  --background-dark: #e0e6ed;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.1);
  --shadow-hard: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius-small: 8px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);

}
.title{
  width: 100%;
  margin-bottom: 40px !important;
}
a {
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.read-more::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.read-more:hover::after {
  width: 100%;
}

/* Neomorphic Elements */
.neomorphic-container {
  background-color: var(--background-light);
  border-radius: var(--border-radius-medium);
  box-shadow: 
    10px 10px 20px rgba(166, 180, 200, 0.2), 
    -10px -10px 20px rgba(255, 255, 255, 0.7);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.neomorphic-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    15px 15px 25px rgba(166, 180, 200, 0.3), 
    -15px -15px 25px rgba(255, 255, 255, 0.8);
}

.neomorphic-button {
  background: linear-gradient(145deg, var(--background-light), var(--background-medium));
  box-shadow: 
    5px 5px 10px rgba(166, 180, 200, 0.2), 
    -5px -5px 10px rgba(255, 255, 255, 0.7);
  border: none;
  transition: all var(--transition-medium);
}

.neomorphic-button:hover {
  background: linear-gradient(145deg, var(--background-medium), var(--background-light));
  box-shadow: 
    3px 3px 6px rgba(166, 180, 200, 0.3), 
    -3px -3px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.neomorphic-button:active {
  background: var(--background-medium);
  box-shadow: 
    inset 5px 5px 10px rgba(166, 180, 200, 0.3), 
    inset -5px -5px 10px rgba(255, 255, 255, 0.5);
  transform: translateY(0);
}

.neomorphic-input, .neomorphic-textarea, .neomorphic-select {
  background-color: var(--background-light);
  border: none;
  border-radius: var(--border-radius-small);
  box-shadow: 
    inset 5px 5px 10px rgba(166, 180, 200, 0.2), 
    inset -5px -5px 10px rgba(255, 255, 255, 0.7);
  transition: box-shadow var(--transition-fast);
  padding: 0.75rem 1rem;
}

.neomorphic-input:focus, .neomorphic-textarea:focus, .neomorphic-select:focus {
  outline: none;
  box-shadow: 
    inset 7px 7px 14px rgba(166, 180, 200, 0.3), 
    inset -7px -7px 14px rgba(255, 255, 255, 0.8);
}

/* Buttons */
.button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1.5rem;
}

.button.is-primary {
  background-color: var(--primary-color);
  border-color: transparent;
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-light {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.button.is-light:hover {
  background-color: var(--background-medium);
  color: var(--text-dark);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  transition: all var(--transition-medium);
}

.navbar-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-color);
}

.navbar-burger {
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  padding-top: 4rem;
}

.hero-body {
  padding: 6rem 1.5rem;
}

.hero .title, .hero .subtitle, .hero p {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .neomorphic-container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.2), 
    -10px -10px 20px rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-large);
}

/* Section Styles */
.section {
  padding: 5rem 1.5rem;
}

.section .title {
  margin-bottom: var(--spacing-lg);
  position: relative;
  display: inline-block;
}

.section .title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

/* Card Styles */
.card {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  height: 240px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.card:hover .image-container img {
  transform: scale(1.05);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg);
}

.card .title {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
}

.card .content {
  flex: 1;
}

/* Timeline */
.timeline {
  margin-top: var(--spacing-xl);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--primary-light);
  transform: translateX(-50%);
}

.timeline-item {
  padding: 1.5rem 0;
  position: relative;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: 0 0 0 5px var(--primary-light);
  z-index: 1;
}

.timeline-content {
  width: 45%;
  margin-left: 55%;
  padding: var(--spacing-md);
  background-color: white;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-soft);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: 55%;
  text-align: right;
}

/* Clientele Section */
#clientele .neomorphic-container {
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

/* Customer Stories */
#customer-stories .card {
  height: 100%;
}

#customer-stories .media-left img {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* News Section */
#news .card .subtitle {
  color: var(--text-medium);
}

/* Career Section */
.job-item {
  background-color: var(--background-light);
  border-radius: var(--border-radius-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.job-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* Contact Section */
#contact .field {
  margin-bottom: var(--spacing-md);
}

#contact .label {
  font-weight: 600;
  color: var(--text-dark);
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  padding: var(--spacing-xl) 0;
  color: var(--text-medium);
}

.footer .title {
  color: var(--text-dark);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: var(--spacing-sm);
}

.footer ul li a {
  color: var(--text-medium);
  transition: color var(--transition-fast);
}

.footer ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  display: inline-block;
  color: var(--text-medium);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-color);
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stats blocks */
.stat-block {
  text-align: center;
  padding: var(--spacing-lg);
}

.stat-block .title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-color);
}

/* Accolades Section */
#accolades .neomorphic-container {
  height: 100%;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-xl);
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
}

/* Awards Section */
#awards .heading {
  color: var(--text-medium);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
  }

  .timeline-content {
    width: 80%;
    margin-left: 60px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
  }
  
  .hero-body {
    padding: 3rem 1rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
  }
  
  .hero .title {
    font-size: 1.75rem !important;
  }
  
  .hero .subtitle {
    font-size: 1.25rem !important;
  }
}

figure{
  width: 100%;
}