/* @import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;600;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

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

body {
  font-family: "inter", sans-serif;
  background: #fff;
  color: #000;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  list-style: none;
}

/* Header/Navbar */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 110%;
  z-index: 3;
  display: flex;
  justify-content: center; /* Center align */
  align-items: center;
  /* text-transform: uppercase; */
  height: 100px;
  padding: 0 25px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo {
  width: 210px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  /* margin-right: 30px; */
}

/* Desktop Menu */
.desktop-main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}

.desktop-main-menu ul {
  display: flex;
}

.desktop-main-menu ul li {
  position: relative;
  margin: 0 15px;
  padding-bottom: 2px;
}

/* Menu item bottom border */
.desktop-main-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: right center;
}

.desktop-main-menu ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-duration: 0.4s;
}

/* Optional: Center all text inside the nav area on small screens */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .logo {
    margin-bottom: 15px;
    margin-right: 0;
    justify-content: center;
  }

  .desktop-main-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .desktop-main-menu ul li {
    margin: 10px 0;
  }
}

/* Sections */
section {
  position: relative;
  /* Removed fixed height to allow sections to grow with content */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Base Banner Section */
/* Base Banner Section */
.section-a {
  min-height: 80vh;
  background-color: #f6f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}

.banner-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  width: 100%;
  height: 100%;
  gap: 0px;
  flex-wrap: nowrap;
  position: relative;
  padding: 0 0px;
}

.banner-left {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  color: #1c1c1e;
  margin-left: 40px;
  z-index: 10;
}

.banner-left h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 0px 30px;
}

.banner-left p {
  font-size: 1.2rem;
  font-weight: 300;
  /* line-height: 1; */
  max-width: 600px;
  margin: 0 0 10px 30px;
  /* margin-bottom: 40px; */
}

.banner-left p1 {
  font-size: 0.9rem;
  font-weight: 200;
  font-style: light;
  line-height: 1;
  max-width: 600px;
  margin: 0 0 10px 30px;
  margin-bottom: 40px;
}

.banner-btn {
  max-width: 280px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: #007aff;
  border: 1px solid #007aff;
  color: #ffffff;
  cursor: pointer;
  margin-left: 30px;
  overflow: hidden;
  border-radius: 30px;
  /* transition: background-color 0.3s ease, color 0.3s ease; */
}

/* .banner-btn:hover {
  background-color: #7b3fe4;
  border-color: #7b3fe4;
} */

.banner-right {
  /* flex: 2 2 800px; */
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  height: 100%;
}

.banner-image {
  width: 150%;
  max-width: 500px;
  height: auto;
  /* object-fit: contain; */
  border-radius: 8px;
  position: relative;
  right: -20;
  top: 0;
  transform: translateY(0); /* Fixes image being cut */
  z-index: 1;
}

/* Responsive - Tablet & Mobile */
@media (max-width: 960px) {
  .banner-container {
    /* height: 600px; */
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
  }

  .banner-left {
    align-items: center;
    margin-left: 0;
  }

  .banner-left h1,
  .banner-left p,
  .banner-btn {
    margin-left: 0;
  }

  .banner-left h1 {
    font-size: 4rem;
  }

  .banner-left p {
    font-size: 1rem;
    max-width: 90%;
  }

  .banner-btn {
    max-width: 100%;
    padding: 12px 30px;
    margin-bottom: 0px;
  }

  /* .banner-right {
    justify-content: center;

  } */

  /* .banner-container {
  max-height: 580px;
} */

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

@media (max-width: 480px) {
  .banner-container {
    max-height: 690px;
  }
  .banner-left h1 {
    font-size: 2rem;
    margin-top: 0px;
  }

  .banner-left p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .banner-right {
    margin-top: 0px;
  }

  .banner-right {
    /* flex: 2 2 800px; */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    height: 100%;
  }

  .banner-image {
    max-width: 100%;
    max-height: fit-content;
  }
}

/* Background images */
/* .section-a {
  background-image: url('../img/banner.png');
} */
.section-b {
  background-image: url("../img/section-b.webp");
}
.section-c {
  background-image: url("../img/section-c.webp");
}
.section-d {
  background-image: url("../img/section-d.webp");
}
.section-e {
  background-image: url("../img/section-e.webp");
}
.section-f {
  background-image: url("../img/section-f.webp");
}

.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  min-width: 130px;
  padding: 15px 40px;
  margin-top: 30px;
  border: 1px solid #007aff;
  font-weight: bold;
  overflow: hidden;
  z-index: 2;
}

/* .btn:hover span {
  color: #007AFF;
} */

/* .btn .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007AFF;
  color: #fff;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
} */

.btn:hover .hover {
  transform: translateY(0);
}

.scroll-arrow {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeBounce 5s infinite;
  z-index: 0;
}

/* Footer */
footer {
  position: relative;
  padding: 30px 0;
  background-color: #007aff;
}

footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

footer ul li {
  margin-right: 50px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 3.5;
}

footer ul li a {
  /* margin-right: 30px; */
  color: #fff;
  transition: color 0.6s;
}

footer ul li a:hover {
  color: #aaa;
}

/* Hamburger Menu */
.hamburger {
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  width: 20px;
  height: 2px;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.5s;
}

.hamburger-middle {
  transform: translateY(5px);
}

.hamburger-bottom {
  transform: translateY(10px);
}

/* Transition hamburger to X when open */
.open {
  transform: rotate(90deg);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* Overlay */
.overlay-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* Stop body scroll */
.stop-scrolling {
  overflow: hidden;
}

/* Hide mobile main menu items */
.mobile-only {
  display: none;
}

/* Mobile menu */
.mobile-main-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: #000;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Bring menu from right */
.show-menu {
  transform: translateX(0);
}

.mobile-main-menu ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  padding: 50px;
  width: 100%;
}

.mobile-main-menu ul li {
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px #555 dotted;
  width: 100%;
  text-align: right;
  padding-bottom: 8px;
}

.mobile-main-menu ul li a {
  color: #fff;
  transition: color 0.6s;
}

.mobile-main-menu ul li a:hover {
  color: #aaa;
}

/* Inner Pages */
.bg-falcon-9 {
  background-image: url("../img/falcon-9.webp");
}

.bg-falcon-heavy {
  background-image: url("../img/falcon-heavy.webp");
}

.bg-dragon {
  background-image: url("../img/dragon.webp");
}

.section-animate {
  animation: fadeIn 2s ease-in-out;
}

.section-inner-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  text-align: center;
  width: 80%;
}

.section-inner-center h3 {
  font-size: 100px;
  margin-bottom: 15px;
  animation: fadeInUp 0.5s ease-in-out;
}

.section-inner-center p {
  font-size: 20px;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  animation-fill-mode: both;
}

/* Stats */
.stats {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  text-transform: uppercase;
}

.stats div span {
  font-size: 160px;
}

.stats div h4 {
  font-size: 24px;
  font-weight: 300;
}

/* Animations */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(140px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }

  40% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */

@media (max-width: 960px) {
  /* Hide desktop menu */
  .desktop-main-menu {
    display: none;
  }

  /* Show main mobile items */
  .mobile-only {
    display: block;
  }

  .section-inner-center h3 {
    font-size: 75px;
  }
}

@media (max-width: 600px) {
  .section-inner {
    bottom: 75px;
    left: 20px;
  }

  .section-inner h2 {
    font-size: 40px;
  }

  footer ul li:first-child {
    position: static; /* Remove absolute */
    transform: none;
    top: auto;
    left: auto;
  }

  footer ul li {
    margin-right: 15px;
  }

  .logo {
    width: 150px;
    margin: auto;
  }

  .section-inner-center h3 {
    font-size: 50px;
  }

  /* Stats */
  .stats {
    flex-direction: column;
  }

  .stats div {
    margin-bottom: 20px;
  }
}

/* New Brands Section Styles */
.brands-section {
  background-color: #007aff;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 1;
}

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

.brands-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.2;
  color: #ffffff;
}

.brands-section .highlight {
  color: #ffffff; /* Purple color */
  border-bottom: 4px solid #ffffff;
  border-radius: 2px;
  display: inline-block;
  transition: box-shadow 0.3s ease;
}

/* .brands-section .highlight:hover {
  box-shadow: 0 4px 16px rgba(123, 63, 228, 0.9);
} */

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 25px;
  align-items: center;
  justify-items: center;
}

.logo-image {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

/* .logo-image:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(123, 63, 228, 0.5);
  filter: drop-shadow(0 0 6px rgba(123, 63, 228, 0.7));
} */

/* Animation for fade-in on scroll */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-placeholder:nth-child(1) {
  animation-delay: 0.1s;
}
.logo-placeholder:nth-child(2) {
  animation-delay: 0.2s;
}
.logo-placeholder:nth-child(3) {
  animation-delay: 0.3s;
}
.logo-placeholder:nth-child(4) {
  animation-delay: 0.4s;
}
.logo-placeholder:nth-child(5) {
  animation-delay: 0.5s;
}
.logo-placeholder:nth-child(6) {
  animation-delay: 0.6s;
}
.logo-placeholder:nth-child(7) {
  animation-delay: 0.7s;
}
.logo-placeholder:nth-child(8) {
  animation-delay: 0.8s;
}
.logo-placeholder:nth-child(9) {
  animation-delay: 0.9s;
}
.logo-placeholder:nth-child(10) {
  animation-delay: 1s;
}
.logo-placeholder:nth-child(11) {
  animation-delay: 1.1s;
}
.logo-placeholder:nth-child(12) {
  animation-delay: 1.2s;
}
.logo-placeholder:nth-child(13) {
  animation-delay: 1.3s;
}
.logo-placeholder:nth-child(14) {
  animation-delay: 1.4s;
}
.logo-placeholder:nth-child(15) {
  animation-delay: 1.5s;
}
.logo-placeholder:nth-child(16) {
  animation-delay: 1.6s;
}
.logo-placeholder:nth-child(17) {
  animation-delay: 1.7s;
}
.logo-placeholder:nth-child(18) {
  animation-delay: 1.8s;
}
.logo-placeholder:nth-child(19) {
  animation-delay: 1.9s;
}
.logo-placeholder:nth-child(20) {
  animation-delay: 2s;
}
.scroll-services {
  background: #0f0f0f;
  color: #fff;
  padding: 100px 20px 180px;
  position: relative;
}

.scroll-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

.scroll-text {
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
  z-index: 1;
}

.scroll-block {
  min-height: 60vh;
  position: relative;
}

.scroll-block h4 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.scroll-block h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.scroll-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ccc;
}

.btn-pink {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #007aff;
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn-pink:hover {
  background: #007aff;
  color: #fff;
}

/* Sticky Image Section (Desktop) */
.scroll-image {
  position: sticky;
  top: 120px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-image img {
  max-height: 320px;
  width: auto;
  transition: opacity 0.4s ease;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .scroll-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .scroll-text {
    gap: 60px;
  }

  .scroll-block {
    min-height: auto;
  }

  /* Hide sticky image on mobile */
  .scroll-image {
    display: none;
  }

  /* Style for injected images inside each block */
  .scroll-block img.mobile-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
    display: block;
  }
}

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

  .scroll-text {
    gap: 60px;
  }

  .scroll-block {
    min-height: auto;
  }

  /* Remove this to keep sticky image visible on mobile */
  /*
  .scroll-image {
    display: none;
  }
  */

  /* Style for injected images inside each block */
  .scroll-block img.mobile-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
    display: block;
  }
}

/* ---------- Testimonial Section ---------- */
.testimonial-section {
  background-color: #f6f6f8;
  padding: 60px 20px;
  color: #000;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f0f0f;
  border-bottom: 3px solid #007aff;
  padding-bottom: 10px;
}

/* ---------- Testimonial Container (Base: Desktop View) ---------- */
.testimonial-container {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 20px;
  position: relative;
  scrollbar-width: none;
}

.testimonial-container::-webkit-scrollbar {
  display: none;
}

/* ---------- Testimonial Card (Base: Desktop View) ---------- */
.testimonial-card {
  flex: 0 0 350px;
  max-width: 350px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.testimonial-card:hover {
  background-color: #0f0f0f;
  color: #fff;
}

.testimonial-card:hover h4 {
  color: #fff;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.testimonial-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* ---------- Testimonial Dots ---------- */
.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}

.testimonial-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #007aff;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.testimonial-dots button.active {
  background-color: #007aff;
  border-color: #007aff;
}

.testimonial-dots button:hover {
  background-color: #005bb5;
  border-color: #005bb5;
}

/* ---------- Mobile Only: Show One Card Per Screen ---------- */
@media (max-width: 768px) {
  .testimonial-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0 0 20px 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 25px;
  }

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

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-section h2 {
    font-size: 1.8rem;
  }
}
/* Main slider container */
.slider-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: white;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Image style — fill screen on desktop */
.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: black;
  /* background-color: rgba(255, 255, 255, 0.6); */
  /* border-radius: 50%; */
  /* padding: 10px; */
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #007bff;
  color: white;
}

/* Pagination Dots */
.swiper-pagination-bullet {
  background-color: #000;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background-color: #007bff;
  opacity: 1;
}

/* ✅ Responsive image: fully visible on mobile */
@media (max-width: 768px) {
  .slider-section {
    height: 45vh;
  }

  .slide-image {
    object-fit: contain; /* ensures full image is visible */
    background-color: #292929; /* optional: adds padding background */
  }
}

@media (max-width: 500px) {
  .slider-section {
    height: 25vh;
  }
}

/* ======= Slider Heading Style ======= */
.slider-heading {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #000;
  font-family: "Inter", sans-serif;
}

.slider-heading h2 {
  font-size: 3.5vw;
  font-weight: 700;
  color: #000; /* black text */
}

.slider-heading p {
  font-size: 1.2vw;
  color: #555;
  margin-top: 0px;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-heading h2 {
    font-size: 5vw;
  }

  .slider-heading p {
    font-size: 3.5vw;
  }
}

@media (max-width: 500px) {
  .slider-heading h2 {
    font-size: 7vw;
  }

  .slider-heading p {
    font-size: 4vw;
  }
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

/* Landing Section */
.landing-section {
  padding: 3.5rem 0;
  background-color: #ffffff;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Content */
.hero-content {
  margin-bottom: 3.5rem;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2e;
  line-height: 2.5rem;
  /* line-spacing: 1.2rem; */
  margin-bottom: 0.2rem;
  max-width: 48rem;
  margin-left: auto;
  justify-content: center;
  margin-right: auto;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  color: #181a1f;
  max-width: 32rem;
  margin: 0 auto 2rem auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  max-width: 32rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.5s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: #4f46e5;
}

.btn-secondary {
  background-color: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.btn-secondary:hover {
  background-color: rgba(99, 102, 241, 0.2);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 32rem;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
}

.feature-image1 {
  height: 260px;
  width: 230px;
}

.feature-card-large {
  display: flex;
  flex-direction: column;
}

.feature-content {
  padding: 1.25rem;
  width: 100%;
}

.feature-content-full {
  height: 100%;
}

.feature-icon {
  display: block;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  max-width: 16rem;
}

.feature-description {
  font-size: 0.75rem;
  font-weight: 400;
  color: #e6e1e1;
  margin-bottom: 2rem;
  max-width: 16rem;
}

.feature-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: white;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.5s ease;
}

.feature-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.feature-image {
  position: relative;
  height: auto;
  display: none;
}

.placeholder-image {
  height: 100%;
  margin-left: auto;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  border-radius: 0 1rem 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image::before {
  content: "";
  width: 8rem;
  height: 8rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* Color Variants */
.feature-dark {
  background-color: #007aff;
}

.feature-indigo {
  background-color: #444655;
}

.feature-violet {
  background-color: #a8aabc;
}

/* Responsive Design */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

.feature-image1 {
  height: 390px;
  width: 350px;
  border-radius: 18px 18px;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    max-width: 48rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
  }

  .feature-card-large {
    grid-column: span 2;
    flex-direction: row;
  }

  .feature-card-large .feature-content {
    width: 50%;
  }

  .feature-card-large .feature-image {
    display: block;
    width: 50%;
  }

  .feature-image1 {
    height: 280px;
    width: 270px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }

  .feature-card-large {
    grid-column: span 2;
  }

  .feature-image1 {
    height: 260px;
    width: 230px;
  }
}

@media (min-width: 1280px) {
  .feature-content {
    padding: 2rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-image1 {
    height: 300px;
    width: 270px;
  }
}

/* Cta Section Styles */

body {
  font-family: Arial;
  /* background-image: url('bg.jpg'); */
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  border-radius: 16px;
  max-width: 1300px;
  margin: 0 30px;
}

a {
  color: #ffffff;
  text-decoration: none;
}

.header-content {
  font-weight: bold;
  width: 800px;
  margin: 20px auto;
}

#header-right-menu {
  float: right;
}

#header-right-menu a {
  padding: 12px;
}

.header-active {
  color: #000;
}

.inner-container {
  width: 750px;
  margin: 80px auto;
  display: flex;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
}

.tile1 {
  width: 350px;
  justify-content: center;
}

.tile2 {
  flex: 1 1 auto;
  padding: 0px 40px;
}

.tile1-heading {
  /* background: -webkit-linear-gradient(#0aa6bd, #f126bd); */
  background-color: #2c2c2e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  justify-content: center;
  font-size: 2rem;
}

.form-row {
  padding: 10px 0px 0px 0px;
}

.form-field {
  border-radius: 4px;
  width: 100%;
  padding: 15px;
  background-color: #f5f4fa;
  border: 0px;
}

.contact-image {
  padding: 10px;
  border-radius: 35px;
  border: 1px solid #a8a4a4;
  vertical-align: middle;
  margin-right: 20px;
  width: 16px;
  height: 16px;
}

textarea {
  height: 100px;
  font-family: Arial;
}

.btn {
  color: white;
  /* background: linear-gradient(to right, #0aa6bd, #f126bd); */
  background: #007aff;
  border-radius: 25px;
  margin-bottom: 30px;
}

.tile2-image img {
  width: 321px;
  height: 211px;
}

#menu-icon {
  display: none;
  float: right;
}

@media all and (max-width: 900px) {
  .inner-container {
    width: auto;
    display: block;
    margin: 30px auto;
  }
  .header-content {
    width: auto;
  }
  .tile1 {
    width: 100%;
  }
  .tile2 {
    padding: 0px;
  }
  .tile2-image img {
    width: 100%;
    height: auto;
  }
}

@media all and (max-width: 540px) {
  #header-right-menu {
    float: none;
    display: none;
  }
  #header-right-menu a {
    display: block;
    padding: 10px 0px;
  }

  #menu-icon {
    display: block;
    float: right;
  }
}

@media all and (max-width: 400px) {
  .container {
    padding: 10px;
  }
}

body {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 0px;
}

textarea {
  resize: none;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* @charset "UTF-8"; */

.svg-inline--fa {
  vertical-align: -0.2em;
}

.rounded-social-buttons {
  text-align: center;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  border: 0.125rem solid transparent;
  padding: 0;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 1.5625rem;
  font-weight: normal;
  line-height: 2em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover,
.rounded-social-buttons .social-button:focus {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter,
.fa-facebook-f,
.fa-linkedin,
.fa-tiktok,
.fa-youtube,
.fa-instagram {
  font-size: 25px;
}

.rounded-social-buttons .social-button.facebook {
  background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover,
.rounded-social-buttons .social-button.facebook:focus {
  color: #3b5998;
  background: #fefefe;
  border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
  background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover,
.rounded-social-buttons .social-button.twitter:focus {
  color: #55acee;
  background: #fefefe;
  border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
  background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover,
.rounded-social-buttons .social-button.linkedin:focus {
  color: #007bb5;
  background: #fefefe;
  border-color: #007bb5;
}

.rounded-social-buttons .social-button.tiktok {
  background: #000000;
}

.rounded-social-buttons .social-button.tiktok:hover,
.rounded-social-buttons .social-button.tiktok:focus {
  color: #000000;
  background: #fefefe;
  border-color: #000000;
}

.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover,
.rounded-social-buttons .social-button.youtube:focus {
  color: #bb0000;
  background: #fefefe;
  border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
  background: #125688;
}

.rounded-social-buttons .social-button.instagram:hover,
.rounded-social-buttons .social-button.instagram:focus {
  color: #125688;
  background: #fefefe;
  border-color: #125688;
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #f9f9f9; /* optional */
}

.image-container {
  max-width: 1200px;
  width: 100%;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* optional */
}
