@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 

/* Root Colors */
:root {
  --primary-dark: #013A33;
  --primary-light: #19777A;
  --neutral-light: #E0E0E0;
  --text-cream: #F3EDDF;
  --white: #FFFFFF;
  --neon-shadow: 0 0 20px color(rgba(0, 255, 170, 0.7)), 0 0 40px color(rgba(0, 255, 170, 0.4));
  --graph-green: #84B440;
  --graph-yellow: #DFDF44;
  --graph-text: #525252;
  --light-bg: #F5F5F5;
  --border-color: #E0E0E0;
}

/* Base Styling */
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2, h3, h5, h6, p, a, button, li {
  font-weight: 300;
}

h1, h4{
  font-weight: 300;
  font-family: "DM Serif Text", serif;
}

h1{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

h2{
  font-family: "DM Serif Text", serif;
  font-weight: 300;
}

/* NavBar */
.navbar {
  background-color: transparent;
  padding: 0;
  transition: all 0.3s ease;
  width: 100%;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem; /* Add horizontal padding */
}

.navbar-brand {
  display: flex;
  align-items: center;
  transform-origin: left center;
}

.navbar-brand img {
  height: 100px; /* Increased from 80px */
  margin-right: 40px;
  transform: scale(1.4); /* Scales the logo by 120% */
  transform-origin: left center;
  margin-top: -10px; /* Negative margin to adjust vertical position */
  margin-bottom: -10px; /* Negative margin to adjust vertical position */
  transition: all 0.3s ease;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; /* Center the nav links */
  width: 100%; /* Take full width */
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  margin: 0 25px; /* Spacing between links */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-dark);
}

.navbar.scrolled {
  background-color: rgba(46 46 46/ 30%) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0 0 0 0.1);
  border-bottom: 1px solid rgba(255 255 255/ 30%);
}

.navbar.scrolled .nav-link {
  color: #000000;
}

/* Mobile Navbar */
.navbar-mobile {
  display: none;
 
}

/* Glassmorphism effect when scrolled */
.navbar-mobile.scrolled {
  background-color: rgba(46, 46, 46/ 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0 0 0/ 10%);
  border-bottom: 1px solid rgba(255 255 255/ 20%);
}

/* Logo */
.logo_mobile {
  height: 10px;
  margin-left: 20px;
  transform: scale(1);
  transform-origin: left center;
  margin-top: -10px;
  margin-bottom: -10px;
  transition: all 0.3s ease;
}

/* Menu Icon */
.menu_icon {
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  margin-right: 20px;
  color: white !important;
  transition: color 0.3s ease;
}

  

/* Navbar Links Container */
.navbar_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.navbar_nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Individual Nav Links */
.nav_link {
  color: white;
  text-decoration: none;
  font-size: 20px;
  margin: 15px 0;
  text-align: center;
  transition: color 0.3s ease;
}

.nav_link:hover {
  color: #ddd;
}

/* Hide logo when menu is open */
.menu_open .logo_container {
  opacity: 0;
}

.mobile-navbar {
  display: none;
}

.mobile-navbar.show {
  display: flex;
}

.container-fluid {
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
}


.get-started-btn {
  background-color: #f8f9fa;
  color: #333;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: auto;
}

.get-started-btn:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

.glass {
  background: rgba(255 255 255/ 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid rgba(255 255 255/ 20%);
}

.get-started-btn {
  background-color: #f8f9fa;
  color: #333;
  border: none;
  border-radius: 5px;
  padding: 8px 16px; 
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: auto;
}

.get-started-btn:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

.glass {
  background: rgba(255 255 255/ 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid rgba(255 255 255/ 20%);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
  min-height: 100vh;
  background: radial-gradient(circle at center, #0f0f0f 0%, #030303 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  top: -10%;
  color: white;
  margin-top: 200px;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: lighter;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.1rem !important;
  color: #ddd;
  font-weight: 200;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-weight: normal;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-buttons .get-started {
  background: white;
  color: var(--primary-dark);
}

.cta-buttons .open-day button {
  background: transparent;
  color: white;
  border: 1px solid var(--primary-light);
}

.cta-buttons .learn-more {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cta-buttons .learn-more:hover {
  background: white;
  color: var(--primary-dark);
}

/* How It Works Section */
.how-it-works-section {
  position: relative;
  min-height: 100vh;
  padding: 6rem 6rem;
  color: white;
  display: flex;
  align-items: center;
}

.how-it-works-section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Left Content */
.left-content {
  flex: 1;
  max-width: 55%;
  margin-right: 50px;
}

.heading-container {
  margin-bottom: 2.5rem;
}

.how-it-works-heading {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.how-it-works-heading .subtitle {
  font-size: 1.25rem;
  font-weight: normal;
  margin-top: 0.5rem;
  color: white;
}

/* Features Section */
.features-section {
  margin-top: 1rem;
}

.features-title {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: bold;
}

.features-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 90%;
  opacity: 0.9;
}

.feature-card .icon-circle i {
  font-size: 1.5rem; 
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.tick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 0.75rem;
}

.feature-text {
  font-size: 1rem;
}

.demo-button {
  background-color: linear-gradient(to right, #013A33, #19777A);
  border: 1px solid white;
  color: white;
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: 1rem;
  display: block;
}

.demo-button:hover {
  background-color: rgba(255 255 255/ 10%);
}

.arrow {
  margin-left: 0.5rem;
}

/* Tablet-style frame around video */
.tablet-frame {
  background: #151515;
  padding: 1rem;
  border-radius: 40px;
  border: 4px solid #000;
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 600px;
  box-shadow: 0 12px 40px rgba(0 0 0/ 40%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tablet-frame::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background-color: #222;
  border-radius: 10px;
}

.tablet-frame::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #111;
  border-radius: 50%;
}

/* Enlarged video column */
.video-column {
  flex: 1.2;
  max-width: 55%;
}

/* Right Content - Video Column */
.video-column {
  flex: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 47%;
}

.video-wrapper {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0 0 0/ 30%);
  aspect-ratio: 16/9;
}

#demo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.play-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255 255 255/ 80%);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #111;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

/* Hide overlay when video is playing */
.video-is-playing .video-play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Hide all video controls */
#demo-video::-webkit-media-controls,
#demo-video::-webkit-media-controls-enclosure,
#demo-video::-webkit-media-controls-panel,
#demo-video::-webkit-media-controls-play-button,
#demo-video::-webkit-media-controls-timeline,
#demo-video::-webkit-media-controls-current-time-display,
#demo-video::-webkit-media-controls-time-remaining-display,
#demo-video::-webkit-media-controls-mute-button,
#demo-video::-webkit-media-controls-volume-slider,
#demo-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* For Firefox */
#demo-video::-moz-media-controls,
#demo-video::-moz-media-controls-play-button {
  display: none !important;
}

/* For IE/Edge */
#demo-video::-ms-media-controls,
#demo-video::-ms-media-controls-play-button {
  display: none !important;
}

/* Ensure video wrapper proper positioning */
.video-wrapper {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0 0 0/ 30%);
  aspect-ratio: 16/9;
}

/* Hide all video controls */
#demo-video::-webkit-media-controls {
  display: none !important;
}

#demo-video::-webkit-media-controls-enclosure {
  display: none !important;
}

#demo-video::-webkit-media-controls-panel {
  display: none !important;
}

#demo-video::-webkit-media-controls-play-button {
  display: none !important;
}

#demo-video::-webkit-media-controls-timeline {
  display: none !important;
}

#demo-video::-webkit-media-controls-current-time-display {
  display: none !important;
}

#demo-video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

#demo-video::-webkit-media-controls-mute-button {
  display: none !important;
}

#demo-video::-webkit-media-controls-volume-slider {
  display: none !important;
}

#demo-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* Ensure video is properly contained */
.video-wrapper {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0 0 0/ 30%);
  aspect-ratio: 16/9;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7a1942, #4a0f28);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Play button overlay */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0 0 0/ 30%);
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Hide placeholder when video is loaded */
#demo-video:not([poster]) + .video-placeholder {
  display: none;
}

/* Pricing Section */
#pricing_section {
  background-color: #F9F9F9;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.pricing-circles {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  z-index: 0;
  color: var(--primary-dark);
  pointer-events: none; 
}

.pricing-heading {
  font-size: 2.5rem !important;
  font-weight: 300;
  color: var(--primary-dark);
}

.pricing-subtext {
  color: grey;
  font-size: 1rem;
}

/* Toggle Switch */
.toggle-btn {
  background-color: linear-gradient(to right, #013A33, #19777A);
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  border-radius: 30px;
  transition: all 0.3s ease;
  border-radius: 30px !important;
}

.toggle-btn.active {
  background: linear-gradient(to bottom right, var(--primary-dark), var(--primary-light));
  color: var(--white);
}

.toggle-btn:hover {
  background: linear-gradient(to bottom right, var(--primary-dark), var(--primary-light));
  color: var(--white);
}

.toggle-wrapper {
    margin: 20px 0;
}

.toggle-switch {
    position: relative;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 4px;
    width: 220px;
    height: 45px;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    
}

.slider {
    position: absolute;
    left: 4px;
    top: 4px;
    bottom: 4px;
    width: calc(50% - 4px);
    background-color: var(--primary-dark);
    border-radius: 25px;
    transition: transform 0.3s ease;
}

/* Add this to control slider position */
.toggle-switch[data-active="yearly"] .slider {
    transform: translateX(calc(100% + 4px));
}

.toggle-option {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 8px 20px;
    text-align: center;
    color: #666;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-option.active {
    color: #fff;
}

/* Pricing Cards */
#pricing_section {
  position: relative;
  overflow: hidden;
  min-height: 55vh
}

#pricing_section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

#pricing_section .content-overlay {
  position: relative;
  z-index: 2;
}

#pricing_section .container {
  position: relative;
  z-index: 2;
}

.pricing-card {
  background-color: var(--neutral-light);
  color: var(--primary-dark);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.4s ease;
  height: auto;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 0 transparent;
  border: 2px solid #dee2e6;
  box-shadow: 0 4px 6px rgba(0 0 0/ 20%);
  margin-bottom: 90px;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0 0 0/ 15%);
}

.pricing-card .price {
  font-weight: bold;
  margin: 0.75rem 0;
}

.pricing-card .price span.text-muted {
  font-size: 1.35rem;
  font-weight: normal;
  color: #C0C0C0 !important;
}

.pricing-card .divider {
  width: 80%;
  height: 1px;
  background-color: #8294a6;
  margin: 1rem auto;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.custom-button {
  background-color: #d9d9d9;
  color: var(--primary-dark);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.custom-button:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

/* Flip Card Styles */
.flip-card {
  background-color: transparent;
  perspective: 1000px; /* Add perspective to the parent */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d; /* Preserve 3D space */
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hide back face */
}

.flip-card-back {
  transform: rotateY(180deg); /* Rotate back face */
}

/* Hover effect to flip the card */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Pricing Card Variants */
.rotate-in {
  animation: rotateIn 0.6s ease-in-out;
}

@keyframes rotateIn {
  from {
    transform: rotateY(180deg);
    opacity: 0;
  }
  to {
    transform: rotateY(0);
    opacity: 1;
  }
}

.rotate-in-card.pricing-card {
  animation: rotateInCard 0.6s ease-in-out;
}

/* Additional hover effects */
.pricing-card:hover {
  background: linear-gradient(to bottom right, var(--primary-dark), var(--primary-light));
  color: var(--white);
  transform: translateY(-8px);
}

.pricing-card:hover .features-list li {
  color: var(--white);
}

.pricing-card:hover .features-list li::before {
  background-color: var(--white);
}

.pricing-card:hover .custom-button {
  background-color: var(--white);
  color: var(--primary-dark);
}

.custom-button {
  background-color: #eee;
  color: var(--primary);
  border: none;
  border-radius: 2rem;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-button:hover {
  background-color: #fff;
  color: var(--primary);
}

/* Features Section */
.features-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.features-list li {
  margin-bottom: 0.5rem;
  color: grey;
  position: relative;
  padding-left: 1.5rem;
  list-style: none;
}

.features-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primary-dark);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

.features-section {
  background-color: #00423c;
  padding: 4rem 0;
  color: #fff;
  position: relative;
  min-height: 100vh
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0 66 60/ 92%);
  z-index: 1;
}

.features-section .container {
  position: relative;
  z-index: 2;
}

.features_heading {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: left;
  font-weight: bold;
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 100;
}

.features_description {
  color: #fff;
  margin-bottom: 3rem;
  text-align: left;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.features-section {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}

.features-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.features-section .content-overlay {
  position: relative;
  z-index: 2;
}

.features-section .features-section {
  position: relative;
  z-index: 2;
}
.feature-card {
  background-color: var(--neutral-light, #fff);
  color: var(--primary-dark, #00423c);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0 0 0/ 10%);
  position: relative;
  z-index: 2;
}

.feature-card:hover {
  background: linear-gradient(to bottom right, #00423c, #006a60);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0 0 0/ 20%);
}

.feature-card .icon-circle {
  width: 60px;
  height: 60px;
  background-color: #00423c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.feature-card:hover .icon-circle {
  background-color: #fff;
  color: #00423c;
}

.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.4s ease;
}

.feature-card:hover h5,
.feature-card:hover p {
  color: #fff;
}

/* About Us Section */
.about-us {
  background-image: url('./images/aboutbg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2rem;
  color: #1a2b33;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

.about-us .container {
  position: relative;
}

.about-us .row {
  flex-direction: row-reverse;
}

.about-us .col-md-6 img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* About Section */
.about-us {
    overflow: hidden;
}

.about-us .row {
    margin: 0;
}

.about-image-wrapper {
    margin-top: 60px;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-image-wrapper img {
    object-fit: cover;
    max-height: 500px;
    margin-bottom: 40px;
}

/* Typography */
.subtitle {
  font-size: 1.7rem;
  color: #1a2b33;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 300;
}

.main-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a2b33;
  font-weight: 500;
}

.text-grey {
  color: #555;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}


/* Image styling */
.image-container {
  position: relative;
  margin: 0 auto;
  max-width: 100px;
}

.book-image {
  width: -30%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0 66 60/ 20%);
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.95);
  margin-right: 50px;
}

#about_us .row {
  flex-direction: row-reverse;
}

#about_us .col-md-6 img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


         /* Open Day Section Styles */
        .open-day-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            z-index: 10;
            padding: 8rem 0 5rem 0;
            background-image: url('images/backgroundOpenDay.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .open-day-title {
            font-size: 3rem; 
            font-weight: 300;
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
            z-index: 15;
        }

        .open-day-subtitle {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 30px;
            position: relative;
            z-index: 15;
            max-width: 90%;
        }

        .notify-btn {
            background-color: var(--primary-dark);
            color: #fff;
            border: none;
            font-weight: 600;
            transition: background-color 0.3s;
            padding: 12px 40px; /* Larger button */
            border-radius: 4px;
            font-size: 16px;
            margin-top: 20px;
        }

        .notify-btn:hover {
            background-color: var(--primary-light);
        }

        .countdown-wrapper {
            margin-top: 4rem;
            position: relative;
            z-index: 15;
        }

        .countdown-container {
            display: flex;
            background-color: rgba(0 77 64/ 80%); 
            border-radius: 8px;
            padding: 20px;
            color: #fff;
            justify-content: space-around;
            text-align: center;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
        }

        .countdown-value {
            font-size: 3.5rem; /* Larger numbers */
            font-weight: 700;
            line-height: 1;
        }

        .countdown-label {
            font-size: 1rem;
            margin-top: 10px;
        }

        /* Carousel/card styles */
        .open-day-card {
            position: relative;
            height: 500px; /* Fixed height */
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0 0 0/ 20%);
            background-color: #000; /* Dark background */
        }

        .card-content {
            height: 70%;
            width: 70%;
            display: flex;
            flex-direction: column;
            position: relative;
            margin-left: 70px;
        }
        
        .card-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 3%;
        }
        
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 20px;
        }
        
        .card-title {
            font-size: 4.5rem; /* Very large */
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0 0 0/ 30%);
            letter-spacing: 3px;
            margin-bottom: 20px;
        }
        
        .card-date {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .card-time {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }
        
        .rsvp-text {
            font-size: 1.5rem;
            font-weight: 600;
        }
        /* Mobile Navbar */
        

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .open-day-title {
                font-size: 3rem;
            }
            
            .open-day-card {
                margin-top: 3rem;
                height: 450px;
            }
            
            .card-title {
                font-size: 3.5rem;
            }
            
            .qr-code {
                width: 150px;
                height: 150px;
            }
        }
        
        @media (max-width: 767.98px) {
            .countdown-value {
                font-size: 2.5rem;
            }
            
            .countdown-label {
                font-size: 0.9rem;
            }
            
            .card-date {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .open-day-title {
                font-size: 2.5rem;
            }
            
            .open-day-card {
                height: 400px;
            }
            
            .card-title {
                font-size: 3rem;
            }
            
            .countdown-item {
                padding: 0 10px;
            }
            
            .countdown-value {
                font-size: 2rem;
            }
            
            .qr-code {
                width: 120px;
                height: 120px;
            }
        }

/* Contact Us Section */
#contact_us {
  background-image: url('./images/contactusbg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2rem;
  color: #1a2b33;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

#contact_us .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}

#contact_us .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

#contact_us .subtitle {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

#contact_us .main-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 300;
}

.contact-container {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0 0 0/ 20%);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.left-container {
  background: linear-gradient(135deg, #00695c, #004d40);
  width: 50%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: left;
  position: relative;
}

.left-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/contactFrame.svg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.chat-prompt {
  margin-bottom: 2rem;
  z-index: 1;
  font-size: 1.2rem;
  position: relative;
  margin-top: 1rem;
}

.contact-info {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.icon {
  margin-right: 1rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  font-size: 0.9rem;
}

.right-container {
  width: 90%;
  padding: 3rem;
  min-height: 630px;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #8D8D8D;
  font-size: 0.9rem;
  text-align: left;
}

.form-control {
  width: 55%;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  background-color: transparent;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  border-bottom: 1px solid #004d40;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label,
.form-control:not([value=""]) ~ .form-label {
    color: #000000;
    font-weight: 100;
}

.btn {
  width: 35%;
  padding: 1rem;
  background-color: #013A33;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: normal;
  font-size: 1rem;
}

.btn-container{
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 1rem;
  margin-bottom: 1rem;
}

.btn:hover {
  background-color: #004d40; 
}

.subject-field {
  width: 70%;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  transition: all 0.3s;
  background-color: transparent;
}

.subject-field:focus {
  border-bottom: 1px solid #004d40;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0 0 0/ 50%);
}
    
.modal-content {
  background-color: var(--white);
      margin: 15% auto;
      padding: 30px;
      border-radius: 5%;
      max-width: 400px;
      text-align: center;
      position: relative;
    }
    
    .modal-icon {
      font-size: 48px;
      margin-bottom: 20px;
    }
    
    .success-icon {
      color: var(--primary-light);
    }
    
    .error-icon {
      color: #b50a1b;
    }

    .modal-content .close-btn{
      width: 110px;
      border-radius: 15px;
      color: var(--primary-dark);
      border-color: var(--primary-dark);
      font-weight: 500;
      display: block;    
      margin: 20px auto 0 auto;
    }

    .chat-prompt {
      background-color: rgba(255 255 255/ 10%);
      padding: 20px;
      border-radius: var(--border-radius);
      margin-bottom: 40px;
    }
    
    .chat-prompt p {
      margin: 0;
      font-weight: 500;
    }

/* Footer Section */
.footer-custom {
  background-size: 90% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #000;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255 255 255/ 85%);
  z-index: 0;
}

.footer-custom .container {
  position: relative;
  z-index: 1;
}

.footer-custom a {
  transition: color 0.3s ease;
}

.footer-custom a:hover {
  color: #000000;
}

.footer-custom .list-unstyled li {
  display: flex; 
  align-items: center; 
}
.footer-custom .list-unstyled li a {
  margin-left: 0rem; 
}

.footer-custom .list-unstyled li i {
  flex-shrink: 0; 
}

.footer-custom .row.gx-2 > [class^="col-"] {
  padding-left: 7px;
  padding-right: 7px;
}

.footer-custom i {
  color: #000 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #hero_section {
    flex-direction: column;
    text-align: center;
  }
  
  hero h1 {
    font-size: 0.9rem; 
  }
  
  .hero p {
    font-size: 0.7rem;
  }

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

  .navbar-nav {
    display: none;
  }

  .navbar-toggler {
    display: block; /* Show menu icon */
  }
}

/* Centering the Logo in the Navbar */
.navbar-brand {
  margin: 0 auto; 
  display: flex; 
}

/* Glassmorphism for Navbar */
.navbar.glass {
  backdrop-filter: blur(10px);
  background: rgba(255 255 255/ 10%); 
  border-radius: 10px; 
}

  .custom-button {
    margin-bottom: 1rem;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }

.text-grey {
  color: #7A7A7A;
}

.bg-green  {
  background: var(--primary-color);;
}

/* Media query for smaller screen navbars */
@media (max-width: 768px) {
    .navbar{
      display: none;
    }
    .navbar-mobile {
      display: flex; 
      justify-content: space-between;
      align-items: center;
      padding: 0;
      margin: 0;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 11;
      opacity: 1;
      transition: all 0.3s ease;
      height: 75px;
      }
    .navbar-mobile img{
      height: 150px;
    }
    .navbar-brand {
        display: none; 
    }

    .hero-content{
      margin-top: 100px;
    }

    .navbar-nav.active {
        display: flex; /* Show links when active */
    }

    .navbar-nav .nav-link {
        color: var(--primary-dark); /* Link color */
        margin: 10px 0; /* Space between links */
    }

    .menu-icon {
        display: block; /* Show menu icon */
        cursor: pointer; /* Pointer cursor */
    }

    .how-it-works-section {
      padding: 4rem 2rem;
    }
    
    .content-container {
      flex-direction: column;
      gap: 3rem;
    }
    
    .left-content, .video-column {
      max-width: 100%;
    }
    
    .left-content {
      margin-bottom: 2rem;
    }
    
    .features-description {
      max-width: 100%;
    }
  
    .hero-content h1{
      font-size: 37px;
    }
  
    how-it-works-section .demo-button {
      padding: 0.4rem 0.8rem;
    }
  
    .video-column {
    order: 1;
    }
  
    .left-content {
    order: 2;
    }
  
    .video-column {
      max-width: 100%;
    }
  
    .tablet-frame {
      padding: 1.5rem 1rem;
      border-radius: 30px;
    }

    .feature-card {
      height: auto;
      min-height: 250px;
    }
  
    .toggle-switch {
      margin-left: -5px !important;
    }
  
    #pricing_section .bg-img {
      display: none !important;
    }

    #about_us .row {
      flex-direction: column;
    }
  
    #about_us .col-md-6 img {
      margin-top: 2rem;
    }
  
    .main-title {
      font-size: 1.875rem;
    }
    
    #about_us {
      padding: 4rem 1rem;
    }

    .email-signup {
      flex-direction: column;
  }
  
  .email-input {
      border-radius: 5px;
      margin-bottom: 10px;
  }
  
  .notify-btn {
      border-radius: 5px;
  }
  
  .countdown-value {
      font-size: 1.8rem;
  }
  
  .countdown-label {
      font-size: 0.7rem;
  }
  }
  /* Hide menu icon when menu is active */
  .navbar-nav.active + .menu-icon {
      display: none; 
  }

/* Ipad mini media query  */
@media (max-width: 991px) and (min-width: 600px) {
  .pricing-card-container {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 1%;
  }
  .pricing-card {
    min-height: 425px;
    width: 100%;
  }
  .pricing-heading{
    font-size: 4rem;
  }
  .pricing-subtext{
    font-size: 1.5rem;
  }
  .toggle-switch{
    height: 65px;
    width: 210px;
    align-items: center;
  }
  .slider{
    position: absolute;
    left: 4px;
    top: 4px;
    bottom: 4px;
    width: calc(50% - 4px);
  }
  .toggle-wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: flex-start !important;
  }
  .navbar-toggler {
    margin-left: 0.5rem;
    color: var(--white);
  }
  .navbar-brand img {
    height: 120px;
    transform: scale(1.6);
  }
  .navbar-toggler {
    margin-left: auto;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .hero p{
    font-size: 1.1rem;
  }
  .toggle-wrapper{
    width: 100%;
  display: flex;
  justify-content: flex-start;
  }
  .content-wrapper {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
  }

  .left-content {
    flex: 1; 
    margin-right: 20px; 
  }

  .video-container {
    flex: 0 0 40%; 
    max-width: 40%; 
  }
}

/* iPad Air 4 */
@media (max-width: 834px) and (min-width: 768px) {
  .pricing-card-container {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 1%;
  }
  .pricing-card {
    min-height: 400px;
    width: 100%;
    margin-top: 40px;
  }
  .content-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }
  .toggle-switch {
    margin-left: -10px !important;
    margin-top: 15px;
  }
  .left-content {
    max-width: 100%;
    margin-left: 0;
    padding: 0 1rem;
  }
  
  .how-it-works-section {
    position: relative;
    min-height: 91vh;
    padding: 3rem 6rem 2rem; 
    color: white;
    display: flex;
    align-items: flex-start;
  }
  .heading-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .heading-container .subtitle {
    font-size: 1.5rem;
  }
  .features-title {
    font-size: 1.5rem;
  }
  .features-description {
    font-size: 1.25rem;
  }
  
  .navbar-brand img {
    height: 80px; 
    margin-right: 0; 
  }
  .navbar-toggler {
    margin-left: auto;
    color: var(--white);
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .navbar-nav .nav-link {
    margin: 5px 10px;
  }
  
  .get-started-btn {
    margin: 10px 0;
    display: none;
  }
  
  .navbar-brand {
    display: none;
  }

  
}

/*Media Query for Iphone 5 ans Iphone SE 2016*/
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.7rem; 
  }

  .hero p {
    margin-bottom: 0.8rem; 
    font-size: 0.8rem !important;
  }

  .cta-buttons {
    flex-direction: row; 
    justify-content: center;
  }

  .cta-buttons button{
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
    margin: 0 0.5rem;
  }

  .hero-content {
    top: 3%; 
    margin-bottom: 15px;
  }

  .navbar-brand img {
    height: 120px; 
    margin-right: 30px;
  }

  #pricing_section .pricing-card {
    margin-top: 40px;
  }

  .toggle-switch {
    margin-left: auto !important;
  }

  .navbar-toggler {
    margin-left: 0.5rem;
    color: var(--white);
  }

  .navbar-toggler {
    margin-left: auto;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

}

/* Media query for iMacs */
@media (max-width: 1200px) {
  .how-it-works-section {
    padding: 5rem 4rem;
  }
  
  .heading-container h2 {
    font-size: 2.5rem;
  }
}

/*Media query for Iphone 12 Pro Max, Ipad air and small laptops*/
@media (max-width: 992px) {
  .open-day-page .nav-link a{
    font-size: 100px !important;
  }
  .how-it-works-section {
    padding: 4rem 3rem;
  }
  
  .content-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .video-column {
    order: 3; /* Move video below the demo button */
    max-width: 100%;
    width: 100%;
    margin-top: 2.5rem;
  }
  
  .left-content {
    order: 1; /* Content first */
    max-width: 100%;
    width: 100%;
    text-align: left; /* Left align all text */
  }
  
  .features-description {
    max-width: 100%;
    text-align: left;
  }
  
  .feature-item {
    justify-content: flex-start; /* Left align feature items */
  }
  
  .feature-list {
    text-align: left;
  }
  
  .heading-container h2 {
    font-size: 2.25rem;
  }
  
  .features_heading,
  .features_description {
    text-align: left;
  }
  
  .feature-card {
    height: 300px;
  }
  
  .about-image-wrapper {
    margin-top: 2rem;
  }
  
  .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .navbar-nav .nav-link {
    margin: 5px 10px;
  }
  
  .get-started-btn {
    margin: 10px 0;
    display: none;
  }
  
  .navbar-brand {
    display: none;
  }
  
  .navbar-brand img {
    height: 80px;
    transform: scale(1.2);
  }
  
  .navbar-nav {
    text-align: center;
    margin: 10px 0;
  }
  
  .navbar-nav .nav-link {
    margin: 10px;
    display: block;
  }
  
  .open-day-title {
    font-size: 3rem;
  }
  
  .open-day-subtitle {
    font-size: 1.2rem;
  }
  
  .open-day-section {
    padding: 150px 0 80px;
  }
  
  .countdown-value {
    font-size: 2rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
  }
  
  .open-day-image {
    margin-top: 40px;
  }
  
  .demo-button {
    margin: 1.5rem auto 0;
    display: inline-block;
    position: center;
  }

  #contact_us {
    padding: 4rem 1rem; 
  }

  #contact_us .container {
    padding: 0; 
  }

  .contact-container {
    flex-direction: column; 
    width: 100%; 
  }

  .left-container {
    width: 100%; 
    padding: 2rem; 
  }

  .right-container {
    width: 100%; 
    padding: 2rem; 
    min-height: auto; 
  }

  .form-group {
    margin-bottom: 1.5rem; 
  }

  .form-control,
  .subject-field {
    width: 100%; 
  }

  .btn {
    width: 100%; 
    font-size: 1rem;
  }

  .btn-container {
    justify-content: center;
    padding-right: 0;
  }

  .footer-custom {
    padding: 1rem; 
  }

  .footer-custom .container {
    padding: 0; 
  }

  .footer-custom .row.gx-2 > [class^="col-"] {
    padding-left: 5px; 
    padding-right: 5px; 
  }

  .pricing-card {
    min-height: 410px;
    width: 100%;
    margin-top: 10px;
  }

  .cta-buttons {
    flex-direction: row; 
    justify-content: center;
  }

  .cta-buttons button{
    padding: 1rem 1rem;
    font-size: 0.9rem;
    margin: 0 0.5rem;
  }

  .hero-content h1{
    font-size: 2.2rem;
  }

  .hero-content p{
    font-size: 1.5rem;
  }
}

/* Media query for iPhone SE */
@media only screen and (max-width: 375px) and (max-height: 667px) {
  .navbar-mobile {
    display: none;
 
  }

  .navbar-mobile.scrolled {
    display: flex; /* Show navbar when scrolled */
    opacity: 1;
  }
}

/* Fix for iPad Air: always show mobile navbar logo */
@media only screen and (min-width: 768px) and (max-width: 834px) and (min-height: 1024px) {
  .navbar_mobile {
    display: flex !important;
    opacity: 1 !important;
  }
  .navbar_mobile .logo_mobile {
    display: block !important;
    opacity: 1 !important;
  }
  .navbar-brand img{
    height: 100px;
    margin: 0;
  }
}

/* Media Query for Samsung S20 */
@media only screen and (max-width: 360px) and (max-height: 800px) {
    /* Adjust Hero Section */
    .hero-content h1 {
        font-size: 2rem; 
    }

    .hero p {
        font-size: 1.2rem; 
    }

    .hero-content {
        margin-bottom: 130px; 
    }

    .how-it-works-heading{
      font-size: 2.3rem;
    }

    .cta-buttons {
        flex-direction: row; 
        justify-content: center; 
    }

    .cta-buttons button {
        padding: 0.95rem 1rem; 
        font-size: 0.9rem; 
        margin: 0 0.5rem; 
    }

    /* Adjust Card Sizes */
    .pricing-card {
        min-height: 390px; 
        padding: 1.5rem; 
        max-width: 370px;
        align-items: center;
    }

    .pricing-card h5 {
        font-size: 1.6rem; 
    }

    .pricing-card .price {
        font-size: 1.5rem; /* Reduce price font size */
    }

    .feature-card {
        height: 220px; /* Reduce feature card height */
        padding: 1rem; /* Adjust padding */
    }

    .feature-card h5 {
        font-size: 1rem; /* Reduce feature card title font size */
    }

    .feature-card p {
        font-size: 0.8rem; /* Reduce feature card paragraph size */
    }
}
