/* CSS Variables */
:root {
  /* Colors */
  --background: #f9f9fb;
  --foreground: #26262a;
  --card: #ffffff;
  --card-foreground: #26262a;
  --primary: #e68b03;
  --primary-foreground: #f9f9fb;
  --secondary: #e68b03;
  --secondary-foreground: #f9f9fb;
  --muted: #ebebed;
  --muted-foreground: #8e8e93;
  --accent: #e68b03;
  --border: #ebebed;
  --ring: #3730a3;

  /* Spacing */
  --container-max-width: 1280px;
  --section-padding: 5rem 0;

  /* Transitions */
  --transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #1f1f23;
    --foreground: #f2f2f4;
    --card: #2e2e33;
    --card-foreground: #f2f2f4;
    --primary: #8b87ff;
    --primary-foreground: #1f1f23;
    --secondary: #ff8a50;
    --secondary-foreground: #1f1f23;
    --muted: #595961;
    --muted-foreground: #b3b3b8;
    --border: #4d4d52;
  }
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;

  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(249, 249, 251, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

@media (prefers-color-scheme: dark) {
  .navbar {
    background-color: rgba(31, 31, 35, 0.95);
  }
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  overflow: visible;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  position: relative;
  z-index: 10;
}

.logo-image {
  height: 5rem;
  width: auto;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.nav-links {
  display: none;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-contact-btn {
  display: none !important;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .nav-contact-btn {
    display: inline-flex !important;
  }
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
  z-index: 1001;
  position: relative;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--card);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 6rem 2rem 2rem;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background-color: var(--muted);
  color: var(--primary);
}

.mobile-menu-close i {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  display: block;
  padding: 1rem;
  color: var(--foreground);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: var(--transition);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.mobile-link:hover {
  background-color: var(--muted);
  color: var(--primary);
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .logo-subtitle {
    display: inline;
  }

  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu-overlay {
    display: none;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 700px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55, 48, 163, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(234, 88, 12, 0.7) 100%);
  z-index: 3;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-control:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 2rem;
}

.carousel-control.next {
  right: 2rem;
}

.carousel-control svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicator.active {
  background-color: var(--primary);
  border-color: var(--primary);
  width: 2rem;
  border-radius: 0.375rem;
}

@media (max-width: 768px) {
  .hero-carousel {
    min-height: 600px;
  }

  .carousel-slide {
    min-height: 600px;
  }

  .hero-content {
    padding: 6rem 1rem 5rem;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .carousel-control {
    width: 2.5rem;
    height: 2.5rem;
  }

  .carousel-control.prev {
    left: 0.75rem;
  }

  .carousel-control.next {
    right: 0.75rem;
  }

  .carousel-indicators {
    bottom: 1rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55, 48, 163, 0.05) 0%, var(--background) 50%, rgba(234, 88, 12, 0.05) 100%);
}

.hero-content {
  position: relative;
  padding: 10rem 1rem 6rem;
  text-align: center;
  z-index: 4;
}

.hero-text {
  max-width: 48rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #ffffff;
}

.text-primary {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-decoration {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.decoration-1 {
  top: 5rem;
  right: 2.5rem;
  background-color: rgba(234, 88, 12, 0.1);
}

.decoration-2 {
  bottom: 5rem;
  left: 2.5rem;
  background-color: rgba(55, 48, 163, 0.1);
}

@media (min-width: 640px) {
  .hero-carousel {
    min-height: 650px;
  }

  .carousel-slide {
    min-height: 650px;
  }

  .hero-content {
    padding: 10rem 1.5rem 6rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-carousel {
    min-height: 700px;
  }

  .carousel-slide {
    min-height: 700px;
  }

  .hero-content {
    padding: 12rem 2rem 8rem;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(55, 48, 163, 0.1);
}

.btn-light {
  background-color: var(--primary-foreground);
  color: var(--primary);
}

.btn-light:hover {
  opacity: 0.9;
}

.btn-outline-light {
  border-color: var(--primary-foreground);
  color: var(--primary-foreground);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
  padding: var(--section-padding);
}

.hero {
  padding: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.badge-subsidiaries {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);

}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(230, 139, 3, 0.3);
  }

  50% {
    box-shadow: 0 6px 20px rgba(230, 139, 3, 0.5);
  }
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About Section */
.about-section {
  background-color: var(--background);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.about-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.about-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  top: -100px;
  right: -100px;
  animation: floatSlow 20s ease-in-out infinite;
}

.about-shape.shape-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  top: 100px;
  right: 200px;
  animation: floatSlow 15s ease-in-out infinite reverse;
}

.about-shape.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  top: 50px;
  right: 50px;
  animation: floatSlow 18s ease-in-out infinite;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge-container {
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  /* animation: badgePulse 2s ease-in-out infinite; */
}

.badge i {
  width: 1.2rem;
  height: 1.2rem;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(230, 139, 3, 0.3);
  }

  50% {
    box-shadow: 0 6px 20px rgba(230, 139, 3, 0.5);
  }
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.about-intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  text-align: justify;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-item i {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-content p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;

}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.about-image-overlay i {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.about-image-overlay p {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1.1rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 300px;
  }
}

/* Subsidiaries Section */
.subsidiaries {
  background-color: rgba(185, 185, 185, 0.3);
}

@media (prefers-color-scheme: dark) {
  .subsidiaries {
    background-color: rgba(89, 89, 97, 0.1);
  }
}

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-decoration: none;
  color: var(--foreground);
  transition: var(--transition);
}

.subsidiary-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(55, 48, 163, 0.5);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.subsidiary-card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-blue {
  background-color: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.icon-green {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.icon-amber {
  background-color: rgba(230, 139, 3, 0.1);
  color: #e68b03;
}

.icon-slate {
  background-color: rgba(71, 85, 105, 0.1);
  color: #475569;
}

.icon-orange {
  background-color: rgba(230, 139, 3, 0.1);
  color: #e68b03;
}

@media (prefers-color-scheme: dark) {
  .icon-blue {
    background-color: rgba(37, 99, 235, 0.2);
  }

  .icon-green {
    background-color: rgba(22, 163, 74, 0.2);
  }

  .icon-amber {
    background-color: rgba(230, 139, 3, 0.2);
  }

  .icon-slate {
    background-color: rgba(71, 85, 105, 0.2);
  }

  .icon-orange {
    background-color: rgba(230, 139, 3, 0.2);
  }
}

.card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(230, 139, 3, 0.2);
  align-self: flex-start;
}

.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 139, 3, 0.4);
}

.subsidiary-card {
  display: flex;
  flex-direction: column;
}

.subsidiary-card p {
  flex-grow: 1;
}

/* Impact Section */
.metric {
  text-align: center;
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(55, 48, 163, 0.1);
  margin-bottom: 1rem;
}

.metric-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.metric p {
  color: var(--muted-foreground);
}

/* Partnerships Section */
.partnerships {
  background-color: rgba(235, 235, 237, 0.3);
}

@media (prefers-color-scheme: dark) {
  .partnerships {
    background-color: rgba(89, 89, 97, 0.1);
  }
}

.partner-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  border-color: rgba(55, 48, 163, 0.5);
}

.partner-card p {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

/* Impact Section */
.impact-section {
  background-color: var(--background);
  padding: var(--section-padding);
}

.badge-impact {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.impact-card {
  background-color: var(--card);
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.impact-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.impact-card:hover .impact-icon {
  transform: scale(1.1);
}

.impact-icon i {
  width: 1.75rem;
  height: 1.75rem;
}

.impact-card:nth-child(1) .impact-icon {
  background-color: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.impact-card:nth-child(2) .impact-icon {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.impact-card:nth-child(3) .impact-icon {
  background-color: rgba(230, 139, 3, 0.1);
  color: #e68b03;
}

.impact-card:nth-child(4) .impact-icon {
  background-color: rgba(71, 85, 105, 0.1);
  color: #475569;
}

.impact-card:nth-child(5) .impact-icon {
  background-color: rgba(230, 139, 3, 0.1);
  color: #e68b03;
}

.impact-card:nth-child(6) .impact-icon {
  background-color: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

@media (prefers-color-scheme: dark) {
  .impact-card:nth-child(1) .impact-icon {
    background-color: rgba(37, 99, 235, 0.2);
  }

  .impact-card:nth-child(2) .impact-icon {
    background-color: rgba(22, 163, 74, 0.2);
  }

  .impact-card:nth-child(3) .impact-icon {
    background-color: rgba(230, 139, 3, 0.2);
  }

  .impact-card:nth-child(4) .impact-icon {
    background-color: rgba(71, 85, 105, 0.2);
  }

  .impact-card:nth-child(5) .impact-icon {
    background-color: rgba(230, 139, 3, 0.2);
  }

  .impact-card:nth-child(6) .impact-icon {
    background-color: rgba(139, 92, 246, 0.2);
  }
}

.impact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.impact-card p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
  top: -100px;
  left: -100px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
  bottom: 20%;
  left: 10%;
  animation: float 25s ease-in-out infinite;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%);
  bottom: -80px;
  right: 15%;
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(20px) rotate(-5deg);
  }
}

.cta-content {
  text-align: center;
  max-width: 56rem;
  padding: 5rem 1rem;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta h2 {
    font-size: 3rem;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Subsidiary Pages Styles */
.subsidiary-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}

.subsidiary-hero-content .card-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.subsidiary-hero-content .card-icon i {
  width: 2.5rem;
  height: 2.5rem;
}

.subsidiary-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.subsidiary-hero .subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.subsidiary-section {
  padding: 4rem 0;
}

.subsidiary-section.bg-light {
  background-color: rgba(235, 235, 237, 0.3);
}

@media (prefers-color-scheme: dark) {
  .subsidiary-section.bg-light {
    background-color: rgba(89, 89, 97, 0.1);
  }
}

.subsidiary-content {
  max-width: 50rem;
  margin: 0 auto;
}

.subsidiary-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.subsidiary-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.expertise-item {
  text-align: center;
  padding: 1.5rem;
}

.expertise-item i {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.expertise-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
}

.certifications-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cert-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  align-items: flex-start;
}

.cert-item i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cert-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.cert-item p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  margin: 0;
}

.subsidiary-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.subsidiary-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subsidiary-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .subsidiary-hero h1 {
    font-size: 2rem;
  }

  .subsidiary-hero .subtitle {
    font-size: 1.1rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .subsidiary-cta h2 {
    font-size: 2rem;
  }
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
}

.footer .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about {
  grid-column: 1;
}

.footer-about .social-links {
  margin-top: 1.5rem;
}

.footer-logo-image {
  height: 5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--primary);
  padding-left: 0.25rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item p {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.social-links a svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.social-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 640px) {
  .footer .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .footer .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}