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

html,
body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  background-color: #242430;
}

a {
  text-decoration: none;
}

/* Top Bar */
.top-bar {
  background-color: #EE6F2A;
  padding: 0.625rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  box-shadow: 0 0.0625rem 0.3125rem rgba(0, 0, 0, 0.05);
  animation: fadeIn 1s ease-out;
}

.container2 {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.top-bar .contact-info {
  display: flex;
  font-size: 1.5rem;
  gap: 1rem;
  color: #000000;
}

.top-bar .contact-info i {
  margin-right: 0.375rem;
  color: #ffffff; /* Improved contrast */
}

.top-bar .social-icons a {
  color: #242430;
  margin-left: 0.625rem;
  transition: color 0.3s ease;
}

.top-bar .social-icons a:hover {
  color: #000000;
}

@media screen and (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  .top-bar .container2 {
    flex-direction: column;
    align-items: center;
  }

  .top-bar .contact-info {
    flex-direction: column;
    font-size: 1.0rem;
  }

  .top-bar .social-icons a {
    font-size: 0.75rem;
    margin-left: 0.5rem;
  }
}

/* Base Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #242430;
  color: white;
  padding: 0.9375rem 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
  animation: fadeIn 1s ease-out;
}

.logo img {
  height: 4.375rem;
  width: auto;
}

.nav-links.desktop-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links.desktop-menu li a {
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.nav-links.desktop-menu li a:hover {
  color: #EE6F2A;
  transform: translateY(-0.125rem);
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #242430;
  color: white;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1rem;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  font-size: 2rem;
  cursor: pointer;
  color: #EE6F2A;
}

.mobile-menu-links {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  font-size: 1.25rem;
  padding-left: 0;
}

.mobile-menu-links li a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.mobile-menu-links li a:hover {
  color: #EE6F2A;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links.desktop-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #242430;
  z-index: 9999;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
}

/* Show mobile menu when active */
.mobile-menu.active {
  right: 0;
}

/* Close button styling */
.close-btn {
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 20px;
}

/* Mobile menu links */
.mobile-menu-links {
  list-style: none;
  padding: 0;
}

.mobile-menu-links li {
  margin: 20px 0;
}

.mobile-menu-links a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #333;
}


/* Hero Section */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(4px);
  transform: scale(1.1);
  transition: opacity 1s ease, transform 2s ease, filter 1s ease;
  display: flex;
  align-items: center;
  padding-left: 5%;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  z-index: 1;
}

.slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide .content {
  position: relative;
  z-index: 2;
}

.content {
  color: #ffffff;
  max-width: 43.75rem;
  animation: textIn 1.2s ease-out;
  text-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.8);
}

.content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: glow 2s ease-in-out infinite alternate;
  color: #EE6F2A;
}

.content p {
  font-size: clamp(0.875rem, 2vw, 1.2rem);
  letter-spacing: 0.0625rem;
  margin-bottom: 1.875rem;
  animation: fadeUp 1.5s ease-in-out;
  color: #ffffff;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.buttons a {
  padding: 0.75rem 1.75rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
  border: 0.125rem solid #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.buttons a:hover {
  background-color: #EE6F2A;
  color: #ffffff;
  border-color: #EE6F2A;
  transform: scale(1.05);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #ffffff;
  /* background-color: rgba(0, 0, 0, 0.4); */
  background-color: transparent;
  /* border: none; */
  /* border-radius: auto; */
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.1s ease;
}

.arrow:hover {
  background-color: rgba(238, 111, 42, 0.8);
}

.arrow.left {
  left: 1rem;
}

.arrow.right {
  right: 1rem;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .content p {
    font-size: clamp(0.75rem, 2vw, 1rem);
  }

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

  .arrow {
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
  }

  .arrow.left {
    left: 0.5rem;
  }

  .arrow.right {
    right: 0.5rem;
  }
}

/* About Section */
.about-section {
  padding: 5rem 1rem;
  background: #242430;
  color: #ffffff; /* Fixed contrast issue */
  overflow: hidden;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 75rem;
  margin: auto;
  gap: 3rem;
}

.about-image img {
  width: 100%;
  max-width: 31.25rem;
  border-radius: 0.9375rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

.about-content {
  flex: 1;
  max-width: 37.5rem;
}

.about-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #EE6F2A; /* Changed to match theme */
  margin-bottom: 1.25rem;
}


.about-content p {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 1.875rem;
}

.about-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #EE6F2A;
  color: #ffffff;
  border-radius: 1.875rem;
  font-weight: 600;
  margin-right: 0.9375rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0.625rem 1.25rem rgba(238, 111, 42, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #EE6F2A;
  color: #EE6F2A;
}

.btn-outline:hover {
  background-color: #EE6F2A;
  color: #fff;
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 0 1rem;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }

  .about-content {
    max-width: 100%;
  }

  .about-btn {
    width: 100%;
    max-width: 250px;
    margin: 0.5rem auto;
  }
}

/* Features Section */
.features-section {
  background: #242430;
  color: #ffffff;
  padding: 5rem 1rem;
  text-align: center;
}

.features-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.625rem;
  color: #EE6F2A;
}

.features-header p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: #ffffff;
}

.features-header span {
  font-size: clamp(0.875rem, 2vw, 1rem);
  max-width: 43.75rem;
  display: block;
  margin: 0 auto 2.5rem auto;
  color: #cccccc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 1.875rem;
  max-width: 75rem;
  margin: 0 auto;
}

.feature-card {
  background: #1f1f28;
  padding: 1.875rem;
  border-radius: 0.75rem;
  border: 0.0625rem solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 0 0.625rem rgba(238, 111, 42, 0.05);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-0.3125rem);
  border-color: #EE6F2A;
  box-shadow: 0 0 1.25rem rgba(238, 111, 42, 0.2);
}

.feature-card .icon {
  font-size: 2rem;
  color: #EE6F2A;
  margin-bottom: 0.9375rem;
  transition: transform 0.4s ease, color 0.4s ease;
}

.feature-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
  color: #ffffff;
}

.feature-card h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 0.625rem;
  color: #EE6F2A;
}

.feature-card p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: #e0e0e0;
}

/* Core Section */
.core-structure-section {
  background: #242430;
  color: #ffffff;
  padding: 5rem 1rem;
  text-align: center;
}

.core-structure-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
  color: #EE6F2A;
  animation: fadeInDown 1s ease-out;
}

.core-structure-section .intro {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  max-width: 50rem;
  margin: 0 auto 3.125rem;
  color: #ddd;
  animation: fadeIn 1.2s ease;
}


/* Core Grid Responsive */
.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .core-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-list span {
    font-size: 15px;
    line-height: 1.4;
  }

  .core-card {
    padding: 20px;
  }
}


.core-card {
  background: #1f1f28;
  padding: 1.875rem;
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 0.0625rem solid #333;
  box-shadow: 0 0 0.625rem rgba(238, 111, 42, 0.05);
}

.core-card .icon {
  font-size: 2rem;
  color: #EE6F2A;
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease, color 0.4s ease;
}

.core-card h3 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 0.75rem;
  color: #EE6F2A;
}

.core-card p {
  color: #FFFFFF;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
}

.core-card:hover {
  transform: translateY(-0.3125rem);
  border-color: #EE6F2A;
  box-shadow: 0 0 1.25rem rgba(238, 111, 42, 0.2);
}

.core-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
  color: #ffffff;
}

/* Why Choose Us */
.why-choose {
  background-color: #242430;
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.why-choose h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin-bottom: 3.125rem;
  color: #fff;
}

.why-choose h2 span {
  color: #EE6F2A;
}

.why-choose p {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  color: #ccc;
  max-width: 50rem;
  margin: 0 auto 3.125rem;
}

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

.reason {
  background-color: #1f1f28;
  padding: 1.5625rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid #333;
  box-shadow: 0 0 0.625rem rgba(238, 111, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.reason:hover {
  transform: translateY(-0.375rem);
  box-shadow: 0 0 1.25rem rgba(238, 111, 42, 0.15);
}

.reason .number {
  background-color: #EE6F2A;
  color: #242430;
  font-weight: bold;
  font-size: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9375rem;
}

.reason h3 {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 0.625rem;
}

.reason p {
  color: #ccc;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .reasons {
    grid-template-columns: 1fr;
  }
}

/* Our Work */
.our-work {
  background-color: #242430;
  padding: 5rem 1rem;
  text-align: center;
}

.our-work h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  color: #EE6F2A;
  margin-bottom: 0.625rem;
}

.our-work .subtitle {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
  justify-content: center;
}

.video-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  border: 0.125rem solid #EE6F2A;
  box-shadow: 0 0.5rem 1rem rgba(238, 111, 42, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 0.75rem 1.5rem rgba(238, 111, 42, 0.6);
}

/* Support Section */
.support-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 5rem 1rem;
  color: #ffffff;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 48, 0.7); /* Fixed conflicting background */
  z-index: 1;
}

.support-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 75rem;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.support-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.625rem;
  color: #ffffff;
}

.support-text p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: #eeeeee;
  margin: 0;
}

.read-more-btn {
  background-color: #001659;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 1.875rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #001f7c;
}

@media (max-width: 768px) {
  .support-content {
    flex-direction: column;
    text-align: center;
  }

  .support-button {
    margin-top: 0.9375rem;
  }
}

/* News Section */
.news-section {
  background-color: #242430;
  color: #ffffff;
  padding: 5rem 1rem;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  text-align: center;
}

.news-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #EE6F2A;
  margin-bottom: 0.625rem;
}

.news-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 0.625rem;
  color: #ffffff;
}

.news-description {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  color: #cccccc;
  margin-bottom: 3.125rem;
}

.news-grid {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
}

.news-card {
  background-color: #1f1f2a;
  padding: 1.875rem 1.5625rem;
  border-radius: 0.625rem;
  text-align: left;
  transition: transform 0.3s ease;
  border-top: 0.1875rem solid #EE6F2A;
}

.news-card:hover {
  transform: translateY(-0.5rem);
}

.news-meta {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 0.625rem;
}

.news-heading {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 0.9375rem;
  color: #ffffff;
}

.news-excerpt {
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  color: #dddddd;
  margin-bottom: 1.25rem;
}

.read-more {
  color: #EE6F2A;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ffffff;
  text-decoration: underline;
}

.news-image {
  width: 100%;
  height: 11.25rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.9375rem;
}

/* FAQ Section */
.faq-section {
  background-color: #242430;
  color: #f0f0f0;
  padding: 4rem 1rem;
  max-width: 56.25rem;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
  color: #35f300;
  text-shadow: 0 0 0.5rem rgba(53, 243, 0, 0.5);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #1f1f1f;
  box-shadow: 0 0 0.625rem rgba(53, 243, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #EE6F2A;
}

.arrow1 {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #2a2a2a;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  margin: 1rem 0;
  color: #dcdcdc;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 18.75rem;
}

.faq-item.active .arrow1 {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .faq-question {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
}

/* Footer Section */
.footer-section {
  background: #242430;
  color: #f0f0f0;
  padding: 3rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 75rem;
  margin: auto;
}

.footer-top {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-description {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  color: #ccc;
}

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

.footer-column h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1rem;
  color: #fff;
}

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

.footer-column ul li {
  margin-bottom: 0.625rem;
}

.footer-column ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #25D366;
}

.footer-column p {
  margin: 0.5rem 0;
  font-size: clamp(0.875rem, 2vw, 0.95rem);
}

.footer-column a {
  color: #f0f0f0;
}

.footer-column a:hover {
  text-decoration: underline;
  color: #25D366;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 0.9375rem;
  font-size: 1.2rem;
}

.social-icons a {
  color: #ccc;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #25D366;
}

.footer-bottom-bar {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #999;
}

.footer-bottom-bar a {
  color: #EE6F2A;
  transition: color 0.3s ease;
}

/* Hero Section (Blog) */
.hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 3.75rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.625rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ddd;
}

/* Blog Container */
.container1 {
  max-width: 60rem;
  margin: 3.125rem auto;
  padding: 0 1rem;
}

.blog-post {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #2c5364;
  margin-bottom: 1.25rem;
}

.blog-post p {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.pagination a {
  padding: 0.625rem 1.125rem;
  background-color: #f4f4f4;
  color: #2c5364;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

.pagination a:hover,
.pagination a.active {
  background-color: #2c5364;
  color: #fff;
}

/* Support Section (Revised) */
.support-section {
  position: relative;
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem 1rem;
}

.support-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212;
  z-index: 0;
}

.support-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  max-width: 50rem;
  width: 100%;
}

.support-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.support-text p {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  color: #ddd;
  margin-bottom: 0.5rem;
}

.support-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.support-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.8rem;
  background: linear-gradient(135deg, #f36523, #ff9900);
  color: #fff;
  border-radius: 3.125rem;
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  border: 0.125rem solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
  animation: pulse-glow 2s infinite;
  overflow: visible;
  z-index: 1;
}

.support-link:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 1.25rem rgba(255, 165, 0, 0.65), 0 0 2.8125rem rgba(255, 123, 56, 0.67);
  animation: wiggle 0.3s ease;
}

.support-link::after {
  content: "Build My Home ❤️";
  position: absolute;
  top: -0.75rem;
  right: -10rem;
  background: #ffffff;
  color: #f36523;
  font-size: 0.75rem;
  padding: 0.3125rem 0.75rem;
  border-radius: 3.125rem;
  white-space: nowrap;
  font-weight: bold;
  transition: right 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.support-link:hover::after {
  right: -0.625rem;
  opacity: 1;
}

/* Popup */
/* === Popup Wrapper === */
.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem; /* ensures space on mobile */
  animation: fadeIn 0.3s ease-out;
  
}

.popup-wrapper.show {
  display: flex;
}

body.popup-open {
  overflow: hidden;
}

/* === Popup Content === */
.popup-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 10px;
  box-sizing: content-box;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.3s ease-out;
}

/* === Close Button (×) === */
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  background: transparent;
  color: #444;
  cursor: pointer;
  z-index: 1000;
  line-height: 1;
}

/* === Heading & Text === */
.popup-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.popup-content p {
  font-size: clamp(0.875rem, 2vw, 1.05rem);
  margin-bottom: 1rem;
}

.popup-subtext {
  font-size: clamp(0.875rem, 2vw, 1.05rem);
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.popup-subtext strong {
  color: #EE6F2A;
}

.popup-content .white-form {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* === Mobile Tweaks === */
@media (max-width: 420px) {
  .popup-content {
    padding: 2.5rem 1rem 1.2rem 1rem; /* extra top padding for cross */
    border-radius: 0.625rem;
    font-size: 0.95rem;
  }

  .popup-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .popup-content p,
  .popup-subtext {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .popup-content form input,
  .popup-content form textarea,
  .popup-content form select,
  .popup-content form button {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  .popup-close {
    font-size: 1.15rem;
    top: -0.5rem;
    right: -8.5rem;
    /* Adjusted size for mobile */
  }
}





@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textIn {
  0% {
    opacity: 0;
    transform: translateX(-5rem) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 0.625rem #000000, 0 0 1.25rem #EE6F2A, 0 0 1.875rem #EE6F2A;
  }
  to {
    text-shadow: 0 0 1.25rem #000000, 0 0 1.875rem #EE6F2A, 0 0 2.5rem #EE6F2A;
  }
}

@keyframes glowTitle {
  0% {
    text-shadow: 0 0 0.3125rem #EE6F2A;
  }
  100% {
    text-shadow: 0 0 0.9375rem #EE6F2A;
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0.625rem rgba(255, 115, 35, 0.4);
  }
  50% {
    box-shadow: 0 0 1.5625rem rgba(255, 115, 35, 0.8);
  }
  100% {
    box-shadow: 0 0 0.625rem rgba(255, 115, 35, 0.4);
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-1deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.service-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.service-list span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #ccc;
}

.service-list i {
  color: #EE6F2A;
  margin-right: 8px;
  font-size: 16px;
}

/* Timeline Responsive Fix */
.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #EE6F2A;
}

.timeline-row {
  position: relative;
  width: 50%;
  padding: 30px 30px;
  box-sizing: border-box;
}

.timeline-row.left {
  left: 0;
  text-align: right;
}

.timeline-row.right {
  left: 50%;
  text-align: left;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 10px;
  }

  .timeline-row {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    text-align: left !important;
  }

  .timeline-row .circle {
    left: 0 !important;
    right: auto !important;
  }

  .timeline-box {
    padding-left: 15px;
  }
}

.circle {
  position: absolute;
  top: 25px;
  width: 40px;
  height: 40px;
  background-color: #EE6F2A;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 16px;
  z-index: 10;
}

.timeline-row.left .circle {
  right: -20px;
}

.timeline-row.right .circle {
  left: -20px;
}

.timeline-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #EE6F2A;
}

.timeline-box p {
  font-size: 0.95rem;
  color: #f0f0f0;
}

/* Mobile view */
@media (max-width: 768px) {
  .timeline::before {
    left: 10px;
  }

  .timeline-row {
    width: 100%;
    padding-left: 40px;
    text-align: left !important;
  }

  .timeline-row.left,
  .timeline-row.right {
    left: 0;
  }

  .timeline-row .circle {
    left: 0 !important;
    right: auto;
  }
}


:root {
  --primary: #EE6F2A;
  --dark: #242430;
  --light: #FFFFFF;
}

.service-page{
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light);
  color: var(--dark);
}
.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
}

.service-hero {
  background-color: var(--primary);
  color: var(--light);
  padding: 100px 20px 60px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.service-image {
  flex: 1;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-info {
  flex: 1;
}

.service-info h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

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

.service-info ul li {
  margin: 12px 0;
  font-size: 1.1rem;
}

.service-info ul li i {
  color: var(--primary);
  margin-right: 10px;
}

.btn{
   
  background: var(--primary);
  color: var(--light);
  padding: 14px 30px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 30px;
  margin-top: 20px;
  display: inline-block;
  transition: background 0.3s ease;

}



.btn:hover {
  background: #d85e1f;
}

/* Responsive */
@media (max-width: 768px) {
  .service-container {
    flex-direction: column;
    padding: 20px;
  }
  .service-details {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* our work section */

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.image-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.work-img {
  width: 100%;
  max-width: 48%;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.video-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 6px;
}


/* Responsive adjustments */
.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
}

.portrait-video {
  width: 48%;
  height: 300px; /* 🎯 sets visible box size */
  object-fit: cover; /* 🔥 makes video fill box */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background-color: #000;
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .video-row {
    flex-direction: column;
  }

  .portrait-video {
    width: 100%;
    height: 250px; /* smaller height on small screens */
  }
}

.service-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem auto 2rem;
  max-width: 600px;
  padding: 1rem;
  border-top: 1px solid #eee;
  font-size: 1rem;
  color: #333;
}

.service-pagination a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.service-pagination a:hover {
  text-decoration: underline;
}

.service-pagination .page-numbers {
  font-weight: bold;
  color: #555;
}
