:root {
  --primary-color: #00102e;
  --secondary-color: #2ac6a7;
  --white: #ffffff;
  --text-gray: #828283;
  --dark-blue: #00102e;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

.header-content {
  display: flex;
  justify-content: center; /* Centers text in the middle of the screen */
  gap: 20px; /* Space between logo and text */
  max-width: 100%;
}

.logo {
  width: 300px; /* Increase width */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain;
  position: absolute;
  top: -170px; /* Moves logo slightly upward */
  left: 100px; /* Keeps it far left */
  padding-left: 50px; /* Extra spacing for positioning */
}

.text-section {
  flex: 1; /* Takes up remaining space */
  text-align: right; /* Aligns text to the right */
  margin-left: auto; /* Pushes text to the right side */
  right: 16%;
}

.masthead-heading {
  font-size: 4rem; /* Wider text */
  font-weight: 500;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  line-height: 1; /* No extra line spacing */
}

.subheading {
  font-size: 1.7rem; /* Slightly bigger for visibility */
  font-weight: 400;
  color: #f0f0f0;
  font-family: "Open Sans", sans-serif;
  line-height: 1; /* No extra line spacing */
  max-width: 100%;
  padding-bottom: 20px;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--text-gray);
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-blue);
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation Styles */
.navbar {
  background-color: #00102e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.navbar.scroll {
  padding: 0.5rem 0%;
  background-color: rgba(0, 16, 46, 0.95);
}

.navbar-brand img {
  height: 70px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: -20px;
  font-size: small;
}

.nav-links li a {
  color: white;
  font-weight: 200;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown */

#services {
  padding: 0; /* Removes top padding */
}

.service-section {
  padding: 0; /* Removes top padding */
  color: #00102e;
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Ensures text is centered */
  width: 100%; /* Ensures it takes full width */
  min-height: 100vh; /* Ensures full viewport height */
  margin-top: 0%; /* Remove top spacing */
  padding-bottom: 0%;

  /* Border and shadow */
  border: 2px solid #ddd; /* Light grey border */
  border-radius: 10px; /* Optional: rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
  background: #fff; /* Optional: White background */
  max-width: 90%; /* Keeps it from stretching too much */
  margin: auto; /* Centers it */
}

.digital-section {
  background-color: rgba(105, 105, 105, 0.171);
  padding-bottom: 3rem !important;
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Ensures text is centered */
  width: 100%; /* Ensures it spans the full width */
}

/* Partners Section - Professional Styling */
.partners-section {
  padding: 80px 0;
  background-color: #f8fafc;
  position: relative;
  font-family: "Poppins", Arial, sans-serif;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners-header {
  margin-bottom: 50px;
  text-align: center;
}

.partners-header h1 {
  color: #00102e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.partners-header h1:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #2ac8a8;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.slide-track {
  display: flex;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: calc(250px * 8); /* Adjust based on number of slides */
}

.slide {
  width: 200px;
  height: 100px;
  margin: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.slide:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 24)); /* Half of total width */
  }
}

/* Portfolio Item Container */
.portfolio-item {
  color: black; /* Black text */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-radius: 0; /* Sharp edges */
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
  padding: 30px 15px; /* Balanced padding */
  text-align: center;
  height: 400px; /* Adjusted height */
  border: 1px solid #ddd; /* Border to define sharp edges */
  justify-content: space-between; /* Ensures even spacing */
}

/* Hover Effect for Portfolio Item */
.portfolio-item:hover {
  background-color: #2ac8a82f; /* Slight grey background on hover */
}

/* Icon Container */
.icon-container {
  width: 90px; /* Ensures uniform size */
  height: 90px;
  background: white;
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem; /* Larger icon */
  color: black; /* Black icon color */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px; /* Consistent spacing */
}

/* Portfolio Caption */
.portfolio-caption h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: black; /* Black text */
}

.portfolio-caption p {
  font-size: 1rem;
  color: black; /* Black text */
}

/* Hover Effects */
.portfolio-item:hover .icon-container {
  background: #2ac8a8;
  color: white;
  transform: scale(1.1);
}

.portfolio-caption {
  position: relative;
  z-index: 2;
}

.portfolio-caption h2 {
  color: #00102e;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.portfolio-caption h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #2ac8a8;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-caption h2:after {
  width: 60px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
.team-page-section {
  position: relative;
  background-image: url(./assets/img/team/wall.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0; /* Adjusted padding */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meet-team {
  text-align: center;
  font-size: 100pt;
  font-weight: 800;
  color: white;
  -webkit-text-stroke: 2px black;
  margin-bottom: 20px;
}

.meet-team-subtitle {
  text-align: center;
  font-size: 18pt;
  font-weight: bold;
  color: white;
  -webkit-text-stroke: 1px black;
  margin-bottom: 30px;
}

/* Team Card Styling */
.team-card-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.team-card {
  background: rgba(255, 255, 255, 0.151);
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  max-width: 400px;
  text-align: center;
}

.team-card:hover {
  color: rgba(156, 219, 198, 0.541);
  transform: translateY(-5px);
}

/* Role & Name Styling */
.team-role {
  font-size: 18pt;
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
}

.team-name {
  font-size: 20pt;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

/* Image Styling */
.teamicon-container img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
  margin: 0 auto 15px;
  display: block;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* Image Styling */
.icon-container img {
  width: 120px; /* Ensures uniform size */
  height: 120px;
  border-radius: 50%; /* Makes images circular */
  object-fit: cover;
  border: 3px solid #ddd;
}

.help-container {
  display: flex;
  align-items: center; /* Ensure both columns stretch equally */
  justify-content: space-between; /* Distribute space evenly between columns */
  gap: 10px; /* Space between columns */
  margin-top: 0px;
  padding: 10px 30px;
}

.help-left {
  flex: 1; /* Take half the width */
  display: flex;

  align-items: center; /* Center image vertically */
}

.help-right {
  color: #000000;
  font-size: 12pt;
  flex: 1; /* Take half the width */
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between rows */
}

.small-image {
  width: 60px; /* Small icon size */
  height: 60px;
  object-fit: cover;
  border-radius: 5px; /* Optional: Soft edges for icons */
}

.about-section {
  font-family: "Poppins", Arial, sans-serif;
  padding: 20px 0;
  background-color: #f6f6f6;
}

.about-container {
  display: flex;
  align-items: stretch; /* Changed from center to stretch for equal height */
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Left Column Styling */
.about-left {
  flex: 1;
  background: white;
  padding: 40px; /* Reduced from 100px */
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-left h1 {
  color: #000000;
  font-size: 24pt;
  margin-bottom: 10px;
}

.about-left p {
  color: #828283;
  font-size: 14pt;
}

/* Right Column Styling */
.about-right {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden; /* Ensures the image stays within bounds */
}

.image-container {
  width: 100%;
  height: 100%;
}

.about-right img {
  width: 150%;
  height: 150%;
  object-fit: cover; /* Ensures the image covers the area without distorting */
  display: block;
}

/* Overlay Text on Image */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  width: 100%;
  z-index: 2;
}

.overlay-text h1 {
  font-size: 30pt;
  margin: 0;
}

.overlay-text h2 {
  color: rgb(71, 71, 71);
  font-size: 14pt; /* Increased from 07pt */
  margin: 5px 0 0 0;
}

/* Image Styling */
.team-social-icon-container img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
  margin-bottom: 10px; /* Adds spacing between the image and icons */
}

/* Social Icons Styling */
.team-social-social-icons {
  display: flex;
  justify-content: center; /* Center horizontally */
  gap: 50%; /* Space between icons */
  margin-top: 10px;
}

.team-social-icons a:hover {
  font-size: 30pt;
  color: gray; /* Changes color on hover */
}

.image-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically (if needed) */
  width: 100%;
  text-align: center;
}

.image-container img {
  max-width: 100%; /* Ensures it stays responsive */
  height: auto;
  display: block; /* Removes extra padding from inline elements */
}

/* Floating button styles */
/* Scroll to Top Button */
#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-image: url("../assets/img/map-image.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-container {
  width: 100%;
  max-width: 800px;
  background-color: rgba(0, 16, 46, 0.8);
  padding: 40px;
  border-radius: 8px;
}

.text-center {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 1rem;
  color: #ced4da;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-col {
  flex: 1;
}

.form-control {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

textarea.form-control {
  min-height: 150px;
}

.btn-submit {
  background-color: #0089ff;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .partners-header h1 {
    font-size: 2rem;
  }

  .slide {
    width: 180px;
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }

  .slide {
    width: 150px;
    height: 80px;
    margin: 0 10px;
  }

  .slide img {
    max-height: 60px;
  }
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .masthead-heading {
    font-size: 2rem;
  }

  .icon-box-container {
    flex-direction: column;
    align-items: center;
  }

  .icon-box {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .partners-header h1 {
    font-size: 1.8rem;
  }

  .slide {
    width: 120px;
    height: 70px;
  }
  .masthead-heading {
    font-size: 1.7rem;
  }

  .subheading {
    font-size: 1rem;
  }

  .logo {
    max-width: 180px;
  }
}

/* General Styling for About Section */
/* About Section Styling */
#about {
  background-color: #ffffff;
  padding: 50px 0;
  position: relative;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-left {
  flex: 1;
  position: relative;
}

.about-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 16, 46, 0.1);
}

.about-right {
  flex: 1;
}

.about-right h1 {
  color: #00102e;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-right h2 {
  color: #2ac8a8;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-right p {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .about-right h1 {
    font-size: 2.2rem;
  }

  .about-right h2 {
    font-size: 1.5rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .portfolio-item {
    padding: 50px 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-item {
    margin-top: 50px;
    padding: 50px 20px;
  }

  .icon-container {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .portfolio-caption h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-container {
    padding: 30px 20px;
  }
}

/* Footer Styles */
footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
}

.service-list li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.service-list li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.subscription-form {
  display: flex;
  margin-top: 20px;
}

.subscription-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.subscription-form button {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.subscription-form button:hover {
  background-color: #249e8d;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #00102e;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-col {
  flex: 1;
  min-width: 100%;
  padding: 10px 0;
  text-align: center;
}

.footer-bottom-col p {
  margin: 0;
  padding: 0 15px;
}

/* Modal Overlay (Background) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-overlay.active {
  display: flex;
}

/* Newsletter Button Styles */
.newsletter-btn {
  background-color: #2ac6a7;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
  background-color: #1da58a;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.newsletter-btn:active {
  transform: translateY(0);
}

/* Full-Screen Modal Content */
#newsletterModal .modal-content {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background: #00102e;
  border-radius: 0;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Close Button Styling */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgb(233, 10, 10);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-modal:hover {
  transform: scale(1.2);
}

/* Iframe - Ensure it fits well */
.newsletter-iframe {
  width: 95%;
  height: 90%;
  border: none;
  border-radius: 8px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 20px;
}

.licensing-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 20px;
  padding: 0 20px;
}

<!-- /* Scroll to Top Button */
#scrollToTop {
  position: fixed;
  bottom: 30px; /* Position at the bottom */
  right: 30px; /* Position at the right */
  width: 50px;
  height: 50px;
  background-color: #2ac8a8; /* Button color */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  border-radius: 50%; /* Make it a circle */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  opacity: 0; /* Initially hidden */
  visibility: hidden;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}
-- > #scrollToTop:hover {
  background-color: #249e8d;
  transform: translateY(-3px);
}

/* ----------------------------------------------------------------------------------------------------------*/

/* =========================
FOOTER RESPONSIVE STYLES
========================= */

/* Navbar Styles */
/* Navbar Styles */
.nav-toggle {
  display: none; /* Hidden by default */
  font-size: 30px;
  cursor: pointer;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Hamburger menu and dropdown for all screen sizes */
.nav-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle-container {
    position: relative;
    display: inline-block;
  }

  .nav-toggle {
    display: block;
    padding: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #00102e;
    padding: 20px;
    width: 200px;
  }

  .nav-toggle-container:hover .nav-links {
    display: flex;
  }
}

/* Animation Css */

/* Animate on load */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spinIn {
  0% {
    opacity: 0;
    transform: rotate(-720deg) scale(0.3);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

/* Spin animation class */
.spin-in {
  opacity: 0;
  animation: spinIn 1s ease-out forwards;
}

/* Delays for staggered appearance */
.delay-1 {
  animation-delay: 1s;
}
.delay-2 {
  animation-delay: 3s;
}
.delay-3 {
  animation-delay: 5s;
}
.delay-4 {
  animation-delay: 8s;
}

/* Animate on load */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation utility classes */
.fade-in {
  animation: fadeInUp 1s ease forwards;
}

.zoom-in {
  animation: zoomIn 1.3s ease forwards;
}

.slide-down {
  animation: slideDown 1.2s ease forwards;
}

.pop-in {
  animation: popIn 1.4s ease forwards;
}

.icon-fade {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.icon-fade.delay-1 {
  animation-delay: 0.6s;
}
.icon-fade.delay-2 {
  animation-delay: 0.8s;
}
.icon-fade.delay-3 {
  animation-delay: 1s;
}

.icon-fade.delay-5 {
  animation-delay: 6s;
}

/* about animation */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Trigger animations */
.slide-left {
  animation: slideInLeft 1.2s ease-out forwards;
  opacity: 0;
}

.slide-right {
  animation: slideInRight 1.2s ease-out forwards;
  opacity: 0;
}

.slide-right {
  animation-delay: 1s;
}

@keyframes slideFromLeft {
  0% {
    transform: translateX(-100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideFromLeft 1.2s ease-out forwards;
  opacity: 0;
}

.slide-in-right {
  animation: slideFromRight 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s; /* Just a little delay for staggered entry */
}

/* Initial hidden states */
.hidden-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-in-out;
}

.hidden-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-in-out;
}

/* When in view */
.show-left {
  opacity: 1;
  transform: translateX(0);
}

.show-right {
  opacity: 1;
  transform: translateX(0);
}

/* Final state: In place and visible */
.slide-in-left.show {
  transform: translateX(0);
  opacity: 1;
}

.slide-in-right.show {
  transform: translateX(0);
  opacity: 1;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

/* digital section */

/* Base hidden state for animation */
.hidden-core {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 1s ease;
}

/* Animate in when visible */
.core-box.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Optional staggered delay */
.core-box:nth-child(1) {
  transition-delay: 0.2s;
}
.core-box:nth-child(2) {
  transition-delay: 0.4s;
}
.core-box:nth-child(3) {
  transition-delay: 0.6s;
}
.core-box:nth-child(4) {
  transition-delay: 0.8s;
}

/* Initial hidden state for team cards */
.hidden-team {
  opacity: 0;
  transform: translateY(50px) scale(0.85) rotateX(10deg);
  transition: all 1s ease;
  perspective: 1000px;
}

/* Animate in when visible */
.team-card.animate-team {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
}

/* Staggered delays */
.team-card:nth-child(1) {
  transition-delay: 0.2s;
}
.team-card:nth-child(2) {
  transition-delay: 0.4s;
}
.team-card:nth-child(3) {
  transition-delay: 0.6s;
}

.footer-column {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1.2s ease-out;
  will-change: opacity, transform;
}

/* When scrolled into view */
.footer-column.animate-footer {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Fade out again */
.footer-column.fade-out {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

/* Give each footer column a unique delay for fun staggered entrance */
.footer-column:nth-child(1) {
  transition-delay: 0.3s;
}
.footer-column:nth-child(2) {
  transition-delay: 0.6s;
}
.footer-column:nth-child(3) {
  transition-delay: 0.9s;
}
.footer-column:nth-child(4) {
  transition-delay: 1.2s;
}

/* Optional: Newsletter Button hover */
.newsletter-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.newsletter-btn:hover {
  background: #0056b3;
}
