/* Layout */
/* Ensure full-width layout */
html, body,#root {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}
/* hover content */
.fade-in-left-content {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease, transform 1.5s ease;
}

.fade-in-right-content {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 1.5s ease;
}

.visible-content {
  opacity: 1;
  transform: translateX(0);
}

/* Bounce on hover and click */
.bounce-hover {
  display: inline-block;
  transition: transform 0.2s ease;
}

.bounce-hover:hover,
.bounce-hover:focus {
  transform: scale(1.05) translateY(-2px);
}

.bounce-hover:active {
  transform: scale(0.97) translateY(2px);
}


.hero {
  position: relative;
  width: 100%;
  min-height: 800px;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
}

.navbar-inner {
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 70px;
}

.nav-desktop {
  display: none;
}

.cta {
  display: none;
}

.menu-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
}

/* Desktop Nav + CTA visibility */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    gap: 30px;
  }

  .cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}
@media (min-width: 640px) {
  .logo {
    height: 40px;
  }
}
@media (min-width: 1024px) {
  .logo {
    height: 70px;
  }
}

/* Navigation Links */
.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-decoration: none;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.quote-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 8px 24px;
  border: 1px solid white;
  border-radius: 6px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.quote-btn:hover {
  background-color: white;
  color: #000347;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 0 16px 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-inner {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  color: white;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-quote-btn {
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid white;
  padding: 12px 24px;
  border-radius: 9999px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-quote-btn:hover {
  background-color: white;
  color: #000347;
}

/* Hero Content */
.hero-content {
  text-align: center;
  padding: 0 16px;
  max-width: 960px;
  width: 100%;
  z-index: 10;
}

.hero-text {
  margin-bottom: 32px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 24px;
  }
}

.btn-primary,
.btn-outline {
  font-size: 18px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: white;
  color: #000347;
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: white;
  color: #000347;
}

/* About Section */
.about-section {
  width: 100%;
  padding: 48px 16px;
  background-color: #ffffff;
}

@media (min-width: 640px) {
  .about-section {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 80px 56px;
  }
}

.about-container {
  width: 100%;
  max-width: 100%;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  box-shadow: 0px 5px 0px 0px rgba(0, 115, 251, 1);
  border: 2px solid #0073fb;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* Title Row */
.about-title-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.about-title {
  font-size: 28px;
  font-weight: 700;
  color: #1d1e1c;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  margin: 0;
}

.about-title:hover {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .about-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 48px;
  }
}

.about-logo {
  width: 32px;
  height: 40px;
}

@media (min-width: 640px) {
  .about-logo {
    width: 40px;
    height: 48px;
  }
}

/* Content */
.about-content {
  width: 100%;
  text-align: center;
  padding: 0 16px;
}

.about-description {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 640px) {
  .about-description {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .about-description {
    font-size: 22px;
  }
}

.highlight-blue {
  color: #308FFF;
  font-weight: 600;
}

.highlight-pink {
  color: #FF2990;
  font-weight: 600;
}

/* Service Section */

img {
  display: block;
  max-width: 100%;
}

/* Section Layout */
.services-section {
  width: 100%;
  padding: 48px 16px;
  background-color: #ffffff;
}

@media (min-width: 640px) {
  .services-section {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .services-section {
    padding: 80px 56px;
  }
}

.services-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}

.services-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 640px) {
  .services-title h2 {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .services-title h2 {
    font-size: 48px;
  }
}

.services-logo {
  width: 32px;
  height: 40px;
}

@media (min-width: 640px) {
  .services-logo {
    width: 40px;
    height: 48px;
  }
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.service-card {
  background-color: #fff;
  border-radius: 30px;
  padding: 24px;
  position: relative;
  text-align: center;
  box-shadow: 0px 5px 0px rgba(0, 115, 251, 1);
  border: 2px solid #0073fb;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  background-color: #0073fb;
  color: white;
}

.service-card:hover .it-service {
  content: url("/images/it-hover.png");
}

.service-card:hover .bpo-service {
  content: url("/images/bpo-hover.png");
}

.service-card:hover .healthcare-service {
  content: url("/images/healthcare-hover.png");
}

.service-card:hover .digital-service {
  content: url("/images/digital-hover.png");
}

.service-card:hover .global-service {
  content: url("/images/solution-hover.png");
}

/* Icon */
.icon-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.it-service, .bpo-service, .healthcare-service, .digital-service, .global-service {
  width: 48px;
  height: 48px;
}

/* Content */
.card-content {
  margin-top: 80px;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-points {
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  padding-left: 0;
}

.service-points li {
  margin-bottom: 8px;
}

/* FlagShip Brand Section */
.brand-link {
  text-decoration: none;
  color: #000000;
}
.flagship-section {
  width: 100%;
  padding: 48px 16px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .flagship-section {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .flagship-section {
    padding: 80px 56px;
  }
}

/* Title */
.flagship-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.flagship-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 640px) {
  .flagship-title h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .flagship-title h2 {
    font-size: 3rem;
  }
}

.title-logo {
  width: 32px;
  height: 40px;
}

@media (min-width: 640px) {
  .title-logo {
    width: 40px;
    height: 48px;
  }
}

/* Grid */
.brand-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cards */
.brand-card {
  background-color: white;
  border-radius: 30px;
  padding: 20px 24px;
  box-shadow: 0 5px 0 0 rgba(0, 115, 251, 1);
  outline: 2px solid #0073fb;
  outline-offset: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Icon */
.brand-icon {
  width: 40px;
  height: 40px;
}

@media (min-width: 640px) {
  .brand-icon {
    width: 48px;
    height: 48px;
  }
}

/* Content */
.brand-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 640px) {
  .brand-content h3 {
    font-size: 1.75rem;
  }
}

.brand-content p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin: 10px;
}

/* Contact CTC Section */
.cta-section {
  width: 100%;
  background-color: white;
  padding: 48px 16px;
}

@media (min-width: 640px) {
  .cta-section {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 80px 56px;
  }
}

.cta-container {
  position: relative;
  background-color: #0073fb;
  border-radius: 45px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 640px) {
  .cta-container {
    flex-direction: row;
    padding: 40px 48px;
    justify-content: space-between;
  }
}

.cta-circles {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 0;
}

.cta-circles .u-circle {
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  /* animation: fadeInScale 0.1s ease-out forwards; */
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-text {
  position: relative;
  z-index: 10;
  max-width: 720px;
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-text {
    text-align: left;
    width: 50%;
  }
}

.cta-text h2 {
  color: white;
  font-size: 30px;
  font-weight: 500;
}
@media (min-width: 640px) {
  .cta-text h2 {
    font-size: 28px;
  }
}

.cta-text p {
  margin-top: 18px;
  color: white;
  font-size: 16px;
}
@media (min-width: 640px) {
  .cta-text p {
    font-size: 18px;
  }
}

.cta-text button {
  margin-top: 24px;
  background-color: white;
  color: #0073fb;
  font-family: "Space Grotesk", sans-serif;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.cta-text button:hover {
  background-color: #f0f0f0;
}

.cta-image {
  display: none;
}
@media (min-width: 640px) {
  .cta-image {
    display: block;
    position: relative;
    z-index: 10;
    width: 300px;
    height: auto;
  }
}
@media (min-width: 768px) {
  .cta-image {
    width: 400px;
  }
}

/* Global Delivery Section */
body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

.global-section {
  width: 100%;
  padding: 48px 16px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .global-section {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .global-section {
    padding: 80px 56px;
  }
}

.global-container {
  width: 100%;
  max-width: 100%;
  background: white;
  padding: 32px 16px;
  border-radius: 30px;
  box-shadow: 0 5px 0 #0073fb;
  outline: 2px solid #0073fb;
  position: relative;
  overflow: hidden;
}

.global-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.global-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1d1e1c;
  text-align: center;
  margin: 0;
}

.logo-icon {
  width: 40px;
  height: 48px;
}

.global-content {
  text-align: center;
  padding: 0 16px;
}

.global-content p {
  font-size: 1.125rem;
  color: #1d1e1c;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.global-content ol {
  list-style-type: disc;
  padding-left: 24px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.global-content li {
  font-size: 1.125rem;
  color: #1d1e1c;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.circle-group {
  position: absolute;
  display: none;
}

.circle {
  position: absolute;
  border: 2px solid #0073fb;
  border-radius: 50%;
}

.outer {
  width: 250px;
  height: 250px;
  top: 0;
  left: 0;
}

.mid {
  width: 200px;
  height: 200px;
  top: 25px;
  left: 25px;
}

.small {
  width: 150px;
  height: 150px;
  top: 50px;
  left: 50px;
}

.tiny {
  width: 100px;
  height: 100px;
  top: 75px;
  left: 75px;
}

.right-circles {
  right: -125px;
  bottom: -125px;
  width: 250px;
  height: 250px;
}

.left-circles {
  top: -125px;
  left: -125px;
  width: 250px;
  height: 250px;
}

/* Responsive */
@media (min-width: 640px) {
  .global-title h2 {
    font-size: 2.5rem;
  }

  .logo-icon {
    width: 48px;
    height: 56px;
  }

  .global-content p,
  .global-content li {
    font-size: 1.25rem;
  }

  .circle-group {
    display: block;
  }
}

@media (min-width: 768px) {
  .global-title h2 {
    font-size: 3rem;
  }

  .global-content p,
  .global-content li {
    font-size: 1.5rem;
  }
}

/* Working Process Section */
/* Section Wrapper */
.working-process-section {
  width: 100%;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Heading */
.heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.heading h2 {
  font-size: 2rem;
  font-weight: 700;
}
.heading img {
  width: 2.5rem;
  height: 3rem;
}

/* Accordion Container */
.accordion {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Accordion Item */
/* Section Wrapper */
.working-process-section {
  width: 100%;
  padding: 48px 16px;
  display: flex;
  background-color: #ffffff;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 640px) {
  .working-process-section {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .working-process-section {
    padding: 80px 56px;
    max-width: 100%;
  }
}

/* Heading */
.heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.heading h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.heading img {
  height: 56px;
  width: 48px;
}

/* Accordion */
.accordion {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Accordion Item */
.accordion-item {
  border: 2px solid #0073fb;
  border-radius: 45px;
  box-shadow: 0 5px 0 0 rgba(0, 115, 251, 1);
  background-color: white;
  color: black;
  overflow: hidden;
  transition: 0.3s ease all;
}
.accordion-item.active {
  background-color: #0073fb;
  color: white;
}

/* Header */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}
.accordion-header .left {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.accordion-header .number {
  font-size: 2rem;
  font-weight: 500;
}
.accordion-header .title {
  font-size: 1.1rem;
  font-weight: 600;
}
.accordion-header .toggle-icon {
  background: white;
  color: #0073fb;
  font-size: 1.5rem;
  border-radius: 9999px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-item.active .accordion-header .toggle-icon {
  background: white;
  color: #0073fb;
}

/* Body */
.accordion-body {
  padding: 0 2rem 1.5rem;
  display: none;
}
.accordion-item.active .accordion-body {
  display: block;
}
.accordion-body ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}
.accordion-body li {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  list-style: disc;
}

/* Color override for text inside open item */
.accordion-item.active .accordion-body li,
.accordion-item.active .number,
.accordion-item.active .title {
  color: white;
}

/* Responsive */
@media (min-width: 640px) {
  .heading h2 {
    font-size: 2.25rem;
  }
  .accordion-header .title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .heading h2 {
    font-size: 48px;
  }
  .accordion-header .number {
    font-size: 60px;
  }
  .accordion-header .title {
    font-size: 30px;
  }
  .accordion-body li {
    font-size: 18px;
  }
  .accordion-header {
    padding: 30px 70px;
  }
  .accordion-body{
    padding: 0 70px 30px;
  }
}

/* Contact Section */
.contact-container {
  padding: 84px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact-container {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    padding: 80px 56px;
    max-width: 100%;
  }
}

/* Heading Section */
.contact-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.contact-heading h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 640px) {
  .contact-heading h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-heading h1 {
    font-size: 48px;
  }
}

.contact-heading img {
  height: 56px;
  width: 48px;
}

/* Form Section */
.form-wrapper {
  width: 100%;
  max-width: 1440px;
  background: url('/images/contact.jpg') no-repeat center center / cover;
  border-radius: 30px;
  padding: 60px 20px;
  box-sizing: border-box;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: 18px 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  height: 190px;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-button {
  padding: 20px 35px;
  background-color: white;
  color: #1d1e1c;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-wrapper {
    padding: 40px 15px;
  }

  .contact-form {
    width: 100%;
  }

  input,
  textarea {
    width: 100%;
  }
}


/* Form Section */
.form-wrapper {
  width: 100%;
  max-width: 1440px;
  background: url('/images/contact.jpg') no-repeat center center / cover;
  border-radius: 30px;
  padding: 60px 20px;
  box-sizing: border-box;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: 18px 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 2px solid #ffffff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2); /* optional glow */
}


textarea {
  height: 190px;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Space Grotesk', sans-serif;
}

.submit-button {
  padding: 20px 35px;
  background-color: white;
  color: #1d1e1c;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-wrapper {
    padding: 40px 15px;
  }

  .contact-form {
    width: 100%;
  }

  input,
  textarea {
    width: 100%;
  }
}

/* Footer Section */
.footer-wrapper {
  width: 100%;
  padding: 48px 16px;
  background-color: white;
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-wrapper {
    padding: 64px 24px;
  }
}

@media (min-width: 1024px) {
  .footer-wrapper {
    padding: 80px 56px;
    max-width: 100%;
  }
}

.footer-container {
  width: 100%;
  max-width: 100%;
  background-color: #1d1e1c;
  border-radius: 48px;
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Top Section */
.footer-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Logo + Subscribe */
.footer-subscribe {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 154px;
  height: 62px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .subscribe-form {
    flex-direction: row;
    align-items: center;
  }
}

.subscribe-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #1d1e1c;
  color: white;
  border: 1px solid white;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form button {
  padding: 12px 24px;
  border-radius: 10px;
  background-color: white;
  color: #1d1e1c;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #f1f1f1;
}

/* Footer Menus */
.footer-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-menu {
    text-align: left;
  }
}

.footer-menu h3 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-menu ul li {
  cursor: pointer;
}

.footer-menu ul li:hover {
  text-decoration: underline;
}

/* Contact Info */
.contact-info p {
  font-size: 14px;
  color: white;
  margin: 0;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .footer-socials {
    justify-content: flex-start;
  }
}

.footer-socials img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer-socials img:hover {
  transform: scale(1.2);
}

/* Bottom Text */
.footer-bottom {
  color: white;
  text-align: center;
  font-size: 14px;
  margin: 0;
}



