:root {
  --bg: #ffffff;
  --surface: #f5f5f5;
  --text: #0f172a;
  --muted: #16bd00;
  --slc: #1be700;
  --brand: #16bd00;
  --brand-500: #13a000;
  --brand-600: #0f8500;
  --brand-700: #0b6100;
  --ring: #108a0079;

  /* Transitions */
  --transition-colors: 300ms;
  --transition-reveal: 0.5s;
  --transform-reveal: 80px;
}

/* Reveal on scroll */
.reveal-y {
  opacity: 0;
  transform: translateY(var(--transform-reveal));
  transition: opacity var(--transition-reveal) ease-out, transform var(--transition-reveal) ease-out;
}

.reveal-y.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-x {
  opacity: 0;
  transform: translateX(var(--transform-reveal));
  transition: opacity var(--transition-reveal) ease-out, transform var(--transition-reveal) ease-out;
}

.reveal-x.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-none {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Content Sections */
.content {
  padding-top: 0;
  width: 100%;
}

.section {
  padding: 4rem 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-rounded {
  border-radius: 65px 65px 0px 0px;
  position: relative;
  margin-top: -4.4rem;
  padding-top: 4.4rem;
  z-index: 2;
  min-height: calc(100vh - 4.5rem);
}

/* Header Styles */
.main-header {
  position: relative;
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  height: 5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-menu a {
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 1rem;
}

.nav-menu a:hover {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Sticky State */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
  animation: slideDown 0.3s ease;
}

.navbar.sticky .logo a {
  color: var(--text);
}

.navbar.sticky .nav-menu a {
  color: var(--text);
}

.navbar.sticky .nav-menu a:hover {
  color: var(--brand-500);
  background: rgba(236, 120, 45, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

body.sticky-nav {
  padding-top: 70px;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform-origin: center;
  border-radius: 1px;
}

.navbar.sticky .hamburger-line {
  background: var(--text);
}

.hamburger.active .hamburger-line.top {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line.middle {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active .hamburger-line.bottom {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-container {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3.5rem;
}

.mobile-nav {
  flex: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  color: var(--brand);
  transform: translateX(10px);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info {
  margin-bottom: 2rem;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
}

.mobile-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

.mobile-social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.mobile-social-link svg {
  width: 20px;
  height: 20px;
}

/* Hero Section */
#Hero {
  min-height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  overflow: hidden;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#Hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + 5rem);
  object-fit: cover;
  z-index: -1;
}

#Hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + 5rem);
  background: rgba(17, 17, 17, 0.8);
  z-index: 0;
}

#Hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: calc(100vh + 5rem);
  background: rgba(9, 112, 0, 0.75);
  z-index: 1;
  border-radius: 0px 80px 0px 0px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 60%;
  padding-left: 5rem;
  padding-right: 5rem;
  height: 100%;
  position: relative;
  top: -4rem;
}

#Hero h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  background: rgba(156, 156, 156, 0.45);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
}

#Hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#Hero p {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
  opacity: 0.9;
}

.hero-btn-box {
  margin-top: 40px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn-contact {
  width: 15rem;
  height: 4rem;
  background: var(--brand-500);
  border-radius: 50px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--brand-500);
  box-shadow: 0 4px 15px rgba(236, 120, 45, 0.3);
}

.hero-btn-contact:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 120, 45, 0.4);
}

.hero-btn-cnv {
  width: 18rem;
  height: 4rem;
  background: transparent;
  border: 2px solid white;
  margin-left: 0;
  border-radius: 50px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-btn-cnv:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* About Section */

#About {
  background: #fff;
  border-radius: 65px 65px 0px 0px;
  margin-top: -4.4rem;
  padding-top: 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section-card {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  padding: 35px;
}

.about-content-panel {
  background: #ededed;
  border-radius: 40px;
  padding: 2rem;
}

.about-image-container {
  height: 100%;
  padding-top: 0;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profile-visual-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 40px;
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  transition: transform 0.3s ease;
}

.about-image-container:hover .profile-image {
  transform: scale(1.05);
}

.profile-placeholder-text {
  display: none;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: var(--text);
  font-weight: 800;
}

.title-highlight {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.about-body-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 2rem;
  text-align: left;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0;
}

.about-stat-value {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-500);
  margin-bottom: 0.25rem;
}

.about-stat-description {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: #777777;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Section */
#Services {
  background: #f8f9fa;
  padding: 6rem 2rem 10.4rem 2rem;
  min-height: auto;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.services-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-500) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.skills-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: calc(100% - 2rem);
}

.skill-tag {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0.9;
}

.service-card:hover .skill-tag {
  background: rgba(255, 255, 255, 0.95);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-content {
  padding: 2rem;
}

.service-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-name {
  color: var(--brand-500);
}

.service-description {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.service-duration,
.service-projects {
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  color: #777;
  font-weight: 600;
}

.service-duration::before {
  content: "⏱ ";
  margin-right: 0.3rem;
}

.service-projects::before {
  content: "📊 ";
  margin-right: 0.3rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand);
  transition: left 0.3s ease;
  z-index: -1;
}

.service-btn::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(236, 120, 45, 0.3);
}

.service-btn:hover::before {
  left: 0;
}

.service-btn:hover::after {
  transform: translateX(3px);
}

/* Advantages Section */
#Advantages {
  background: #0f172a;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
}

.advantages-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
}

.advantages-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.advantages-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.advantages-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.7) 50%,
    rgba(236, 120, 45, 0.3) 100%
  );
  z-index: 2;
}

.advantages-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 3;
}

.advantages-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.advantages-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 3;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow, border-color;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.advantage-card:hover::before {
  left: 100%;
}

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 120, 45, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(236, 120, 45, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.advantage-card:hover .advantage-icon {
  background: rgba(236, 120, 45, 0.2);
  transform: scale(1.1);
}

.advantage-icon svg {
  width: 40px;
  height: 40px;
  color: var(--brand);
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon svg {
  color: var(--brand-500);
  transform: rotate(5deg);
}

.advantage-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.advantage-card:hover .advantage-title {
  color: var(--brand);
}

.advantage-description {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.advantage-border {
  height: 3px;
  width: 40px;
  background: var(--brand);
  margin: 0 auto;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.advantage-card:hover .advantage-border {
  width: 80px;
  background: var(--brand-500);
}

.advantages-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.advantages-stat-item {
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2px;
}

.advantages-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.advantages-stat-number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.advantages-stat-label {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* Testimonial Section */
#Testimonial {
  background: #fff;
  padding: 6rem 2rem;
  min-height: auto;
  display: flex;
  align-items: center;
}

.testimonial-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.testimonial-content {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.testimonial-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.testimonial-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 3rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: auto;
}

.control-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--brand);
  color: white;
  transform: scale(1.1);
}

.control-btn svg {
  width: 24px;
  height: 24px;
}

.pagination-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--brand);
  transform: scale(1.2);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f3f3f3;
  height: 320px;
}

.slider-track {
  position: relative;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.testimonial-card {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.testimonial-card.active {
  display: flex;
  animation: fadeIn 0.5s ease;
  opacity: 100;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-main {
  display: flex;
  gap: 2.5rem;
  height: 100%;
  align-items: center;
  padding: 2.5rem;
}

.client-image {
  flex-shrink: 0;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem 0;
}

.quote-icon {
  font-size: 5rem;
  color: var(--brand-500);
  opacity: 0.6;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -18px;
  z-index: 1;
}

blockquote {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 2;
  font-style: italic;
  flex: 1;
  display: flex;
  padding-top: 15px;
}

.client-info {
  border-top: 1px solid #c4c4c4;
  padding-top: 1rem;
  height: 7rem;
  position: absolute;
  bottom: -50px;
  width: 100%;
}

.client-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.client-role {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: #777;
  font-weight: 500;
}

/* FAQ Section */
#FAQ {
  background: #ffffff;
  padding: 6rem 2rem;
  min-height: auto;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.faq-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto 4rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: #fafafa;
}

.faq-question {
  width: 100%;
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  flex: 1;
  margin-right: 1.5rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--brand);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s;
  background: #ffffff;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 2rem 1.8rem;
}

.faq-answer p {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Blog Section */
#Blog {
  background: #f8f9fa;
  padding: 6rem 2rem;
  min-height: auto;
}

.blog-container {
  max-width: 1300px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 4rem;
}

.blog-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.blog-titles {
  flex: 1;
}

.blog-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 500px;
}

.blog-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-more-btn:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(236, 120, 45, 0.3);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.blog-more-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-500);
  color: white;
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  line-height: 1;
  z-index: 2;
}

.date-day {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.date-month {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.read-more-btn {
  padding: 0.8rem 1.8rem;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.blog-card:hover .read-more-btn {
  transform: translateY(0);
}

.read-more-btn:hover {
  background: var(--brand-500);
  transform: translateY(-2px);
}

.blog-content {
  padding: 2rem;
  padding-bottom: 3.5rem;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-category {
  background: rgba(236, 120, 45, 0.1);
  color: var(--brand-500);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-post-title {
  color: var(--brand-500);
}

.blog-excerpt {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 1rem 2rem 1rem 2rem;
  bottom: 0;
}

.read-time {
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
}

.blog-author {
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  color: var(--brand-500);
  font-weight: 600;
}

/* Contact Section */
#Contact {
  background: #f8f9fa;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  gap: 4rem;
  align-items: center;
  max-height: 600px;
  margin-bottom: 5rem;
}

.contact-image-column {
  height: 100%;
}

.contact-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/5;
  max-height: 500px;
  width: 100%;
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method svg {
  width: 16px;
  height: 16px;
  color: var(--brand-500);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-method div {
  width: 100%;
}

.contact-method strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.contact-method p {
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.3;
  margin: 0;
}

.contact-form-column {
  height: 100%;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-header h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-header p {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(236, 120, 45, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 0.9rem;
  padding-right: 2.2rem;
}

.form-group select:required:invalid {
  color: #94a3b8;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: var(--brand-500);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  align-self: center;
  min-width: 160px;
}

.submit-btn:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(236, 120, 45, 0.3);
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Footer Section */
#Footer {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
  border-radius: 65px 65px 0px 0px;
  color: white;
  padding: 4rem 2rem 2rem;
  min-height: auto;
  margin-top: -4.4rem;
  padding-top: 4.4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  margin: 0;
}

.footer-description {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: white;
  margin: 0;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-menu a {
  font-family: "Nunito", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 0.3rem 0;
}

.footer-menu a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.newsletter-text {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: white;
  color: var(--brand-500);
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover .btn-arrow {
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: white;
}
