/* Variables */
:root {
  --primary-color: #f6b800; /* Yellow */
  --secondary-color: #1e1e1e; /* Black */
  --background-color: #ffffff;
  --text-color: #333;
  --border-color: #dcdcdc;
  --border-radius-full: 50px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --transition: all 0.3s ease-in-out;
}

/* Global Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Inter", "Segoe UI", Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  width: 100%;
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
}

html,
body {
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}

.header,
.header-container,
.header-content {
  overflow: visible;
}

.logo img {
  height: auto;
  width: 95px;
  transition: var(--transition);
  cursor: pointer;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  border-bottom: 2px solid var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions .btn-primary {
  background-color: #f6b800;
  color: #1e1e1e;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.header-actions .btn-primary:hover {
  background-color: #1e1e1e;
  color: #f6b800;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none; /* Default is hidden on larger screens */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 20px; /* Adjust to move the icon lower or higher if needed */
  right: 20px; /* Adjust to move the icon left or right */
  z-index: 1001; /* Make sure it's on top of other elements */
  overflow: hidden;
}

.mobile-menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #f6b800;
  transition: 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background-color: var(--secondary-color);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-container {
  padding: var(--spacing-lg);
}

.mobile-menu-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a {
  display: block;
}

.mobile-menu .btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu.active {
    display: block;
    background-color: #1e1e1e;
    position: fixed;
    top: 45px;
    right: 0;
    width: 250px;
    height: 100%;
    z-index: 1000;
    padding: 10px;
    box-shadow: -2px 0px 6px rgba(0, 0, 0, 0.2);
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu a {
    font-size: 1.1rem;
    color: #f6b800;
    text-decoration: none;
  }

  .mobile-menu a:hover {
    color: white;
    border-bottom: 2px solid #f6b800;
  }

  .mobile-menu .btn-primary {
    background-color: #f6b800;
    color: #1e1e1e;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    margin-top: 30px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--secondary-color);
  color: white;
  text-align: start;
  padding-top: 100px;
  overflow: hidden; /* Prevent scroll */
}

/* Hero Video Container */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Video styling */
.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure video covers the entire container */
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
  .hero-video-container {
    height: 90vh; /* Adjust video container height on smaller screens */
  }

  #hero-video {
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .hero-video-container {
    height: 80vh; /* Adjust video container height further for smaller devices */
  }

  #hero-video {
    object-position: center center;
  }
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.video-control {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  padding: 10px;
  border-radius: 50%;
  color: var(--secondary-color);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.video-control:hover {
  background: #e68900;
}

.hero-content {
  z-index: 10;
  position: relative;
  padding: 20px;
}

.badge {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
  padding: 8px 10px;
  border-radius: 10px;
  display: inline-block; /* Ensures the background width is based on the content */
}

.highlight {
  color: var(--primary-color);
}

.hero-text {
  max-width: 700px;
}

.hero-text h1 {
  font-size: 3.7rem;
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  flex-direction: row;
  /* padding-bottom: 30px; */
}

.hero-btn,
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  font-weight: bold;
  font-size: large;
  border-radius: 12px;
  width: 180px;
  height: 60px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-sizing: border-box;
}

/* Filled Button */
.hero-btn {
  background-color: #f6b800;
  color: black;
  border: none;
}

/* Outlined Button */
.hero-btn-outline {
  background: transparent;
  color: #f6b800;
  border: 2px solid #f6b800;
}

.hero-buttons .hero-btn i {
  margin-left: 15px;
  font-size: 1rem;
  transition: margin-left 0.3s;
  align-items: center;
  justify-content: center;
}

.hero-buttons .hero-btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-color: var(--primary-color);
}

.hero-buttons .hero-btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px; /* Increase top padding */
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 140px; /* Further increase for smaller devices */
    /* padding-bottom: 40px; */
  }

  .hero-text h1 {
    font-size: 2.73rem;
  }
  
   .hero-text p {
    font-size: 1rem;
  }

  .badge {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-wrap: nowrap; /* Don't allow wrapping */
    gap: 8px; /* Smaller gap if needed */
    flex-direction: row;
    padding-bottom: 60px;
    overflow-x: auto; /* Allow scrolling if buttons overflow */
  }

  .hero-btn,
  .hero-btn-outline {
    width: auto; /* Let content size the button naturally */
    min-width: 140px; /* Prevent too small buttons */
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* Stats Section */
.stats {
  background: #f6b800;
  padding: 80px 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Space between items */
  gap: 27px;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px; /* You can adjust this value as needed */
}

.stat-item {
  background: transparent;
  flex-basis: 23%; /* Make each item take 23% of the container's width (to leave some space) */
  padding: 20px;
  box-sizing: border-box;
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: black;
  word-break: break-word; /* ensures long numbers wrap if needed */
}

.stat-item p {
  font-size: 1.2rem;
  color: black;
  margin-top: 10px;
}

/* Tablet View (992px and below) */
@media (max-width: 768px) {
  .stat-item {
    flex-basis: 48%; /* 2 items per row */
  }
}

/* Mobile View (600px and below) */
@media (max-width: 480px) {
  .stat-item {
    flex-basis: 100%; /* 1 item per row */
  }
}

/* Services Section */
/* Services Section */
.services {
  background: #f5f5f5;
  padding: 80px 0;
  color: #333;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Align content vertically */
  overflow: hidden; /* Prevent vertical scroll */
}

.services .services-container {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
  overflow: hidden;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .badge {
  display: inline-block;
  background: black;
  color: #f6b800;
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  border-radius: 30px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 30px;
}

/* Services Grid Layout (Mobile-first approach) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 column */
  gap: 30px;
  width: 100%;
  height: auto;
  padding: 0 20px;
  overflow: visible; /* Let it grow normally */
}

@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablets - 2 columns */
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr); /* Desktop - 3 columns */
  }
}

/* Service Card Styling */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card h3 {
  /* font-size: 1.5rem; */
  margin-bottom: 15px;
  color: #333;
  text-align: center;
  justify-content: center;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.service-link {
  color: #f6b800;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 8px;
}

/* Colorful Icons */
.service-icon.yellow {
  background-color: #f6b800;
}
.service-icon.purple {
  background-color: #9b59b6;
}
.service-icon.green {
  background-color: #2ecc71;
}
.service-icon.orange {
  background-color: #e67e22;
}
.service-icon.blue {
  background-color: #3498db;
}
.service-icon.red {
  background-color: #e74c3c;
}

/* Button */
.text-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-center .btn {
  background-color: #f6b800;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.text-center .btn i {
  margin-left: 15px;
  font-size: 1rem;
  transition: margin-left 0.3s;
  align-items: center;
  justify-content: center;
}

.text-center .btn:hover {
  background-color: #d9a500;
}

/* Animation when scrolled into view (AOS) */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

/* Feature Plan Section */
/* Featured Plan */
.featured-plan {
  background: linear-gradient(135deg, black, #f4e9c2);
  color: #fff;
  margin: 0 auto;
  padding: 50px 20px;
  border-radius: 20px;
  /* margin-bottom: 70px; */
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
}

.featured-plan-content {
  display: flex;
  /* flex-wrap: nowrap;  */
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(
    to right,
    var(--secondary-dark),
    var(--secondary-color)
  );
}

@media (max-width: 768px) {
  .featured-plan-content {
    flex-direction: column;
    gap: 30px;
  }

  .featured-plan-info,
  .featured-plan-image {
    flex: 1 1 100%;
  }
}

.featured-plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #facc15;
  color: #111827;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.5rem 1.5rem;
  transform: rotate(45deg) translateX(2rem) translateY(-1rem);
  text-transform: uppercase;
  z-index: 2;
}

.featured-plan-badge-small {
  /* display: inline-block; */
  background: #facc15;
  color: #111827;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.featured-plan-badge-small i {
  display: flex;
  margin-right: 10px;
  font-size: 20px;
  color: #111827;
}

.featured-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.featured-plan-info,
.featured-plan-image {
  flex: 1 1 0;
  min-width: 0; /* Prevent overflow issues */
}

.featured-plan-info h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.featured-plan-price {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.featured-plan-price .price {
  font-size: 60px;
  color: #f6b800;
}

.featured-plan-price .period {
  font-size: 25px;
  margin-left: 8px;
  color: #f6b800;
}

.featured-plan-info p {
  color: #f6b800;
}

.featured-plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.featured-plan-features li {
  margin-bottom: 10px;
  font-size: 16px;
}

.featured-plan-features i {
  color: #facc15;
  margin-right: 8px;
}

.featured-plan-info .btn {
  background: #f6b800;
  color: black;
  text-decoration: none;
}

.featured-plan-info .btn:hover {
  background: #facc15;
  color: black;
}

.featured-plan-info .btn i {
  color: black;
  margin-right: 15px;
}

/* Optional for 55%/45% split */
.featured-plan-info {
  flex: 0 0 50%;
}

.featured-plan-image {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.featured-plan-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover; /* or 'contain' depending on how you want it */
  border-radius: 15px;
}

@media (max-width: 768px) {
  .featured-plan-content {
    flex-direction: column;
  }

  .featured-plan-image {
    order: -1; /* Move image to the top */
  }

  .featured-plan-info {
    order: 0; /* Keep text content below */
  }
}

/* Pricing Section */
/* Pricing Section */
.pricing {
  padding: 80px 20px;
  background: #f9fafb;
  display: block;
  flex-direction: column;
  justify-content: center; /* Align content vertically */
  overflow: hidden; /* Prevent vertical scroll */
}

.pricing .pricing-container {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
  overflow: hidden;
}

@media (min-width: 576px) {
  .pricing .pricing-container {
    grid-template-columns: repeat(2, 1fr); /* Tablets - 2 columns */
  }
}

@media (min-width: 992px) {
  .pricing .pricing-container {
    grid-template-columns: repeat(3, 1fr); /* Desktop - 3 columns */
  }
}

.pricing .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing .badge {
  display: inline-block;
  padding: 8px 18px;
  background: black;
  color: #f6b800;
  font-weight: bold;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.pricing h2 {
  font-size: 36px;
  color: #111827;
  margin-bottom: 5px;
}

.pricing p {
  font-size: 16px;
  color: black;
  margin-bottom: 5px;
}

/* Pricing Tabs */
.pricing-tabs {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-tabs-container {
  display: inline-flex;
  background: #e5e7eb;
  border-radius: 30px;
  overflow: hidden;
}

.pricing-tab {
  padding: 10px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  transition: 0.3s;
}

.pricing-tab.active {
  background: #f6b800;
  color: black;
}

/* Pricing Plans */
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
  width: 100%;
  overflow: hidden;
  align-items: center;
}

.pricing-plan {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-plan-header {
  text-align: center;
}

.pricing-plan-icon {
  font-size: 36px;
  color: #f6b800;
  margin-bottom: 20px;
}

.pricing-plan-price {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
  color: #111827;
}

.pricing-plan-price .period {
  font-size: 16px;
  color: #6b7280;
}

.pricing-plan-body {
  margin-top: 30px;
}

.pricing-plan-features {
  list-style: none;
  padding: 0;
}

.pricing-plan-features li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #4b5563;
}

.pricing-plan-features i {
  color: #10b981;
  margin-right: 8px;
}

/* Popular Plan Badge */
.pricing-plan.popular {
  border: 2px solid #f6b800;
}

.pricing-plan-badge {
  background: black;
  color: #f6b800;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
}

.pricing-plan .btn {
  background: #f6b800;
  color: black;
  text-decoration: none;
}

.pricing-plan .btn:hover {
  background: black;
  color: #f6b800;
}

/* Additional Services */
/* Additional Services */
.additional-services {
  margin-bottom: 10px;
  width: 100%;
  align-items: center;
  padding: 0 16px; /* Add horizontal padding */
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent scroll */
}

.additional-services h3 {
  font-size: 36px;
  color: #111827;
  margin-bottom: 30px;
  text-align: center;
  justify-content: center;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
}

.additional-service {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 30px 20px;
  transition: 0.3s;
}

.additional-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.additional-service-icon {
  font-size: 32px;
  color: #f6b800;
  margin-bottom: 15px;
  text-align: center;
}

.additional-service h4 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
  color: #111827;
}

.additional-service small {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  display: block; /* change from flex */
  word-wrap: break-word;
  margin-bottom: 15px;
}

.price-label {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #111827;
  text-align: center;
}

.additional-services-grid .add-price-service-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  color: #f6b800;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.add-price-service-link i {
  margin-left: 8px;
}

.add-price-service-link i:hover {
  transform: translateX(4px);
}

/* Custom Solution */
.custom-solution {
  background: #f6b800;
  color: black;
  padding: 40px 30px;
  border-radius: 20px;
  margin-top: 60px;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.custom-solution-content h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.custom-solution-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
  background: black;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: #878684;
  color: #fff;
}

.btn-primary i {
  margin-left: 8px;
}

.btn-primary i:hover {
  transform: translateX(4px);
}

.btn-lg {
  font-size: 18px;
  padding: 14px 30px;
}

.btn-block {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-plan-content {
    flex-direction: column;
  }
}

/* Blog Section */
/* Blog Section */
.blog {
  padding: 80px 0;
  background-color: #7a7a7a;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Align content vertically */
  overflow: hidden; /* Prevent vertical scroll */
}

.blog .blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  overflow: hidden;
}

.blog-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-section-header .badge {
  display: inline-block;
  background: black;
  color: #f6b800;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-section-header h2 {
  font-size: 32px;
  margin: 10px 0;
  color: black;
}

.blog-section-header p {
  font-size: 25px;
  color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .blog {
    padding: 60px 15px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-section-header h2 {
    font-size: 26px;
  }

  .blog-section-header p {
    font-size: 18px;
  }
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s;
}

.blog-card:hover .blog-image-overlay {
  opacity: 1;
}

.blog-image-link {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  color: #333;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
}

.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-content p {
  flex-grow: 1;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  color: #f6b800;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.blog-link i {
  margin-left: 8px;
  transition: 0.3s;
}

.blog-link:hover i {
  transform: translateX(4px);
}

.blog-text-center {
  text-align: center;
  margin-top: 40px;
}

.blog-btn {
  background-color: black;
  color: #f6b800;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.blog-btn i {
  margin-left: 10px;
}

.blog-btn:hover {
  background-color: #f6b800;
  color: black;
}

/* About Us Section */
/* About Us Section */
/* About Section */
.about {
  padding: 80px 0;
  background-color: #ffffff;
}

.about .about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.about-content .badge {
  display: inline-block;
  background: black;
  color: #f6b800;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-content .lead {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-image {
  position: relative;
  z-index: 1;
}

.about-image-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: #f6b800;
  border-radius: 10px;
  z-index: -1;
  transform: rotate(-2deg);
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

/* Button style reuse */
.about-btn {
  background-color: black;
  color: #f6b800;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.about-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.about-btn:hover {
  background-color: #f6b800;
  color: black;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-bg {
    top: 0;
    left: 0;
    transform: rotate(0);
  }

  .about-content {
    order: 2;
  }

  .about-image {
    order: 1;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content .lead,
  .about-text p {
    font-size: 16px;
  }
}

/* Portfolio Section */
/* Portfolio Section */
.portfolio {
  padding: 80px 0;
  background-color: #f9f9f9;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.portfolio .portfolio-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.portfolio-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.portfolio-section-header .badge {
  background-color: black;
  color: #f6b800;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
}

.portfolio-section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.portfolio-section-header p {
  font-size: 16px;
  color: #666;
}

/* Filter Buttons */
.portfolio-filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  display: inline-block;
  background-color: #f0f0f0;
  color: #333;
  padding: 10px 20px;
  margin: 0 8px 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #f6b800;
  color: black;
}

/* Scrollable Portfolio with Arrows */
.portfolio-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* Hide scrollbar */
}

.portfolio-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scroll-behavior: smooth;
  gap: 20px;
  scrollbar-width: none; /* Firefox */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.portfolio-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.portfolio-grid::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

/* Arrow Buttons */
.scroll-btn {
  position: absolute;
  z-index: 10;
  background-color: #fff;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #333;
  font-size: 18px;
  transition: background 0.3s ease;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.scroll-btn:hover {
  background-color: #f6b800;
  color: #fff;
}

/* Portfolio Card */
.portfolio-card {
  max-width: 100vw;
  width: 350px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.portfolio-details {
  padding: 20px;
}

.portfolio-icon {
  font-size: 24px;
  color: #f6b800;
  margin-bottom: 10px;
  display: flex;
}

.portfolio-details h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  color: #333;
}

.portfolio-company {
  font-weight: 600;
  color: #555;
  margin: 8px 0;
}

.portfolio-stat {
  font-size: 16px;
  font-weight: bold;
  color: #f6b800;
  margin-bottom: 10px;
  display: flex;
}

.portfolio-details p {
  font-size: 14px;
  color: #666;
}

.btn-outline {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid black;
  color: #f6b800;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-outline:hover {
  background-color: black;
  color: #f6b800;
  border-color: #f6b800;
}

/* Don’t use display: none if you want smooth scrolling */
.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.portfolio-scroll-container::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to left, #f9f9f9, transparent);
  pointer-events: none;
}

.filter-btn.active {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .portfolio-card {
    width: 70vw;
  }

  .scroll-btn {
    display: none;
  }

  .portfolio-details {
    padding: 16px;
  }

  .portfolio-details h3 {
    font-size: 18px;
  }

  .portfolio-details p {
    font-size: 13px;
  }
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, #565555, #000000, #565555);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  height: auto;
  overflow: visible;
  position: relative; /* Ensure it’s part of stacking context */
  z-index: 1;
}

.cta .cta-container {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  height: auto;
  padding-bottom: 10px;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ccc;
}

.cta .btn {
  background-color: #f6b800;
  color: black;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta .btn:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta .btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .cta {
    padding: 30px 15px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 15px;
  }
}

/* Footer */
.footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 20px 30px;
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
  /* overflow: hidden; */
}

.footer .footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
  overflow: hidden;
}

.footer-logo img {
  margin-bottom: 15px;
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 10px;
}

.footer-info p {
  margin-bottom: 20px;
}

.social-links a {
  color: #ccc;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f6b800;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f6b800;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: #f6b800;
}

.footer-bottom {
  background-color: #111;
  /* border-top: 1px solid #333; */
  width: 100%;
  /* margin-top: 40px; */
  /* padding-top: 20px; */
  text-align: center;
  color: #f6b800;
  font-size: 14px;
  display: block;
  grid-column: 1 / -1; /* full width if inside grid accidentally */
  clear: both; /* avoids float or flex collision */
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr; /* stacks all blocks */
    gap: 20px;
  }

  .footer-logo img {
    width: 140px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 16px 0 8px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px; /* Reduced padding for smaller screens */
  }
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f6b800;
  color: #000;
  border: none;
  border-radius: 50%;
  padding: 12px 14px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  display: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#back-to-top:hover {
  background-color: #fff;
  transform: scale(1.1);
}
