body {
  background-color: #181a20;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Particles Container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#particles-js {
  width: 100%;
  height: 100vh;
  position: fixed;
}

/* Text Gradient Effect */
.text-gradient {
  background: linear-gradient(90deg, #2970ff, #4ea8ff, #8cc5ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease infinite;
}

@keyframes gradientText {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

/* Fade In/Out Animation */
.fade-in-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.fade-in-visible {
  opacity: 1;
  transform: none;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 30px !important;
  margin-bottom: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
  position: relative;
}

/* Hero Content */
.hero-content {
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.hero-text {
  position: relative;
  overflow: hidden;
}

.hero-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ea8ff, transparent);
  animation: glow-line 4s infinite ease-in-out;
}

@keyframes glow-line {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  min-width: 320px;
  max-width: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(41, 112, 255, 0.12);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image-wrapper:hover {
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
}

/* Hero Image Glow */
.hero-image-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background-image: radial-gradient(
    circle,
    rgba(41, 112, 255, 0.3) 0%,
    rgba(41, 112, 255, 0) 70%
  );
  z-index: -1;
  opacity: 0.7;
  animation: pulse-glow 6s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 0 16px 2px #2970ff80, 0 2px 8px #2970ff40;
  transition: filter 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  filter: brightness(1.1) contrast(1.05);
}

/* Hero Image Overlay */
.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(41, 112, 255, 0.12) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
  border-radius: 16px;
  pointer-events: none;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.hero-btn-primary {
  background: linear-gradient(90deg, #2970ff 0%, #4ea8ff 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
  background: linear-gradient(90deg, #2970ff 0%, #2970ff 100%);
  box-shadow: 0 0 16px 2px #2970ff80, 0 2px 8px #2970ff40;
  filter: brightness(1.08);
  outline: none;
  transform: translateY(-2px);
}

.hero-btn-primary:active {
  transform: translateY(1px);
}

.hero-btn-primary svg {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-btn-secondary {
  background: transparent;
  color: #4ea8ff;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: 1.5px solid #4ea8ff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 112, 255, 0.08);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.hero-btn-secondary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus {
  color: #4ea8ff;
  box-shadow: 0 0 12px 1px #2970ff40;
  outline: none;
  transform: translateY(-2px);
}

.hero-btn-secondary:active {
  transform: translateY(1px);
}

/* Accreditation Row */
.accreditation-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 64px auto 0 auto;
  padding: 16px 32px;
  background: rgba(41, 112, 255, 0.04);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(41, 112, 255, 0.08);
  position: relative;
  overflow: hidden;
  max-width: 80%;
}

.accreditation-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(41, 112, 255, 0.05) 15%,
    rgba(41, 112, 255, 0.05) 85%,
    transparent 100%
  );
  z-index: -1;
  animation: shine 3s infinite ease-in-out;
}

@keyframes shine {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.accreditation-row span {
  font-size: 1.15rem;
  color: #4ea8ff;
  font-weight: 500;
}

.accreditation-image {
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(41, 112, 255, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.accreditation-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(41, 112, 255, 0.5));
}

/* Services Section */
.services-section {
  text-align: center;
  margin: 80px auto 0 auto;
  max-width: 700px;
  padding: 0 20px;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4ea8ff;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #4ea8ff;
}

.section-title::before {
  left: -40px;
}

.section-title::after {
  right: -40px;
}

.section-subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #2970ff 0%, #4ea8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #bfc9da;
}

/* Services Cards */
.services-cards-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 56px auto 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.services-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "card1 card1"
    "card2 card3";
  gap: 32px 32px;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
  align-items: stretch;
}

.service-card {
  background: rgba(41, 112, 255, 0.03);
  border: 1px solid rgba(41, 112, 255, 0.4);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(41, 112, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(41, 112, 255, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card[data-index="0"] {
  grid-area: card1;
  width: 100%;
}

.service-card[data-index="1"] {
  grid-area: card2;
  width: 95%;
}

.service-card[data-index="2"] {
  grid-area: card3;
  width: 95%;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(41, 112, 255, 0.25),
    0 2px 16px rgba(41, 112, 255, 0.15);
  transform: translateY(-8px) scale(1.025);
  border-color: #4ea8ff;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  margin-bottom: 20px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-icon {
  transform: translateY(-5px);
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #b6eaff;
  transition: color 0.3s ease;
}

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

.service-card p {
  text-align: center;
  color: #bfc9da;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-hover {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card-hover span {
  font-size: 1rem;
  font-weight: 600;
  color: #4ea8ff;
}

.service-card-hover svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-hover {
  opacity: 1;
}

.service-card:hover .service-card-hover svg {
  transform: translateX(4px);
}

/* Scroll Explore Section */
.scroll-explore-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 32px 0;
  margin: 0 auto;
  width: 100%;
}

.scroll-explore-text {
  color: #bfc9da;
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-align: center;
  transition: color 0.3s ease;
}

.scroll-explore-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-explore-arrow:hover {
  transform: scale(1.1);
}

.scroll-explore-arrow:hover + .scroll-explore-text {
  color: #4ea8ff;
}

.scroll-explore-arrow svg {
  display: block;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 8px rgba(41, 112, 255, 0.2));
  transition: filter 0.3s ease;
  animation: bounce-arrow 1.2s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes bounce-arrow {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(4px);
  }
  40% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(8px);
  }
  80% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}

.scroll-explore-arrow:hover svg {
  filter: drop-shadow(0 4px 16px rgba(41, 112, 255, 0.4));
}

/* Enquiry and Request Form Section */
.enquiry-request-section {
  background: transparent;
  width: 100%;
  padding: 0 0 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.enquiry-request-section.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.enquiry-request-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  background: rgba(24, 26, 32, 0.8);
  border: 1px solid rgba(41, 112, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(41, 112, 255, 0.1);
  padding: 40px 24px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.enquiry-request-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(41, 112, 255, 0.08),
    transparent 70%
  );
  opacity: 0.5;
  z-index: -1;
  animation: rotate 20s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.enquiry-request-info {
  flex: 1.1;
  color: #bfc9da;
  font-size: 1.08rem;
  gap: 1.5em;
  min-width: 260px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.enquiry-request-info h2 {
  color: #b6eaff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}

.enquiry-request-info h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #2970ff;
  border-radius: 2px;
}

.enquiry-request-info p {
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item svg {
  color: #4ea8ff;
  min-width: 24px;
  margin-top: 3px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.enquiry-request-info strong {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.enquiry-request-info a {
  color: #4ea8ff;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
  word-break: break-all;
}

.enquiry-request-info a:hover {
  color: #6eb8ff;
  text-decoration: underline;
}

/* Form Styling */
.enquiry-request-form {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
  max-width: 440px;
}

/* Floating Label Form Controls */
.form-floating {
  position: relative;
}

.form-floating input,
.form-floating textarea {
  background: rgba(24, 26, 32, 0.6);
  color: #e6eaf3;
  border: 1px solid rgba(41, 112, 255, 0.4);
  border-radius: 8px;
  padding: 16px 12px 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  outline: none;
  resize: none;
  font-family: "Poppins", sans-serif;
}

.form-floating label {
  position: absolute;
  top: 14px;
  left: 12px;
  color: #bfc9da;
  font-size: 1rem;
  transition: all 0.2s ease;
  pointer-events: none;
}

.form-floating input:focus,
.form-floating textarea:focus,
.form-floating input:not(:placeholder-shown),
.form-floating textarea:not(:placeholder-shown) {
  border-color: #4ea8ff;
  padding-top: 20px;
  padding-bottom: 4px;
  box-shadow: 0 0 0 2px rgba(41, 112, 255, 0.2);
}

.form-floating input:focus + label,
.form-floating textarea:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:not(:placeholder-shown) + label {
  top: 4px;
  left: 12px;
  font-size: 0.75rem;
  color: #4ea8ff;
}

.form-floating.textarea {
  height: auto;
}

.form-floating textarea {
  min-height: 120px;
}

.enquiry-request-row {
  display: flex;
  gap: 16px;
}

.enquiry-request-row .form-floating {
  flex: 1;
}

.enquiry-request-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.enquiry-request-submit-row .hero-btn-primary {
  font-size: 1rem;
  padding: 10px 24px;
}

/* Thank You Overlay */
.enquiry-request-thankyou-overlay {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%) translateY(100px);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enquiry-request-thankyou-overlay.visible {
  transform: translateX(-50%) translateY(0);
}

.enquiry-request-thankyou-message {
  color: #b6eaff;
  font-size: 1.08rem;
  font-weight: 600;
  background: rgba(24, 26, 32, 0.9);
  border-radius: 12px;
  padding: 16px 32px;
  box-shadow: 0 4px 24px rgba(41, 112, 255, 0.2);
  text-align: center;
  min-width: 320px;
  max-width: 90vw;
  pointer-events: auto;
  border: 1.5px solid #2970ff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  color: #4ea8ff;
  min-width: 24px;
  animation: check-animation 1s 0.2s ease forwards;
  opacity: 0;
  transform: scale(0.5);
}

@keyframes check-animation {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Typography Enhancements */
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2970ff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #b6eaff;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #b6eaff;
  margin-top: 0;
}

p {
  color: #e6eaf3;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .services-cards-container {
    grid-template-areas:
      "card1 card1"
      "card2 card3";
  }

  .service-card[data-index="0"],
  .service-card[data-index="1"],
  .service-card[data-index="2"] {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .services-cards-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "card1"
      "card2"
      "card3";
  }

  .enquiry-request-container {
    flex-direction: column;
    align-items: center;
  }

  .enquiry-request-info,
  .enquiry-request-form {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .enquiry-request-row {
    flex-direction: column;
    gap: 16px;
  }
}
