@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ff-primary: "Figtree", sans-serif;
  --primary-color: #155dfc;
  --dark-color: #101828;
  --text-color: #4a5565;
  --bg-primary: #f3f3f3;
  --bg-secondary: #f9f9f9;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}
body {
  font-family: var(--ff-primary);
}
body.menu-open {
  overflow: hidden;
}

/* ----------header----------- */
.hero-section {
  position: relative;
  top: -54px;
  min-height: 90vh;
  background-image: url("../images/background-banner.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  z-index: 1;
  padding-top: 150px;
  overflow: hidden;
}

/* HEADER */
.main-header {
  position: sticky;
  top: 30px;
  z-index: 999;
}

.navbar-card {
  background: #fff;
  border-radius: 18px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.main-nav a:hover {
  color: #0d6efd;
}

.logo img {
  height: 45Rpx;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 15px;
}

/* HAMBURGER */
.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f4f6fb;
  border: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: #1a5cff;
  border-radius: 10px;
  transition: 0.4s;
}

/* HERO */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eaf0ff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  color: #1a5cff;
  margin-bottom: 32px;
}

.hero-badge img {
  width: 18px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 1128px;
  margin: 0 auto 24px;
}

.hero-title span {
  color: #1a5cff;
}

.hero-text {
  font-size: 16px;
  color: #4a5565;
  max-width: 834px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.hero-actions a {
  padding: 17px 39px;
  font-size: 16px;
  font-weight: 400;
}
.mobile-menu nav a:hover {
  color: #0d6efd;
}
/* STATS */
.stats-section {
  padding: 109px 0 80px;
}

.stat-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-height: 104px;
}

.stat-card h2 {
  color: #155dfc;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-align: left;
}
.stat-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
  text-align: left;
  margin: 0;
}

/* ===== HERO ENTRY ANIMATION ===== */
.hero-badge,
.hero-title,
.hero-text,
.hero-actions {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.hero-animate {
  opacity: 1;
  transform: translateY(20px);
}

/* ===== STATS CARD ANIMATION ===== */
.stat-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
}

.stat-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: calc(100vw - 30px); /* screen width - 30px */
  max-width: 420px; /* optional: prevent too wide menu */
  height: 100vh;
  background: #fff;
  z-index: 2001;
  padding: 40px 30px;
  transition: right 0.4s ease;
}
.mobile-menu {
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-menu a {
  color: #1f2937;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* SHOW MENU */
.mobile-menu.active {
  right: 0;
}

/* MOBILE CTA */
.mobile-cta {
  margin-top: 20px;
  text-align: center;
  color: #fff !important;
}

/* HAMBURGER ANIMATION */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.menu-btn {
  display: none;
}

/* BELOW 1200px */
@media (max-width: 1199px) {
  .menu-btn {
    display: flex;
  }

  .desktop-menu {
    display: none;
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .main-nav,
  .btn.d-xl-inline-flex {
    display: none !important;
  }
  .menu-btn {
    display: flex;
  }
}
/* Desktop view - hide mobile menu */
@media (min-width: 1200px) {
  .mobile-menu {
    display: none !important;
  }
  .menu-btn {
    display: none !important;
  }
}

/* --------------main--------------- */
/* --------------about-section------------ */
.about-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

/* HEADER */
.about-header-section {
  text-align: center;
  margin-bottom: 60px;
}

.about-header {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.about-sub-header {
  font-size: 34px;
  font-weight: 500;
  color: var(--dark-color);
  max-width: 720px;
  margin: 0 auto;
}

/* CONTENT */
.about-content p {
  font-size: 16px;
  line-height: 28px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 400;
  text-align: justify;
}

/* FEATURES */
.about-features {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.feature-item {
  background: transparent;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  flex: 1 1 170px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-item p {
  font-size: 11px;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(21, 93, 252, 0.15);
}

.feature-item:hover .material-icons {
  transform: scale(1.1);
  color: #0b45d9;
}

/* IMAGE */
.about-image-wrapper {
  position: relative;
  transition: transform 0.4s ease;
}

.about-image {
  width: 100%;
  border-radius: 18px;
  object-fit: contain;
  transition: transform 0.4s ease;
  max-width: 461px;
  max-height: 356px;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-sub-header {
    font-size: 28px;
  }

  .about-features {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }

  .about-sub-header {
    font-size: 24px;
  }

  .about-content {
    text-align: center;
  }
}
/* Hide whole section initially */
.about-section {
  opacity: 0;
}

/* When active */
.about-section.about-visible {
  opacity: 1;
}

/* Header */
.about-header,
.about-sub-header {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Content */
.about-content p,
.feature-item {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease;
}

/* Image */
.about-image-wrapper {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}

/* Active state */
.about-visible .about-header,
.about-visible .about-sub-header,
.about-visible .about-content p,
.about-visible .feature-item,
.about-visible .about-image-wrapper {
  opacity: 1;
  transform: translate(0);
}

/* ------------apart section----------- */
.apart-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.apart-header-section {
  text-align: center !important;
  margin-bottom: 60px;
}

.apart-header {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.apart-sub-header {
  font-size: 34px;
  font-weight: 500;
  color: var(--dark-color);
  max-width: 720px;
  margin: 0 auto 16px auto;
}

.apart-sub-text {
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

/* Cards Layout */
.apart-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.apart-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.apart-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.apart-card .icon {
  width: 48px;
  height: 48px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.apart-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.apart-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.apart-card p {
  font-size: 14px;
  color: #4a5565;
  line-height: 22px;
}

/* Tablet */
@media (max-width: 991px) {
  .apart-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .apart-cards {
    grid-template-columns: 1fr;
  }

  .apart-sub-header {
    font-size: 26px;
  }
}
/* ===== APART SECTION ANIMATION ===== */

.apart-section {
  opacity: 0;
}

.apart-section.apart-visible {
  opacity: 1;
}

/* HEADER SECTION */
.apart-header,
.apart-sub-header,
.apart-sub-text {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* CARDS */
.apart-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* ===== HEADER SEQUENCE FIRST ===== */

.apart-visible .apart-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.apart-visible .apart-sub-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.apart-visible .apart-sub-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* ===== CARDS AFTER HEADER COMPLETES ===== */

.apart-visible .apart-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.apart-visible .apart-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}

.apart-visible .apart-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.apart-visible .apart-card:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.35s;
}

.apart-visible .apart-card:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}

.apart-visible .apart-card:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.65s;
}

/* ----------service-section-------------- */
.service-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.service-header-section {
  text-align: center;
  margin-bottom: 60px;
}

.service-header {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}
.service-carousel {
  overflow: visible !important;
}

.service-sub-header {
  font-size: 34px;
  font-weight: 500;
  color: var(--dark-color);
  max-width: 720px;
  margin: 0 auto 16px;
}

.service-sub-text {
  font-size: 16px;
  color: #4a5565;
  line-height: 28px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  margin: 20px 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* Image */
.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* Floating Icon */
.service-icon {
  position: absolute;
  bottom: 12px;
  left: 20px;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 24px;
  height: 24px;
}

/* Content */
.service-content {
  padding: 36px 24px 28px;
}

.service-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #4a5565;
  line-height: 22px;
}

/* Owl spacing */
.service-carousel .owl-stage {
  display: flex;
}

.service-carousel .owl-item {
  padding: 0 12px;
}

/* -----------conultation-section--------- */
.consultation-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

/* Card */
.consultation-card {
  background: linear-gradient(135deg, #f3f7ff 0%, #f4f8ff 100%);
  border-radius: 18px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Content */
.consultation-content {
  max-width: 720px;
}

.consultation-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 14px;
}

.consultation-content p {
  font-size: 16px;
  line-height: 28px;
  color: #475467;
  margin: 0;
}

/* Button (Anchor Tag) */
.consultation-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .consultation-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .consultation-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .consultation-section {
    padding: 60px 0;
  }

  .consultation-content h2 {
    font-size: 24px;
  }

  .consultation-btn {
    width: 100%;
    text-align: center;
  }
}
/* ===== CONSULTATION SECTION ANIMATION ===== */

/* Hide section initially */
.consultation-section {
  opacity: 0;
}

/* Visible state */
.consultation-section.consultation-visible {
  opacity: 1;
}

/* Content: slide from LEFT */
.consultation-content h2,
.consultation-content p {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease;
}

/* Button: slide from RIGHT */
.consultation-action {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

/* Active state */
.consultation-visible .consultation-content h2,
.consultation-visible .consultation-content p,
.consultation-visible .consultation-action {
  opacity: 1;
  transform: translateX(0);
}

/* --------tech section--------- */
.tech-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.tech-small-title {
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
}

.tech-title {
  font-size: 36px;
  font-weight: 500;
  margin: 12px 0;
}

.tech-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #6b7280;
}

.tech-card {
  background: #eef5ff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  border-bottom: 4px solid #2563eb;
}

.tech-card h4 {
  font-size: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c4c4c4;
}

.tech-card hr {
  border: none;
  height: 1px;
  background: #dde6f3;
  margin-bottom: 20px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 6px 13px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Color Variants */
.blue {
  background: #e0ecff;
  color: #2563eb;
  border-color: #2563eb;
}
.cyan {
  background: #e0f7ff;
  color: #0891b2;
  border-color: #0891b2;
}
.purple {
  background: #efe1ff;
  color: #7c3aed;
  border-color: #7c3aed;
}
.green {
  background: #dcfce7;
  color: #16a34a;
  border-color: #16a34a;
}
.yellow {
  background: #fef3c7;
  color: #ca8a04;
  border-color: #ca8a04;
}
.pink {
  background: #ffe4f0;
  color: #db2777;
  border-color: #db2777;
}
.dark {
  background: #d1d5db;
  color: #111827;
  border-color: #111827;
}
.skyblue {
  background: #008ba133;
  color: #008ba1;
  border-color: #008ba1;
}
.darkGreen {
  background: #00622733;
  color: #006227;
  border-color: #006227;
}
.orangeFade {
  background: #b1640033;
  color: #b16400;
  border-color: #b16400;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-title {
    font-size: 28px;
  }
}
/* ===== TECH SECTION ANIMATION ===== */

.tech-section {
  opacity: 0;
}

.tech-section.tech-visible {
  opacity: 1;
}

/* Header text */
.tech-small-title,
.tech-title,
.tech-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* Cards */
.tech-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* ===== HEADER FIRST ===== */

.tech-visible .tech-small-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.tech-visible .tech-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.tech-visible .tech-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* ===== CARDS AFTER HEADER ===== */

.tech-visible .tech-card:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}
.tech-visible .tech-card:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}
.tech-visible .tech-card:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}
.tech-visible .tech-card:nth-of-type(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.35s;
}
.tech-visible .tech-card:nth-of-type(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}
.tech-visible .tech-card:nth-of-type(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.65s;
}

/* -------------industry leaders---------- */
.industrial-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.industrial-small-title {
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
}

.industrial-title {
  font-size: 36px;
  font-weight: 500;
  margin: 12px 0;
}

.industrial-subtitle {
  margin: 0 auto;
  color: #6b7280;
}
.testimonial-carousel .owl-stage {
  display: flex;
  padding: 35px 0;
}

.testimonial-card {
  background: #2563eb;
  color: #fff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: visible !important;
}

.quote-icon {
  position: absolute;
  top: -30px;
  left: 24px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 20px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.testimonial-footer h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-footer span {
  font-size: 12px;
  opacity: 0.85;
}
.testimonial-carousel .owl-stage-outer {
  overflow-y: visible !important;
}

.stars i {
  color: #facc15;
  font-size: 14px;
  margin-left: 2px;
}

.contact-link-section {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.contact-header {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}
.contact-links {
  color: #dbeafe !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.contact-links:hover {
  color: #fff !important;
}
.bi-arrow-right-short {
  color: #fff !important;
}
/* ---------contact-section--------- */
.contact-section {
  position: relative;
  padding: 80px 0;
  background-image: url("../images/contact/background.svg");
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: left center;
  overflow: hidden;
}

/* Blue overlay above SVG */
.contact-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #155dfc 0%, #193cb8 100%);
  opacity: 0.9;
  z-index: 1;
}

/* Bring content above overlay */
.contact-section .container {
  z-index: 2;
}

/* Form card */
.form-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-card input,
.form-card textarea {
  border-radius: 8px;
}
.form-card input {
  min-height: 49px;
  max-height: 50px;
}
.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #10182880;
}
/* ===== CONTACT SECTION ANIMATION ===== */

.contact-section {
  overflow: hidden;
}

/* Initial hidden */
.contact-left,
.contact-right {
  opacity: 0;
}

/* Left heading & text */
.contact-left h2,
.contact-left p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Contact items */
.contact-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Form */
.form-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

/* ===== ACTIVE ===== */

.contact-visible .contact-left {
  opacity: 1;
}

/* Heading */
.contact-visible .contact-left h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Paragraph */
.contact-visible .contact-left p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Email, Phone, Location */
.contact-visible .contact-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.contact-visible .contact-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.contact-visible .contact-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* Form last */
.contact-visible .contact-right {
  opacity: 1;
}

.contact-visible .form-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

/* -----footer section--------- */
.footer-section {
  background: #101828;
  color: #cfd6e4;
  padding: 70px 0 30px;
  overflow: hidden;
}

/* ===== Decorative Circles ===== */
.footer-circles {
  position: absolute;
  right: -190px;
  bottom: 10px;
  width: 341px;
  height: 341px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.footer-circles .circle {
  position: absolute;
  border-radius: 50%;
}

/* OUTER RING */
.outer-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #193dba;
}

/* MIDDLE RING */
.middle-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #101828;
}

.inner-circle {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* INNER HALF CIRCLE (GREY) */
.inner-half {
  width: 130px;
  height: 260px;
  background-color: #6b7280; /* grey */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.inner-half-second {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid transparent;
  position: absolute;
  overflow: hidden;
  left: 30%;
  top: 15%;
  background-color: #101828;
  z-index: 2;
}

/* Content above circles */
.footer-section .container {
  position: relative;
  z-index: 2;
}

/* ===== Footer content ===== */
.footer-logo {
  max-width: 160px;
}

.footer-desc {
  max-width: 380px;
  font-size: 14px;
  opacity: 0.85;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #1e5bff;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
}

.footer-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}
.footer-links-grid {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 12px;
  column-gap: 40px;
}

.footer-links-grid li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links-grid li a:hover {
  color: #ffffff;
}

.footer-tagline {
  font-size: 13px;
  opacity: 0.7;
}

.footer-divider {
  margin: 30px 0 15px;
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-copy {
  font-size: 13px;
  opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .footer-circles {
    opacity: 0.4;
    right: -220px;
  }
}
@media (max-width: 768px) {
  .footer-circles {
    display: none;
  }

  .middle-circle {
    width: 190px;
    height: 190px;
  }

  .inner-half {
    width: 95px;
    height: 190px;
    border-radius: 95px 0 0 95px;
  }
}
