/* Reset and Base Styles */

:root {
  --bg-light: #F8F8F8;
  --radius: 10px;
  --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.08);
  --primary-color: #eb5b01;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}

.header.scrolled {
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px !important;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding 0.3s ease;
}

.header.scrolled .nav-container {
  padding: 0.6rem 2rem;
}

/* Desktop nav */
.nav-menu {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #2C2C2C;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #eb5b01;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #eb5b01;
  transition: width 0.3s ease;
}

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

/* Contact button */
.contact-button {
  display: flex;
  align-items: center;
}

.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d54f01;
  /* Example background color */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  animation: breathing 2s ease-in-out 0s infinite normal none running;
  transition: 0.3s ease-in-out;
}

/* Define the breathing animation */
@keyframes breathing {
  0% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
}

/* Hover effect for smooth transition */
.contact-btn:hover {
  background-color: #d54f01;
  /* Darker shade on hover */
  transform: scale(1.1);
}

/* Hamburger / mobile */
.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2C2C2C;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(80vh - 80px);
    background: rgba(255, 255, 255, 0.97);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    display: block;
  }

  .contact-button {
    margin-top: 1.5rem;
    width: auto;
    text-align: center;

  }

  .contact-btn {
    width: auto;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
  }
}

/* Responsive tweaks for smaller screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 15px;
  }

  .header.scrolled .nav-container {
    padding: 0.6rem 15px;
  }

  .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 1.5rem;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .contact-btn {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #eb5b01;
  color: white;
}

.btn-primary:hover {
  background: #eb5b01;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #2C2C2C;
  border-color: #2C2C2C;
}

.btn-secondary:hover {
  background: #2C2C2C;
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 4rem;
  bottom: 5rem;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fills the section without distortion */
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* overlay for readability */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  max-width: 1200px;
}

.hero-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: #e15002;
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  color: #2C2C2C;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ====== WHY CHOOSE SECTION ====== */
:root {
  --why-primary: #ff7a00;
  /* orange highlight */
  --why-secondary: #d54f01;
  /* deep navy for hover */
  --why-white: #ffffff;
  --why-dark-bg: #ffffff;
  /* section background */
  --why-card-bg: #ffffff;
  /* card background */
  --why-text-color: #000000;
  /* text color */
  --why-subtext-color: #373737;
  /* muted text */
}


.why-section {
  padding: 60px 0;
  background-color: var(--why-dark-bg);
  color: var(--why-text-color);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.why-card {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  background: var(--why-card-bg);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.5s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: var(--why-secondary);
  transition: all 0.5s ease;
  z-index: 1;
}

.why-card:hover a {
  color: var(--why-primary);
}

.why-card:hover::after {
  width: 100%;
  height: 100%;
}

.why-card:hover .why-card-content,
.why-card:hover .why-card-icon {
  position: relative;
  z-index: 2;
}

.why-card .why-card-content a,
.why-card .why-card-content p {
  transition: all 0.5s ease;
  text-decoration: none;
  color: var(--why-text-color);
}

.why-card:hover .why-card-content p {
  color: var(--why-white);
}

.why-card .why-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--why-secondary);
  transition: all 0.5s ease;
  color: var(--why-white);
  font-size: 2rem;
}

.why-card:hover .why-card-icon {
  background: var(--why-white);
  color: #d54f01;
}

.why-card:hover .why-card-icon::before {
  transform: rotate(360deg);
  color: var(--why-primary);
}

.why-card .why-card-icon::before {
  transition: all 0.5s ease;
  display: inline-block;
}

.why-card-content a {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--why-primary);
  display: inline-block;
  margin-bottom: 12px;
}

.why-card-content p {
  margin: 0;
  color: var(--why-subtext-color);
}

.why-text-highlight {
  color: var(--why-primary);
  text-transform: uppercase;
}

.why-align-center {
  text-align: center;
}

.why-title-large {
  font-size: 2.5rem;
  font-weight: bold;
}

.why-margin-bottom-sm {
  margin-bottom: 1rem;
}

.why-margin-bottom-md {
  margin-bottom: 1.5rem;
}

.why-margin-bottom-none {
  margin-bottom: 0;
}

.why-padding-vertical-lg {
  padding-bottom: 3rem;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.why-column-half {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.why-column-third {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
}

.why-flex {
  display: flex;
  align-items: center;
}

.why-align-right {
  text-align: right;
}

.why-padding-left-md {
  padding-left: 1.5rem;
}

.why-padding-right-md {
  padding-right: 1.5rem;
}

.why-grid-gap {
  margin-bottom: -1.5rem;
}

.why-grid-gap>* {
  margin-bottom: 1.5rem;
}

.why-image-responsive {
  max-width: 100%;
  height: auto;
}

.why-image-width {
  width: 75%;
}

/* Center image vertically and horizontally */
.image-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

@media (max-width: 991px) {
  .why-column-half {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .why-column-third {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .why-section .why-grid>div {
    margin-bottom: 20px;
  }

  .why-align-right {
    text-align: left;
  }
}

/* Page Hero */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  color: #2C2C2C;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.page-subtitle {
  font-size: 1.3rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .why-choose {
    padding: 50px 10px;
  }

  .services-grid {
    gap: 20px;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 40px 5vw;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    padding: 20px 12px;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-hero {
    padding: 80px 0 40px;
  }
}

@media (max-width: 480px) {
  .why-choose {
    padding: 30px 2vw;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .feature-card {
    padding: 14px 6px;
    border-radius: 10px;
  }

  .icon-wrapper {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .content .title {
    font-size: 1rem;
  }

  .content .desc {
    font-size: 0.9rem;
  }

  .page-title {
    font-size: 1.3rem;
  }

  .page-subtitle {
    font-size: 1rem;
    padding: 0 5px;
  }

  .page-hero {
    padding: 60px 0 20px;
  }
}

/* Custom Grid System for Why Choose Section */
.wc-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.wc-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.wc-col-12,
.wc-col-md-6,
.wc-col-lg-4 {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.wc-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .wc-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .wc-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.wc-g-3 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.wc-g-3>[class*="wc-col-"] {
  padding-left: 7.5px;
  padding-right: 7.5px;
  padding-bottom: 15px;
}

/* Center text utility */
.wc-text-center {
  text-align: center;
}

/* Button styles for the CTA */
.wc-btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}

.wc-btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.wc-btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

.wc-btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.wc-px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

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

.section-header h2 {
  color: #2C2C2C;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  padding: 2.5rem;
  background: #F8F8F8;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #2C2C2C;
  margin-bottom: 1rem;
}

/* Featured Section */
.featured {
  padding: 80px 0;
  background: #F8F8F8;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-text h2 {
  color: #eb5b01;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.featured-text h3 {
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}

.link-arrow {
  color: ##eb5b01;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link-arrow:hover {
  color: #eb5b01;
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Responsive adjustments for screens up to 425px */
@media (max-width: 425px) {
  .featured-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-image img {
    height: 250px;
  }

  .featured-text h3 {
    font-size: 1.5rem;
  }

  .featured-text p {
    font-size: 0.9rem;
  }
}

/* About Page Styles */
.about-content {
  padding: 60px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.values-section {
  margin-bottom: 6rem;
}

.values-section h2 {
  text-align: center;
  color: #2C2C2C;
  margin-bottom: 3rem;
}

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

.value-card {
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  color: #eb5b01;
  margin-bottom: 1rem;
}

.team-section h2 {
  text-align: center;
  color: #2C2C2C;
  margin-bottom: 3rem;
}

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

.team-member {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.member-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-role {
  color: #eb5b01;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Series Page Styles */
.series-content {
  padding: 60px 0;
}

.series-grid {
  margin-bottom: 6rem;
}

.series-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.series-item.reverse {
  direction: rtl;
}

.series-item.reverse>* {
  direction: ltr;
}

.series-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.series-info h2 {
  color: #2C2C2C;
  margin-bottom: 1rem;
}

.series-description {
  margin-bottom: 2rem;
}

.series-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-tag {
  background: #F8F8F8;
  color: #666;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.series-link {
  color: #eb5b01;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.series-link:hover {
  color: #eb5b01;
}

.process-section h2 {
  text-align: center;
  color: #2C2C2C;
  margin-bottom: 3rem;
}

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

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #eb5b01;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  color: #2C2C2C;
  margin-bottom: 1rem;
}

/* Gallery Page Styles */
.gallery-filters {
  padding: 2rem 0;
  background: #F8F8F8;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  color: #666;
  border: 2px solid #E0E0E0;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #eb5b01;
  color: white;
  border-color: #eb5b01;
}

.gallery-grid {
  padding: 60px 0;
}

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.gallery-overlay p {
  color: #eb5b01;
  margin: 0;
}

/* Contact Page Styles */
.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.contact-info h2 {
  color: #2C2C2C;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: #eb5b01;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  margin-bottom: 0.5rem;
}

.consultation-info {
  background: #F8F8F8;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.consultation-info h3 {
  color: #2C2C2C;
  margin-bottom: 1rem;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2C2C2C;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #E0E0E0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #eb5b01
}

.process-timeline {
  background: #F8F8F8;
  padding: 4rem 2rem;
  border-radius: 10px;
}

.process-timeline h2 {
  text-align: center;
  color: #2C2C2C;
  margin-bottom: 3rem;
}

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

.timeline-item {
  text-align: center;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: #eb5b01;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.timeline-content h3 {
  color: #2C2C2C;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: #2C2C2C;
  color: white;
  padding: 3rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #eb5b01;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  color: #E0E0E0;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #E0E0E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #eb5b01;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #E0E0E0;
  padding-top: 1rem;
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive iframe wrapper */
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional: Improve spacing on smaller screens */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section ul {
    padding-left: 0;
  }
}

/* Shared utilities if not present */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: 'Lato', sans-serif;
  margin-bottom: .5rem;
}

.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s;
}

.btn-primary {
  background: #1f2937;
  color: #fff;
}

.btn-secondary {
  background: #f3f4f6;
  color: #1f2937;
}

.btn.small {
  padding: .5rem 1rem;
  font-size: .9rem;
}

/* ABOUT */
.about {
  padding: 4rem 0;
}

.about-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 450px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.values-list li {
  margin-bottom: .5rem;
}

/* Founders Section */
.founders {
  text-align: center;
  padding: 50px 20px;
}
.section-title {
  font-size: 28px;
  margin-bottom: 40px;
}
.founder-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-in-out;
}
.founder-card.reverse {
  flex-direction: row-reverse;
}
.founder-img img {
  width: 220px;
  height: 280px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.founder-img img:hover {
  transform: scale(1.05);
}
.founder-content {
  max-width: 450px;
  text-align: left;
}
.founder-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #eb5b01;
}
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}
/* Founders Section */

/* Enhanced Testimonials */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  color: #333;
}

.section-header p {
  color: #777;
  max-width: 600px;
  margin: auto;
}

.testimonial-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease;
  padding: 30px;
  box-sizing: border-box;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.quote-icon {
  font-size: 2rem;
  color: #ff6600;
}

.slide-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.text-block {
  flex: 1;
}

.stars i {
  color: gold;
}

.author {
  font-weight: bold;
  margin-top: 10px;
}

.controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.controls button {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.controls button:hover {
  background: #ff6600;
  color: white;
}

.thumbs {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.thumb {
  width: 12px;
  height: 12px;
  background: #ccc;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.thumb.active {
  background: #ff6600;
}

@media (max-width: 600px) {
  .slide-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* FAQ */
.faq-section {
  background: #f7f7f7;
  padding: 60px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #eb5b01;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  background: none;
  border: none;
  outline: none;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #2C2C2C;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #e15002;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

/* CONTACT FORM */
/* Section Background */
.contact-cta-section {
  padding: 4rem 1rem;
  background: url('assets/img/cta.webp') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Container & Header */
.contact-cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: #eb5b01
}

/* Grid Layout */
.cta-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Stat Cards */
.cta-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  width: 260px;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
  transform: translateY(-8px);
}

/* Glassmorphic Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Stat Text */
.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #eb5b01 margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.05rem;
  color: #f9f6f6;
  margin: 0;
}

/* Responsive Styling */
@media (max-width: 992px) {
  .stat-item {
    width: 45%;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .stat-item {
    width: 100%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .stat-item h3 {
    font-size: 2.4rem;
  }

  .stat-item p {
    font-size: 1rem;
  }
}

/* Accessibility helper */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .about-inner {
    flex-direction: column;
  }

  .testimonial-controls {
    display: flex;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content,
  .about-intro,
  .featured-content,
  .series-item,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title,
  .page-title {
    font-size: 2.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 1rem 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title,
  .page-title {
    font-size: 2rem;
  }

  .service-card,
  .contact-form {
    padding: 1.5rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  /* Positioned on the left */
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  transition: background 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
  background: #20b358;
  transform: scale(1.1);
  /* Scale animation on hover */
}

.whatsapp-icon {
  font-size: 1.8rem;
}

/* Back to Top Button */
.back-to-top-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  /* Remains on the right */
  z-index: 1000;
}

.back-to-top-btn {
  background: #eb5b01;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  /* Start slightly below for animation */
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* Slide up when shown */
}

.back-to-top-btn:hover {
  background: #2C2C2C;
  transform: scale(1.1);
  /* Scale animation on hover */
}

.back-to-top-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments for screens up to 425px */
@media (max-width: 425px) {
  .whatsapp-float {
    bottom: 1.5rem;
    left: 1.5rem;
    /* Adjusted for smaller screens */
    width: 40px;
    height: 40px;
  }

  .whatsapp-icon {
    font-size: 1.5rem;
  }

  .back-to-top-wrapper {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .back-to-top-btn {
    width: 40px;
    height: 40px;
  }

  .back-to-top-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 768px) {
  .social-icons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

}


