/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Geologica", sans-serif;
  background: #0e0d0d00;
  color: rgb(248, 245, 245);
  top: 0 !important;
}
/* Full-page background image */
body {
  background: url('/assets/images/background-main.jpg') center/cover no-repeat fixed;
  background-size: cover; /* Ensures full coverage */
  background-attachment: fixed; /* Keeps the image in place when scrolling */
  background-position: center;
  margin: 0;
  padding: 0;
}
body > .skiptranslate {
  display: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --dark-grey: #333333;
  --medium-grey: #524f4f;
  --light-grey: #353333;
  --ash: #141414;
  --primary-color: #aabee7;
  --white: rgb(245, 240, 240);
  --border: 1px solid var(--light-grey);
  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(107, 105, 105, 0.08) 0px 0px 0px 1px;
}

body {
  font-family: inherit;
  background-color: var(--white);
  color: var(--dark-grey);
  letter-spacing: -0.4px;
}

ul {
  list-style: none;
}

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

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
}

.btn {
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
}

.icon {
  padding: 0.5rem;
  background-color: var(--light-grey);
  border-radius: 10px;
  display: inline-block;
  height: 40px; 
  vertical-align: middle;

}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1rem; 
  font-weight: 600;
  color: var(--dark-grey);
  line-height: 1; 
  margin: 0; 
  display: inline-block
}

#nav-menu {
  border-bottom: var(--border);
  background-color: white
}

.container {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  column-gap: 2rem;
  height: 90px; 
  padding: 1.2rem 3rem;
}

.menu {
  position: relative;
  background: var(--white);
}

.menu-bar li:first-child .dropdown {
  flex-direction: initial;
  min-width: 280px;

}

.menu-bar li:nth-child(n + 2) ul:nth-child(1) {
  border-bottom: var(--border);
}

.menu-bar .dropdown-link-title {
  font-weight: 600;
}

.menu-bar .nav-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.6px;
  padding: 0.3rem;
  min-width: 60px;
  margin: 0 0.6rem;
}

.menu-bar .nav-link:hover,
.dropdown-link:hover {
  color: var(--primary-color);
}

.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container .search {
  display: flex;
  align-items: center;
}

.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 36px;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateX(-5px);
  transition: 0.1s ease-in-out;
  box-shadow: var(--shadow);
}

.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateX(5px);
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  font-size: 0.95rem;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}

.dropdown-link {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 7px;
  transition: 0.1s ease-in-out;
}

.dropdown-link p {
  font-size: 0.8rem;
  color: var(--medium-grey);
}

.right-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.right-container .search {
  position: relative;
}

.right-container img {
  border-radius: 80%;
}

.search input {
  background-color: var(--ash);
  border: none;
  border-radius: 6px;
  padding: 0.7rem;
  padding-left: 2.4rem;
  font-size: 16px;
  width: 100%;
  border: var(--border);
}

.search .bx-search {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 1.3rem;
  transform: translateY(-50%);
  opacity: 0.6;
}

#hamburger {
  display: none;
  padding: 0.1rem;
  margin-left: 1rem;
  font-size: 1.9rem;
}

@media (max-width: 1100px) {
  #hamburger {
    display: block;
  }

  .container {
    padding: 1.2rem;
  }

  .menu {
    display: none;
    position: absolute;
    top: 87px;
    left: 0;
    min-height: 100vh;
    width: 100vw;
  }

  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }

  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .menu.show,
  .dropdown.active {
    display: block;
  }

  .dropdown ul {
    padding-left: 0.3rem;
  }

  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }

  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
  }

  .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }

  .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }
}

@media (max-width: 600px) {
  .right-container {
    display: none;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: linear-gradient(
      300deg,
      rgba(82, 11, 82, 0.97),
      rgba(14, 16, 124, 0.97)
    );
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(255, 94, 20, 0.801);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #ff5e14;
    border: 1px solid #ff5e14;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .header .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .header.scrolled .mobile-nav-show {
    color: rgba(0, 0, 0, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(109, 72, 2, 0.8);
    z-index: 9996;
  }
}
/*--------------------------------------------------------------
# Hero section
--------------------------------------------------------------*/
/* Hero Section - Retains Original Design */
.hero {
  position: relative;
  background: linear-gradient(300deg, rgba(230, 158, 66, 0.97), rgba(14, 16, 124, 0.97));
  color: rgb(235, 225, 225);
  padding: 100px 5%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
  animation: fadeInUp 1.5s ease-out;
}

/* Hero Title Styling */
.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem; /* Increased font size for more emphasis */
  font-weight: bold;
  color: #ffdb99;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  animation: glow 1.5s infinite alternate;
  margin-bottom: 20px; /* Added spacing below */
}

/* Highlighted Part of Title */
.hero-title span {
  background: linear-gradient(90deg, #ff5e14, #ffdb99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.5rem; /* Adjusted to stand out even more */
  font-weight: bold;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffdb99;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px; /* Added spacing for visual flow */
}

/* Hero Description */
.hero-description {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-top: 20px;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px; /* Adds a space between description and other elements */
}

/* Highlighted Words in Description */
.hero-description .highlight {
  color: #ffdb99;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Glow Animation for Title */
@keyframes glow {
  0% {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
  }
  100% {
    text-shadow: 0 0 16px rgba(255, 165, 0, 1);
  }
}

/* Cards Section - Same Hero Styling */
.hero-card {
  background: linear-gradient(300deg, rgba(230, 158, 66, 0.97), rgba(14, 16, 124, 0.97)); 
  color: rgb(245, 240, 240);
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  width: 100%;
  margin-top: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.hero-card:hover {
  transform: scale(1.05);
}

/* Headings in Cards */
.hero-card h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffdb99;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

/* Paragraph Styling */
.hero-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px; /* Ensures proper spacing */
}

/* List in Cards */
.hero-card ol {
  counter-reset: tutorial-counter;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.hero-card li {
  counter-increment: tutorial-counter;
  position: relative;
  padding: 12px 20px 12px 50px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.87);
}

/* List Number Styling */
.hero-card li::before {
  content: counter(tutorial-counter);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: rgb(56, 54, 54);
  border-radius: 50%;
  background: #ffdb99;
}

/* Image Styling */
.hero-card img {
  width: 100%;
  border-radius: 30px;
  margin-top: 20px; /* Adds space between text and image */
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Flexbox Layout for Stats Counter and Interactive Features */
.hero .stats-interactive-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Ensures elements adjust well on smaller screens */
}

/* Stats Section Styling */
.stats-counter {
  background: rgba(0, 0, 0, 0.6);
  color: #ffdb99;
  padding: 20px;
  border-radius: 12px;
  width: 45%;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  margin-bottom: 20px; /* Space between stats */
}

.stats-counter:hover {
  transform: scale(1.05);
}

/* Interactive Feature Styling */
.interactive-feature {
  background: rgba(0, 0, 0, 0.6);
  color: #ffdb99;
  padding: 20px;
  border-radius: 12px;
  width: 45%;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  margin-bottom: 20px; /* Space between interactive elements */
}

.interactive-feature:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero .stats-interactive-container {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-counter, .interactive-feature {
    width: 80%;
    margin-bottom: 20px;
  }
  
  .hero-title {
    font-size: 2.5rem; /* Adjusted title size on smaller screens */
  }
  
  .hero-subtitle {
    font-size: 1.8rem; /* Adjusted subtitle size for better readability */
  }
  
  .hero-description {
    font-size: 1.2rem; /* Adjusted description font size */
  }
}




/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* Services Section */
.services {
  padding: 50px 0;
  color: #f0e6e6;
  margin-top: 10vh; /* Pushes the section lower by half a page height */
}

.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted grid for better spacing */
  gap: 20px;
  margin-top: 10vh; /* Pushes the section lower by half a page height */
  margin-bottom: 20vh; /* Adds bottom margin to push the card below lower */
}

.service-section {
  background-color: #e48181;
  color: #e99f9f;
  padding: 2rem 0; /* Consistent padding for top and bottom */
}

.service a {
  color: #e78c14;
  display: block;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service a:hover {
  color: #f2a900; /* Slightly lighter yellow on hover */
}

.service-item {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px); /* Slight lift effect on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Increased shadow on hover */
}

.service-item h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
}

.service-item p {
  font-size: 1rem;
  color: #1b1a1a;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services {
    padding: 30px 0;
  }

  .service-item {
    padding: 15px;
  }

  .service-item h3 {
    font-size: 1.25rem;
  }

  .service-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .service-item {
    padding: 10px;
  }

  .service-item h3 {
    font-size: 1.1rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/* Contact Section */
.contact-us {
  padding: 40px 0; /* Adjusted padding for more balanced space */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-footer-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px; /* Space between contact and footer cards */
  padding: 0 5%; /* Keeps content aligned with page */
  flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
}

/* Contact Card */
.contact-card {
  width: calc(50% - 10px);
  background-color: #c09c66;
  padding: 20px;
  border: 1px solid #f76262;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Added shadow for better separation */
}

.contact-info {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 5px;
}

.contact-form {
  margin-top: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Form Fields */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  background: #fff;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* Submit Button */
.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
  transform: translateY(-2px); /* Added slight lift on hover */
}

/* Footer Card */
.footer-card {
  width: calc(50% - 10px);
  background: #2d2d2d;
  color: white;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Tagline (Fade-in Effect) */
.footer-tagline p {
  font-size: 1.2em;
  font-weight: bold;
  color: #ff5e14;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

/* Social Links (Hover Animation) */
.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.social-links a {
  color: white;
  font-size: 1.5em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #ff5e14;
  transform: scale(1.2);
}

/* Footer Links (Glowing Effect on Hover) */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 5px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.footer-links ul li a:hover {
  color: #ff5e14;
  text-shadow: 0 0 10px #ff5e14;
}

/* Copyright Section */
.footer-copyright {
  font-size: 0.9em;
  color: #ccc;
  margin-top: 10px;
  opacity: 0;
  animation: slideUp 1s forwards 1s;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slide-up Animation */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-card {
      width: 100%;
      margin-bottom: 20px; /* Adds spacing between footer cards */
  }

  .contact-card, 
  .footer-card {
      width: 100%;
      margin-bottom: 20px; /* Space between contact and footer cards */
  }

  .contact-footer-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form input, 
  .contact-form textarea {
    padding: 12px; /* Increased padding for better touch usability */
  }

  .contact-form button {
    padding: 15px; /* Larger button for better tap accuracy */
  }
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
  padding-top: 60px; /* Adjusts modal position */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
  transition: transform 0.3s ease-out; /* Smooth transition when modal is opened */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: color 0.3s ease; /* Smooth color transition on hover/focus */
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Added gap for better spacing between form elements */
}

.modal-content form label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.modal-content form input {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.modal-content form button {
  padding: 12px;
  background-color: #0325e7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.modal-content form button:hover {
  background-color: #0021b5;
}

.modal-content p {
  margin-top: 15px;
  text-align: center;
}

.highlight-link {
  color: #2051d8;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.highlight-link:hover {
  color: #0012b5;
  text-decoration: underline;
}

/* Modal open/close transitions */
.modal.show {
  display: block;
  opacity: 1; /* Ensure modal is fully visible */
  visibility: visible; /* Ensures modal is visible when shown */
}

.modal.hide {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 90%; /* Increase width for better mobile view */
  }

  .close {
    font-size: 24px; /* Slightly smaller close button on mobile */
  }
}

/* Table Card - Modern Container */
.table-card {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fefefe;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

/* Title */
.excel-table h2 {
  font-size: 1.8rem;
  color: #131212;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* Table Styles */
.excel-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Table Headings */
.excel-table th {
  background: linear-gradient(to right, #ff9b44, #ff5e14);
  color: white;
  font-weight: bold;
  padding: 12px;
  text-transform: uppercase;
}

/* Table Cells */
.excel-table th, .excel-table td {
  border: 1px solid #ffb84d;
  padding: 12px;
  text-align: left;
  font-size: 1rem;
}

/* Hover Effect for Table Rows */
.excel-table tbody tr:hover {
  background-color: rgba(255, 153, 68, 0.2);
  transition: 0.3s ease;
}

/* Alternating Row Colors */
.excel-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Data Source Styling */
.data-source {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}

.data-source a {
  color: #ff5e14;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.data-source a:hover {
  color: #ff9b44;
  text-shadow: 0 0 10px rgba(255, 153, 68, 0.6);
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .table-card {
      padding: 15px;
      margin-top: 30vh; /* Pushes the section lower by half a page height */
  }

  .excel-table h2 {
      font-size: 1.5rem;
  }

  .excel-table th, .excel-table td {
      padding: 10px;
      font-size: 0.9rem;
  }
}
/* Ensure body and html cover full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Background image applied to body */
/* Apply background image to the entire page */
body {
  background-image: url('/assets/images/background-image.jpeg'); /* Path to your image */
  background-size: cover; /* Ensure full coverage */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps image in place when scrolling */
  z-index: -1; /* Moves it behind the content */
}

/* Ensure all content stays above the background */
.hero, .hero-card, .services section {
  position: relative; /* Keeps them above the background */
  z-index: 2;
  background: rgba(0, 0, 0, 0.6); /* Optional: Adds transparency for readability */
  color: white;
  padding: 20px;
  border-radius: 10px;
}

/* Exclude the navbar from the background */
.navbar {
  position: relative;
  z-index: 100; /* Ensures navbar stays above everything */
  background: white; /* Solid white background */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Adds subtle shadow */
}

/* Ensure navbar text is visible */
.navbar a {
  color: black; /* Adjust based on your theme */
  font-weight: bold;
}
.flip-card {
  background-color: transparent;
  width: 250px;
  height: 150px;
  perspective: 1000px;
  margin: 10px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-card-front {
  background-color: #2980b9;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-card-back {
  background-color: #f1c40f;
  color: black;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s;
  z-index: 999;
}
.cta-float:hover {
  background-color: #0056b3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-text, .hero-card, .service-item, .stat {
  animation: fadeInUp 1s ease-out both;
}
.partner-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.partner-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-text {
  flex: 1;
  min-width: 250px;
}

.features-flip {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  min-width: 250px;
}

.partner-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 250px;
}

.stat h3 {
  font-size: 28px;
  color: #007bff;
  margin: 0;
}
.stat p {
  margin: 0;
}
