:root {
    --primary-dark: #152238;
    --primary-red: #e94057;
    --primary-gray: #55606c;
    --light-gray: #f7f7f7;
    --white: #ffffff;

    --primary-dark-blue: #1A2342; /* Dark blue from logo background */
            --secondary-red: #FF5A65; /* Brighter red from "INVEST" */
            --text-gray: #5D5D5D; /* Gray from "Empowering Financial Journey" */
            --accent-green: #4CAF50; /* Green for checkmarks */
            --background-color: #f7f7f7;
            --card-bg: #ffffff;
            --text-color: #1A2342;

            --primary-color: #16213E; /* Navy blue from logo */
      --accent-color: #E94560; /* Red from logo */
      --light-bg: #f9f6ee; /* Light background from navbar */
      --text-color: #333;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
}

.navbar {
  background-color: #f9f6ee;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 10px 50px;
  transition: background-color 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}

.navbar:hover {
  background-color: white;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 50px;
  width: 200px;
  max-width: 100%;
}

.right-menu {
  display: flex;
  align-items: center;
}

.right-menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.right-menu a:hover {
  color: #ff4c4c;
}

.right-menu a svg {
  margin-right: 5px;
}

.navbar-bottom {
  display: flex;
  justify-content: flex-end;
}

.menu-items {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  font-weight: 700;
}

.menu-items li {
  margin: 0 15px;
}

.menu-items li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 5px;
  transition: all 0.3s ease;
}

.menu-items li a:hover {
  color: #ff4c4c;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease;
}

.mobile-right-menu {
  display: none; /* Hide by default */
}

@media screen and (max-width: 1024px) {
  .navbar {
    padding: 10px 20px;
  }
  
  .menu-items li {
    margin: 0 10px;
  }
  
  .right-menu a {
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .navbar-top {
    justify-content: space-between;
  }
  
  .navbar-bottom {
    position: fixed;
    left: -100%;
    top: 70px; /* Reduced from 80px */
    flex-direction: column;
    background-color: #f9f6ee;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    z-index: 10;
    padding: 20px 0;
    max-height: 70vh; /* Added max-height with scroll */
    overflow-y: auto;
  }
  
  .navbar-bottom.active {
    left: 0;
  }
  
  .menu-items {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .menu-items li {
    margin: 10px 0; /* Reduced from 15px */
    padding: 5px 0; /* Added padding */
  }
  
  .right-menu {
    margin-right: 50px;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media screen and (max-width: 576px) {
  .right-menu {
    display: none;
  }
  
  .mobile-right-menu {
    position: fixed;
    left: -100%;
    top: auto; /* Changed from fixed position */
    bottom: 0; /* Positioned from bottom */
    flex-direction: column;
    background-color: #f9f6ee;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.1); /* Shadow from top */
    z-index: 10;
    padding: 20px 0;
    display: flex;
  }
  
  /* Position it after the navbar-bottom when active */
  .navbar-bottom.active + .mobile-right-menu.active {
    left: 0;
    top: auto; /* Auto positioning */
  }
  
  .mobile-right-menu.active {
    left: 0;
  }
  
  .mobile-right-menu a {
    margin: 10px 0; /* Reduced from 15px */
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-right-menu a svg {
    margin-right: 5px;
  }
}


/* Booking Container Styles - With Your Specific Requirements */
.booking-container {
  /* max-width: 1200px; */
  width: 100%;
  margin: 0 auto;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
  color: black;
}
.booking-header {
  display: flex;
  border: 1px solid #e1e1e1;
  border-bottom: none;
  justify-content: space-between;
  padding: 15px 15px 0px;
  align-items: center;
}

/* Marquee styling */
.header-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  color: #d6001c;
  font-size: 14px;
  padding-right: 15px;
}

.marquee-content {
  display: inline-block;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.promo-code {
  display: flex;
  align-items: center;
}

.add-promo {
  color: #d6001c;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.add-promo::before {
  content: "+";
  margin-right: 5px;
  font-weight: bold;
}

/* Radio container styles - as requested */
.radiocontainer {
  margin: 0 35px;
}

.radio-group {
  display: flex;
  margin-bottom: 20px;
  justify-content: flex-start; /* Align to the left */
}

.radio-option {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 15px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-option.selected {
  background-color: #ffcccc;
  border-color: #ff0000;
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 8px;
  cursor: pointer;
}

.form-check-input:checked {
  accent-color: #ff0000;
}

.form-check-label {
  cursor: pointer;
}

/* Keeping the margin-left as requested */
.booking-main {
  display: flex;
  border: 1px solid #e1e1e1;
  min-height: 34px;
  flex-wrap: wrap;
  margin-left: 273px; /* Keeping this as requested */
}

/* Search field styles */
.search-field {
  height: 34px;
  border-right: 1px solid #e1e1e1;
  flex: 1;
  position: relative;
  padding: 0 15px;
  display: flex;
  align-items: center;
  min-width: 150px;
}

.dropdown-item:hover {
  background-color: #ffecec; /* Light red background */
  color: #d6001c; /* Red text color to match theme */
  border-left: 3px solid #d6001c; /* Red border accent */
  transition: all 0.2s ease; /* Smooth transition effect */
  padding-left: 15px; /* Compensate for the border */
}

/* Also highlight the dropdown parent on hover */
.search-field:hover .search-field-header {
  color: #d6001c; /* Change text color on hover */
}

.search-field:hover .dropdown-icon {
  border-color: #d6001c; /* Ensure dropdown icon matches */
}

/* Add a subtle highlight effect to the search field on hover */
.search-field:hover {
  background-color: #fafafa; /* Very light background */
}


.search-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.search-field-label {
  font-size: 14px;
  color: #666;
}

.search-field-value {
  font-size: 14px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-icon {
  width: 10px;
  height: 10px;
  border-left: 2px solid #d6001c;
  border-bottom: 2px solid #d6001c;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 5px;
}

.search-field.active .dropdown-icon {
  transform: rotate(135deg);
}

/* Search button styles */
.search-button {
  background-color: #d6001c;
  color: white;
  border: none;
  height: 34px;
  padding: 0 30px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown styles */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #e1e1e1;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  width: auto;
  max-width: 220px;
}

.search-field.active .dropdown-content {
  display: block;
}

.dropdown-item {
  padding: 6px 12px;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}

.item-number {
  display: inline-block;
  margin-right: 5px;
  font-weight: normal;
}

/* Menu title font */
.menu-with-submenu {
  font-size: 14px;
}

/* EMI Calculator button styling */
.button.emi-calculator-trigger {
  background-color: #16213E;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.icon-calculator {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'><rect x='4' y='3' width='16' height='18' rx='2' /><line x1='8' y1='7' x2='16' y2='7' /><line x1='8' y1='11' x2='16' y2='11' /><line x1='8' y1='15' x2='16' y2='15' /></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Media queries for responsiveness */
@media screen and (max-width: 992px) {
  .booking-container {
    margin: 10px;
  }
  
  .search-field {
    min-width: 120px;
  }
  
  /* Adjust the margin-left for smaller screens */
  .booking-main {
    margin-left: 150px;
  }
}

@media screen and (max-width: 768px) {
  .booking-main {
    flex-wrap: wrap;
    height: auto;
    margin-left: 50px; /* Further reduce margin on tablets */
  }
  
  .search-field {
    width: 50%;
    flex: 0 0 50%;
    border-bottom: 1px solid #e1e1e1;
  }
  
  .search-button {
    width: 100%;
    height: 40px;
  }
  
  .dropdown-content {
    width: 100%;
    max-width: none;
  }
  
  .radiocontainer {
    margin: 0 20px; /* Reduce margin on tablets */
  }
}

@media screen and (max-width: 600px) {
  .radio-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .radio-option {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%; /* Full width on small screens */
  }
}

@media screen and (max-width: 576px) {
  .booking-header {
    flex-direction: column;
  }
  
  .header-marquee {
    margin-bottom: 10px;
    width: 100%;
  }
  
  .promo-code {
    width: 100%;
    justify-content: flex-end;
    margin-top: 10px;
  }
  
  .booking-main {
    margin-left: 0; /* Remove margin on mobile */
  }
  
  .search-field {
    width: 100%;
    flex: 0 0 100%;
    border-right: none;
  }
  
  .dropdown-content {
    width: 100%;
    left: 0;
    right: 0;
  }
  
  .dropdown-item {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .radiocontainer {
    margin: 0 15px; /* Further reduce margin on mobile */
  }
}

/* Mobile menu container */
.mobile-right-menu {
  display: none;
}

@media screen and (max-width: 576px) {
  .mobile-right-menu {
    display: none;
    position: fixed;
    left: -100%;
    top: 250px;
    flex-direction: column;
    background-color: #f9f6ee;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    z-index: 10;
    padding: 20px 0;
  }
  
  .mobile-right-menu.active {
    display: flex;
    left: 0;
  }
}

.hero-banner {
position: relative;
width: 100%;
height: 400px; /* Changed from 600px to 400px */
overflow: hidden;
}

.hero-carousel .item {
position: relative;
height: 400px; /* Changed from 600px to 400px */
background-size: cover;
background-position: center;
color: white;
}

.hero-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 8%;
background: linear-gradient(to right, rgba(22, 33, 62, 0.85) 0%, rgba(22, 33, 62, 0.6) 50%, rgba(22, 33, 62, 0.3) 100%);
overflow: hidden;
}

.hero-title {
font-size: 42px; /* Reduced from 52px */
font-weight: 700;
text-transform: uppercase;
line-height: 1.1;
margin-bottom: 18px; /* Reduced from 24px */
max-width: 650px;
letter-spacing: 1px;
position: relative;
z-index: 2;
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-subtitle {
font-size: 18px; /* Reduced from 20px */
margin-bottom: 26px; /* Reduced from 36px */
font-weight: 500;
max-width: 580px;
position: relative;
z-index: 2;
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 1s ease forwards 0.6s;
}

.loginbtn{
display: inline-block;
background-color: #E94560;
color: white !important;
padding: 10px 25px; /* Reduced from 14px 34px */
text-decoration: none;
font-weight: 600;
border-radius: 10px;
text-transform: uppercase;
/* transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: none;
cursor: pointer;
position: relative;
z-index: 2;
box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 1s ease forwards 0.9s; */
}

.hero-btn .btn{
display: inline-block;
background-color: #E94560;
color: white;
padding: 12px 30px; /* Reduced from 14px 34px */
text-decoration: none;
font-weight: 600;
border-radius: 50px;
text-transform: uppercase;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: none;
cursor: pointer;
position: relative;
z-index: 2;
box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-btn:hover {
background-color: #fff;
color: #E94560;
transform: translateY(-5px) scale(1.05);
box-shadow: 0 10px 25px rgba(233, 69, 96, 0.5);
}

/* Background Shape */
.hero-shape {
position: absolute;
bottom: -80px; /* Adjusted from -100px */
right: -80px; /* Adjusted from -100px */
width: 300px; /* Reduced from 400px */
height: 300px; /* Reduced from 400px */
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
z-index: 1;
animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
position: absolute;
top: -40px; /* Adjusted from -50px */
right: 20%;
width: 180px; /* Reduced from 200px */
height: 180px; /* Reduced from 200px */
background-color: rgba(233, 69, 96, 0.2);
border-radius: 50%;
z-index: 1;
animation: float 12s ease-in-out infinite;
}

/* Custom navigation for hero */
.hero-banner .owl-dots {
position: absolute;
bottom: 20px; /* Reduced from 30px */
left: 0;
right: 0;
text-align: center;
z-index: 10;
}

.hero-banner .owl-dots .owl-dot span {
width: 12px; /* Reduced from 14px */
height: 12px; /* Reduced from 14px */
margin: 0 6px;
background: rgba(255, 255, 255, 0.3) !important;
border-radius: 50%;
transition: all 0.3s ease;
}

.hero-banner .owl-dots .owl-dot.active span {
background: #E94560 !important;
transform: scale(1.2);
}

.hero-banner .owl-nav button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.2) !important;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border-radius: 50% !important;
width: 44px; /* Reduced from 50px */
height: 44px; /* Reduced from 50px */
display: flex !important;
justify-content: center;
align-items: center;
transition: all 0.3s ease;
z-index: 10;
opacity: 0;
}

.hero-banner:hover .owl-nav button {
opacity: 1;
}

.hero-banner .owl-nav button:hover {
background-color: #E94560 !important;
transform: translateY(-50%) scale(1.1);
}

.hero-banner .owl-prev {
left: 25px; /* Reduced from 30px */
}

.hero-banner .owl-next {
right: 25px; /* Reduced from 30px */
}

/* Content animations */
@keyframes fadeInUp {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

@keyframes float {
0% {
  transform: translateY(0) rotate(0deg);
}
50% {
  transform: translateY(-20px) rotate(5deg);
}
100% {
  transform: translateY(0) rotate(0deg);
}
}

/* Animation for slide transition */
.owl-item.active .hero-content .hero-title,
.owl-item.active .hero-content .hero-subtitle,
.owl-item.active .hero-content .hero-btn {
animation-name: fadeInUp;
}

.owl-item:not(.active) .hero-content .hero-title,
.owl-item:not(.active) .hero-content .hero-subtitle,
.owl-item:not(.active) .hero-content .hero-btn {
opacity: 0;
transform: translateY(20px);
}

/* Slide indicator */
.slide-indicator {
position: absolute;
left: 8%;
bottom: 70px; /* Reduced from 90px */
z-index: 10;
display: flex;
align-items: center;
color: white;
font-weight: 600;
opacity: 0;
animation: fadeInUp 1s ease forwards 1.2s;
}

.slide-indicator .current {
font-size: 22px; /* Reduced from 24px */
color: #E94560;
}

.slide-indicator .total {
font-size: 15px; /* Reduced from 16px */
opacity: 0.7;
}

.slide-indicator .divider {
width: 45px; /* Reduced from 50px */
height: 2px;
background-color: rgba(255, 255, 255, 0.3);
margin: 0 10px;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
.hero-title {
  font-size: 38px;
  max-width: 580px;
}

.hero-shape {
  width: 250px;
  height: 250px;
}
}

@media screen and (max-width: 992px) {
.hero-banner, .hero-carousel .item {
  height: 400px;
}

.hero-title {
  font-size: 34px;
  max-width: 480px;
}

.hero-subtitle {
  font-size: 17px;
  margin-bottom: 24px;
}

.hero-shape {
  width: 220px;
  height: 220px;
}
}

@media screen and (max-width: 768px) {
.hero-banner, .hero-carousel .item {
  height: 380px; /* Adjusted from 450px */
}

.hero-title {
  font-size: 30px;
  max-width: 100%;
}

.hero-content {
  padding-left: 30px;
  padding-right: 30px;
  background: linear-gradient(to bottom, rgba(22, 33, 62, 0.4) 0%, rgba(22, 33, 62, 0.8) 100%);
}

.hero-btn {
  padding: 12px 28px;
  font-size: 14px;
}

.hero-banner .owl-nav button {
  width: 40px;
  height: 40px;
}

.hero-banner .owl-prev {
  left: 15px;
}

.hero-banner .owl-next {
  right: 15px;
}

.slide-indicator {
  left: 30px;
  bottom: 60px; /* Adjusted from 80px */
}
}

@media screen and (max-width: 576px) {
.hero-banner, .hero-carousel .item {
  height: 350px; /* Adjusted from 400px */
}

.hero-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 15px;
  margin-bottom: 20px;
}

.hero-btn {
  padding: 10px 24px;
  font-size: 13px;
}

.hero-shape, .hero-shape-2 {
  display: none;
}
}
.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s;
    backdrop-filter: blur(3px);
    overflow-y: auto;
    padding: 30px 15px;
  }
  
  .modal.show {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.25s 0s;
  }
  
  .modal-content {
    background-color: white;
    border-radius: 12px;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
    margin: auto; /* Center vertically when scrolling */
    max-height: 90vh; /* Prevent modal from being taller than viewport */
  }
  
  .modal.show .modal-content {
    transform: scale(1);
  }
  
  .modal-header {
    background-color: #2d3748;
    background-image: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 5;
  }
  
  .modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .modal-header h2::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #dc0a2d;
    border-radius: 50%;
    position: relative;
  }
  
  .close {
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  
  .close:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .modal-body {
    padding: 30px;
    overflow-y: auto; /* Allow scrolling inside modal body if needed */
    max-height: calc(90vh - 80px); /* Subtract header height */
  }
  
  /* Calculator Styles */
  .calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  label {
    /* font-weight: 600; */
    color: #2d3748;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  label .current-value {
    font-weight: normal;
    color: #dc0a2d;
    background-color: rgba(220, 10, 45, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 13px;
  }
  
  input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #f8fafc;
  }
  
  input[type="number"]:focus {
    outline: none;
    border-color: #dc0a2d;
    box-shadow: 0 0 0 3px rgba(220, 10, 45, 0.2);
  }
  
  .range-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0;
  }
  
  input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    transition: background 0.3s;
  }
  
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dc0a2d;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
  }
  
  input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
  }
  
  .range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    padding: 0 5px;
  }
  
  .results {
    margin-top: 25px;
    padding: 20px;
    background-color: #f0f9ff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0f2fe;
  }
  
  .results-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cbd5e1;
  }
  
  .result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .result-item:last-child {
    border-bottom: none;
  }
  
  .result-label {
    color: #64748b;
  }
  
  .value {
    font-weight: 600;
    color: #2d3748;
    font-size: 16px;
  }
  
  .total-value {
    color: #dc0a2d;
    font-size: 18px;
    font-weight: 700;
  }
  
  .calculate-btn {
    background-image: linear-gradient(135deg, #dc0a2d 0%, #c2071f 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(220, 10, 45, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(220, 10, 45, 0.3);
  }
  
  .calculate-btn:active {
    transform: translateY(0);
  }
  
  /* Chart container */
  .chart-container {
    margin-top: 30px;
    height: 220px;
    position: relative;
  }
  
  .chart-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
  }
  
  .chart {
    display: flex;
    height: 180px;
    align-items: flex-end;
    gap: 20px;
    padding: 0 10px;
  }
  
  .chart-bar {
    flex: 1;
    background-color: #2d3748;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
  }
  
  .chart-bar:first-child {
    background-image: linear-gradient(0deg, #2d3748 0%, #3c4b63 100%);
  }
  
  .chart-bar:nth-child(2) {
    background-image: linear-gradient(0deg, #dc0a2d 0%, #f5365c 100%);
  }
  
  .chart-bar:nth-child(3) {
    background-image: linear-gradient(0deg, #0a84dc 0%, #38bdf8 100%);
  }
  
  .chart-label {
    position: absolute;
    bottom: -30px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
    width: 100%;
    font-weight: 500;
  }
  
  .chart-value {
    color: white;
    font-size: 14px;
    padding: 8px 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  /* Add icon styles */
  .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .icon-calculator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z' /%3E%3C/svg%3E");
  }
  
  /* Animation */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .pulse {
    animation: pulse 1.5s infinite;
  }
  
  /* Info tooltip */
  .info-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 6px;
    cursor: help;
  }
  
  .info-icon {
    width: 16px;
    height: 16px;
    background-color: #64748b;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
  }
  
  .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #334155;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -110px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: normal;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  
  .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #334155 transparent transparent transparent;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .modal {
      padding: 10px;
    }
    
    .modal-body {
      padding: 20px;
    }
    
    .chart {
      gap: 10px;
    }
  }
  
  /* Fix for smaller screens */
  @media (max-height: 750px) {
    .modal-content {
      max-height: 95vh;
    }
    
    .modal-body {
      max-height: calc(95vh - 80px);
    }
  }

  .about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
    bottom: -10px;
    left: 0;
}

.about-text p {
    color: var(--primary-gray);
    margin-bottom: 25px;
    line-height: 1.7;
    margin-top: 20px;
}

.mission-vision {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.mission, .vision {
    flex: 1;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission h3, .vision h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.mission h3::after, .vision h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
    bottom: 0;
    left: 0;
}

.mission p, .vision p {
    color: var(--primary-gray);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    border-top: 5px solid var(--primary-red);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 35, 66, 0.2);
}

.package-card h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark-blue);
    position: relative;
}

.package-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-red);
    border-radius: 1.5px;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.card-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0.8rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .package-card {
        padding: 1.2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }

}
.banner {
    background-color: #8b0f3c;
    color: white;
    padding: 2rem;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.banner-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
}


.footer {
    background-color: #f9f6ee;
    color: #16213E;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
  }

  /* Subtle pattern overlay */
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e8e4d8' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
  }

  .footer-logo {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 1s ease-in-out;
  }

  @media (min-width: 768px) {
    .footer-logo {
      grid-column: span 3;
    }
  }

  .footer-logo svg {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
  }

  .footer-logo svg:hover {
    transform: scale(1.05);
  }

  .footer-logo p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
  }

  .footer-links {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideUp 0.8s ease-in-out;
    animation-fill-mode: both;
  }

  .footer-links:nth-child(3) {
    animation-delay: 0.2s;
  }

  @media (min-width: 768px) {
    .footer-links {
      grid-column: span 3;
    }
  }

  .footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #16213E;
  }

  .footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #E94560;
    transition: width 0.3s ease;
  }

  .footer-links:hover h3::after {
    width: 60px;
  }

  .footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
    position: relative;
  }

  .footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #E94560;
    transition: width 0.3s ease;
  }

  .footer-links a:hover {
    color: #E94560;
    transform: translateX(5px);
  }

  .footer-links a:hover::after {
    width: 100%;
  }

  .footer-contact {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideUp 0.8s ease-in-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
  }

  @media (min-width: 768px) {
    .footer-contact {
      grid-column: span 3;
    }
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.7rem;
    transition: transform 0.3s ease;
  }

  .contact-item:hover {
    transform: translateX(5px);
  }

  .contact-item i {
    font-size: 1.2rem;
    color: #E94560;
  }

  .contact-item span {
    font-size: 0.9rem;
    color: #555;
  }

  .social-links {
    grid-column: span 12;
    margin-top: 2rem;
    animation: slideUp 0.8s ease-in-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
  }

  @media (min-width: 768px) {
    .social-links {
      grid-column: span 12;
      margin-top: 0;
    }
  }

  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(22, 33, 62, 0.1);
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background-color: #E94560;
    transform: translateY(-5px);
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
    fill: #16213E;
    transition: fill 0.3s ease;
  }

  .social-icon:hover svg {
    fill: #fff;
  }

  .footer-bottom {
    grid-column: span 12;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(22, 33, 62, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 1s ease-in-out;
    animation-delay: 0.8s;
    animation-fill-mode: both;
  }

  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }

  .copyright {
    font-size: 0.85rem;
    color: #555;
  }

  .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-menu a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
  }

  .footer-menu a:hover {
    color: #E94560;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive adjustments */
  @media screen and (max-width: 992px) {
    .footer-container {
      grid-template-columns: repeat(6, 1fr);
    }
    
    .footer-logo {
      grid-column: span 6;
    }
    
    .footer-links, .footer-contact {
      grid-column: span 3;
    }
    
    .social-links {
      grid-column: span 6;
    }
  }

  @media screen and (max-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(1, 1fr);
      gap: 2rem;
    }
    
    .footer-logo, .footer-links, .footer-contact, .social-links {
      grid-column: span 1;
    }
  }

  .navigation-bar {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 300px;
    position: relative;
    perspective: 1000px;
}

.nav-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-out;
    transform-style: preserve-3d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Add a small delay to prevent accidental hover triggers */
.nav-item.hover-intent {
    flex: 1.8;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background 0.4s ease-out;
}

.nav-item.hover-intent::before {
    background: rgba(0, 0, 0, 0.2);
}

.nav-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%);
    transition: filter 0.4s ease-out, transform 0.6s ease-out;
}

.nav-item.hover-intent img {
    filter: grayscale(0%);
    transform: scale(1.1) translateZ(10px);
}

.nav-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(20px);
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    width: 100%;
    z-index: 2;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 1; /* Changed from 0 to always show the title */
    transition: all 0.4s ease-out;
    letter-spacing: 1px;
}

.nav-item.hover-intent .nav-title {
    transform: translate(-50%, -50%) translateZ(50px) scale(1.1);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.nav-description {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 3;
}

.nav-item.hover-intent .nav-description {
    bottom: 0;
}

.feedback-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #e32d2d;
    color: white;
    padding: 15px 10px;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.feedback-button:hover {
    padding-bottom: 25px;
    background-color: #ff4d4d;
}

.chat-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    animation: pulse 2s infinite;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.chat-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 45, 45, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(227, 45, 45, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 45, 45, 0);
    }
}

.online-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chat-icon:hover .avatar {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .navigation-bar {
        flex-direction: column;
        height: auto;
        perspective: 600px;
    }
    
    .nav-item {
        height: 120px;
        transform-origin: center left;
    }
    
    .nav-item.hover-intent {
        height: 180px;
    }
    
    .nav-title {
        font-size: 1.1rem;
    }
    
    .nav-description {
        font-size: 0.8rem;
        padding: 10px;
    }
}

/* Added animation classes */
.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.zoom-in {
    animation: zoomIn 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.flip-in {
    animation: flipIn 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px) rotateY(-20deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px) rotateY(20deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flipIn {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0);
        opacity: 1;
    }
}

/* Added bounce animation for chat icon */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bounce {
    animation: bounce 1s ease;
}

.form-container {
  margin: 50px auto;
  max-width: 600px;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-header {
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.form-header h2 {
  color: var(--primary-color);
  font-size: 24px;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--accent-color);
}

.back-btn {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-right: 10px;
}

.back-btn:hover {
  background-color: #5a6268;
}

.button-group {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

/* Hide the contact form initially */
#contactPage {
  display: none;
}

/* Add some responsive adjustments */
@media screen and (max-width: 576px) {
  .radiocontainer, .form-container {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }
  
  .form-control {
    padding: 10px;
  }
}
