/* Import the styles from _sass directory */
/* Import the main variables and settings */
/* Main styles for the website */
/* Variables for the website */
:root {
  --primary: #1e3c72;
  --primary-light: #2a5298;
  --secondary: #ff6c5f;
  --dark: #111827;
  --light: #f8fafc;
  --gray: #94a3b8;
  --gray-light: #e2e8f0;
  --success: #10b981;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

header.scrolled .logo {
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

header.scrolled .nav-link {
  color: var(--dark);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.social-link {
  color: var(--light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

header.scrolled .social-link {
  color: var(--dark);
}

.social-link:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, var(--secondary), #ff9f7f);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 108, 95, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 108, 95, 0.5);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

header.scrolled .mobile-menu-btn {
  color: var(--dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://placehold.co/1920x1080") center/cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s 0.2s both;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-cta .cta-button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.secondary-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.secondary-link:hover {
  color: var(--secondary);
}

.secondary-link i {
  font-size: 1.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--light);
  opacity: 0.7;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator i {
  font-size: 1.5rem;
}

.scroll-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* About Section */
.about {
  padding: 8rem 0;
  position: relative;
  background-color: white;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://placehold.co/1920x1080") center/cover no-repeat;
  opacity: 0.02;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

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

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--gray);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.expertise-card {
  background-color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 2;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: rgba(30, 60, 114, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  background: var(--primary);
  color: white;
  border-radius: 50%;
}

.expertise-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.expertise-text {
  color: var(--gray);
  line-height: 1.7;
}

/* Process Section */
.process {
  padding: 8rem 0;
  background-color: #f8f9fc;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.process-item {
  background-color: white;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

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

.process-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.process-title {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--dark);
}

.process-text {
  color: var(--gray);
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background-color: white;
  position: relative;
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  width: 300%; /* 100% per slide for 3 slides */
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  width: 33.333%; /* 1/3 of the track for 3 slides */
  padding: 0 1rem;
  flex-shrink: 0;
}

.testimonial-container {
  padding: 3rem;
  background-color: #f8f9fc;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: -20px;
  font-size: 10rem;
  color: rgba(30, 60, 114, 0.05);
  font-family: "Playfair Display", serif;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--gray-light);
}

.author-info h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--secondary);
  transform: scale(1.2);
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--dark);
}

.carousel-arrow:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Blog Section */
.blog {
  padding: 8rem 0;
  background-color: #f8f9fc;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--secondary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-date i {
  color: var(--secondary);
}

.blog-title {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-link {
  align-self: flex-start;
  padding: 0.7rem 1.5rem;
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link:hover {
  background-color: var(--primary);
  color: white;
}

.blog-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(3px);
}

.view-all-link {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.view-all-btn {
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.view-all-btn:hover {
  background-color: var(--primary);
  color: white;
}

.view-all-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(3px);
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://placehold.co/1920x1080") center/cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.contact .section-title,
.contact .section-subtitle {
  color: var(--light);
}

.contact .section-title::after {
  background-color: var(--light);
}

.contact .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.contact-content {
  margin-top: 4rem;
  text-align: center;
}

.contact-cta {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact .cta-button {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--light);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary);
}

.copyright {
  opacity: 0.5;
  font-size: 0.9rem;
}

/* Calendly Modal Styles */
.calendly-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
}

.calendly-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  height: 80vh;
  background: white;
  border-radius: 15px;
  z-index: 1001;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: none;
}

.calendly-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.calendly-close:hover {
  background: #f1f5f9;
  transform: rotate(90deg);
}

/* Blog Post Content Styles */
.blog-post-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content h2 {
  font-size: 2.2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-post-content h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.blog-post-content h4 {
  font-size: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 1.5rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--gray);
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.blog-post-content a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary-light);
  transition: all 0.3s ease;
}

.blog-post-content a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-link {
    color: var(--dark);
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
  }
  .social-link {
    color: var(--dark);
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .calendly-popup {
    width: 95%;
    height: 90vh;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
}
/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

header.scrolled .logo {
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

header.scrolled .nav-link {
  color: var(--dark);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.social-link {
  color: var(--light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

header.scrolled .social-link {
  color: var(--dark);
}

.social-link:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, var(--secondary), #ff9f7f);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 108, 95, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 108, 95, 0.5);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

header.scrolled .mobile-menu-btn {
  color: var(--dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://placehold.co/1920x1080") center/cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s 0.2s both;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-cta .cta-button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.secondary-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.secondary-link:hover {
  color: var(--secondary);
}

.secondary-link i {
  font-size: 1.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--light);
  opacity: 0.7;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator i {
  font-size: 1.5rem;
}

.scroll-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* About Section */
.about {
  padding: 8rem 0;
  position: relative;
  background-color: white;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://placehold.co/1920x1080") center/cover no-repeat;
  opacity: 0.02;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

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

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--gray);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.expertise-card {
  background-color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 2;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: rgba(30, 60, 114, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  background: var(--primary);
  color: white;
  border-radius: 50%;
}

.expertise-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.expertise-text {
  color: var(--gray);
  line-height: 1.7;
}

/* Process Section */
.process {
  padding: 8rem 0;
  background-color: #f8f9fc;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.process-item {
  background-color: white;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

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

.process-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.process-title {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--dark);
}

.process-text {
  color: var(--gray);
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background-color: white;
  position: relative;
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  width: 300%; /* 100% per slide for 3 slides */
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  width: 33.333%; /* 1/3 of the track for 3 slides */
  padding: 0 1rem;
  flex-shrink: 0;
}

.testimonial-container {
  padding: 3rem;
  background-color: #f8f9fc;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: -20px;
  font-size: 10rem;
  color: rgba(30, 60, 114, 0.05);
  font-family: "Playfair Display", serif;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--gray-light);
}

.author-info h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--secondary);
  transform: scale(1.2);
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--dark);
}

.carousel-arrow:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Blog Section */
.blog {
  padding: 8rem 0;
  background-color: #f8f9fc;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--secondary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-date i {
  color: var(--secondary);
}

.blog-title {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-link {
  align-self: flex-start;
  padding: 0.7rem 1.5rem;
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link:hover {
  background-color: var(--primary);
  color: white;
}

.blog-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(3px);
}

.view-all-link {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.view-all-btn {
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.view-all-btn:hover {
  background-color: var(--primary);
  color: white;
}

.view-all-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(3px);
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://placehold.co/1920x1080") center/cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.contact .section-title,
.contact .section-subtitle {
  color: var(--light);
}

.contact .section-title::after {
  background-color: var(--light);
}

.contact .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.contact-content {
  margin-top: 4rem;
  text-align: center;
}

.contact-cta {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact .cta-button {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--light);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary);
}

.copyright {
  opacity: 0.5;
  font-size: 0.9rem;
}

/* Calendly Modal Styles */
.calendly-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
}

.calendly-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  height: 80vh;
  background: white;
  border-radius: 15px;
  z-index: 1001;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: none;
}

.calendly-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.calendly-close:hover {
  background: #f1f5f9;
  transform: rotate(90deg);
}

/* Blog Post Content Styles */
.blog-post-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content h2 {
  font-size: 2.2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-post-content h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.blog-post-content h4 {
  font-size: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 1.5rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--gray);
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.blog-post-content a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary-light);
  transition: all 0.3s ease;
}

.blog-post-content a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-link {
    color: var(--dark);
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
  }
  .social-link {
    color: var(--dark);
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .calendly-popup {
    width: 95%;
    height: 90vh;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=main.css.map */