/* Global Styles */
:root {
  --primary-color: #0056b3;
  --hover-color: #f6ff43;
  --font-family: "Arial", sans-serif;
}
#slide1 {
  background-image: url("images/paris2.jpg"); /* Replace with your Paris image path */
}

#slide2 {
  background-image: url("images/rome2.webp"); /* Replace with your Rome image path */
}

#slide3 {
  background-image: url("images/india3.jpg"); /* Replace with your India image path */
}
.slide {
  position: relative;
  /* Replace with your image path */
  background-size: cover; /* Ensures the image covers the entire slide */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  height: 100%; /* Adjust the height as needed */
  width: 100%; /* Adjust the width as needed */
  display: flex; /* Use flexbox to center content */
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
}
.navbar-logo {
  height: 40px; /* Adjust height as needed */
  width: auto;
  /* For maintaining aspect ratio */
  object-fit: contain;
}

/* Mobile responsiveness for logo */
@media screen and (max-width: 768px) {
  .navbar-logo {
      height: 30px; /* Slightly smaller on mobile */
  }
}
.overlay-content {
  background: rgba(
    255,
    255,
    255,
    0.8
  ); /* Semi-transparent background for readability */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
#dest {
  background-color: #0056b3; /* Primary color */
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block; /* Ensures the button wraps the content */
}

#dest a {
  color: #ffffff; /* Text color */
  text-decoration: none; /* Remove underline from link */
  font-weight: bold;
  display: block; /* Ensures the link fills the button */
}

#dest:hover {
  background-color: #004494; /* Darker shade on hover */
  transform: scale(1.05); /* Slightly enlarge on hover */
}

#dest:active {
  transform: scale(0.95); /* Slightly shrink on click */
}

/* style.css */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.profile-icon {
  font-size: 24px;
  cursor: pointer;
  margin-right: 1px;
  margin-left: 3px;
  color: #ffffff;
  transition: color 0.3s ease;
  padding-top: 5px; /* Adjust this value as needed */
}
.profile-icon-wrapper {
  margin-right: 15px;
  z-index: 1021; /* Higher than navbar-toggler */
}

.profile-icon {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 8px;
}

/* Adjust margins for mobile */
@media (max-width: 991px) {
  .navbar-toggler {
      margin-left: 10px;
  }
  
  .profile-icon-wrapper {
      order: 2; /* Places icon between brand and hamburger */
  }
}
/* Map container styles */
#map {
  display: none; /* Initially hidden */
  position: fixed;
  top: 10;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
}

/* Close button styles */

.profile-icon:hover {
  color: #e2ff0a;
}
.sidebar h1 {
  font-size: 1.8rem;
  margin: 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: #f1f1f1;
  font-weight: bold;
}
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #0538de, #00087e);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: width 0.5s ease;
  padding-top: 100px;
  /* line-gap-override: 0.5rem; */
  z-index: 1000;
}
.sidebar a.active {
  color: #ffffff !important; /* active link remains white */
  background: rgba(222, 222, 222, 0.97);
}

.sidebar a {
  padding: 10px 25px;
  text-decoration: dotted;
  font-size: 20px;
  color: #ffffff !important;
  display: block;
  transition: color 0.3s ease, background 0.3s ease;
}

.sidebar a:hover {
  color: #000000 !important;
  background: rgba(222, 222, 222, 0.97) !important;
}

.closebtn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.closebtn:hover {
  color: #ff4c4c;
}

/* Chatbot popup styles */
.chatbot-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.chatbot-popup.show {
  display: block;
}

.chatbot-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chatbot-header {
  padding: 15px;
  background: #007bff;
  color: white;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.close-chatbot {
  cursor: pointer;
  font-size: 1.5rem;
}

.chatbot-body {
  flex: 1;
  overflow: hidden;
}

.chatbot-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .chatbot-popup {
      width: 90%;
      height: 80vh;
      bottom: 70px; /* Adjust to prevent overlap with chat button */
      right: 5%;
      left: 5%;
  }

  .chatbot-header {
      padding: 10px 15px;
  }

  .chatbot-header h2 {
      font-size: 1.1rem;
  }

  /* Adjust chat button position */
  .chat-button {
      bottom: 20px;
      right: 20px;
  }
}

/* Additional mobile optimization */
@media screen and (max-height: 600px) {
  .chatbot-popup {
      height: 70vh;
  }
}

/* Ensure smooth transitions */
.chatbot-popup {
  transition: all 0.3s ease;
}

/* Optional: Add backdrop for better UX on mobile */
.chatbot-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.chatbot-backdrop.show {
  display: block;
}

.chatbot-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 25px;
  background: #0078ef;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}


.close-chatbot {
  cursor: pointer;
  font-size: 24px;
  color: white;
}

.show {
  display: block !important;
}
.overlay-content h1,
.overlay-content p {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004494;
}
/* Updated Background Image Styles */
.background-image {
  position: relative;
  min-height: calc(100vh - 10px); /* Adjust based on footer height */
  color: rgb(255, 255, 255);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  margin: 0;
  overflow: hidden; /* Ensure the pseudo-element doesn't overflow */
}

.background-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/landing page image.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.85; /* Adjust this value to change image opacity */
  z-index: -1; /* Ensure the image stays behind the text */
}

/* Overlay Content Styles */
/* Overlay Content Styles */
/* Restore Overlay Content Appearance */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Header Styles */
h1 {
  text-align: center;
  color: var(--primary-color);
  margin-top: 20px;
}
/* Custom styles for Login and Sign Up buttons */
/* Custom Navbar Signup & Login Button Styles */
.navbar .btn-primary {
  background: linear-gradient(45deg, #007bff, #6f42c1);
  border: none;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 16px;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.navbar .btn-primary:focus {
  outline: none;
  box-shadow: none;
}

.navbar .btn-primary:hover {
  background: linear-gradient(45deg, #0056b3, #5a32a3);
  transform: scale(1.05);
}
/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-color) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  transition: background-color 0.1s ease;
}

.navbar-brand {
  font-weight: bold;
  color: #ffffff !important;
  border-color: var(--primary-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.navbar-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  z-index: -1;
}

.navbar-brand:hover {
  /* color: var(--hover-color) !important; */
  transform: scale(1.1);
}
.navbar-brand:hover::before {
  left: 0;
}

.nav-link {
  font-weight: bold;
  color: #ffffff !important;
  border-color: var(--primary-color);
  /* border: 3px solid var(--primary-color); */
  text-align: center;
  margin: 0 15px;
}
.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  z-index: -1;
}

.nav-link:hover {
  color: var(--hover-color) !important;
  transform: scale(1.1);
  transition: left 0.3s ease;
}

.nav-link:hover::before {
  left: 0;
}

.navbar-brand:hover {
  color: var(--hover-color) !important;
  /* border: 3px solid var(--primary-color);  */
  /* background-color: #004494;  */
  /* transition-delay: 0.5s; 
   animation-delay: initial ; */
}
.nav-link:hover {
  color: var(--hover-color) !important;
  /* background-color: #004494; */
  transition: transform 0.3s ease;
}

/* Center align navbar links */
.navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}
/* Custom Login and Signup Modal Color Styles */
/* Premium Modal Design */
#loginModal .modal-content,
#signupModal .modal-content {
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0056b3, #0066cc);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-family: var(--font-family);
}

#loginModal .modal-header,
#signupModal .modal-header {
  border-bottom: none;
  background: transparent;
  padding: 1.5rem;
}

#loginModal .modal-title,
#signupModal .modal-title {
  font-size: 1.75rem;
  font-weight: bold;
}

#loginModal .modal-body,
#signupModal .modal-body {
  background: transparent;
  padding: 2rem;
}

#loginModal .modal-body input,
#signupModal .modal-body input,
#loginModal .modal-body textarea,
#signupModal .modal-body textarea {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 15px;
  color: #212529;
}

#loginModal .modal-body input:focus,
#signupModal .modal-body input:focus,
#loginModal .modal-body textarea:focus,
#signupModal .modal-body textarea:focus {
  border-color: #fff;
  outline: none;
}

#loginModal .modal-footer,
#signupModal .modal-footer {
  border-top: none;
  background: transparent;
  padding: 1rem;
}

/* Premium Submit Button */
#loginModal button[type="submit"],
#signupModal button[type="submit"] {
  background: #fff;
  color: #0056b3;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

#loginModal button[type="submit"]:hover,
#signupModal button[type="submit"]:hover {
  transform: scale(1.05);
}
/* Custom Button Styles */
/* Custom Button Styles */
/* Update btn-outline-primary to match btn-primary */
.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  border: 3px solid var(--primary-color);
  color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-outline-primary:hover {
  background-color: #004494;
  /* Darker shade for hover effect */
  border-color: #004494;
  color: #fff;
  transform: scale(1.1);
}

.btn-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  border: 3px solid var(--primary-color);
  color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
  background-color: #004494; /* Darker shade for hover effect */
  border-color: #004494;
  transform: scale(1.1);
}

/* Navbar Styles */
.navbar {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Flexbox for Navbar Items */
/* Ensure buttons do not wrap on multiple lines */
.navbar .d-flex {
  flex-wrap: nowrap;
}

.navbar .d-flex a {
  white-space: nowrap;
}
/* General Section Styles */
/* Replace your existing section styles with the following */

/* Unified Section Styles (similar to homepage) */
/* Common Section Styles */
section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
  z-index: -1;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* This will set 30px space between each item */
  justify-content: center;
}
/* Overlay Content Styles */
/* Enhanced Overlay Content Styles */
.overlay-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.6)
  );
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  color: #000000; /* Text color */
}

.overlay-content:hover {
  transform: none;
  background-color: rgba(255, 255, 255, 0.4); /* More opaque on hover */
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.736);
}

.overlay-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: rgb(0, 0, 0);
}

.overlay-content .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: background-color 0.3s, transform 0.3s;
}

.overlay-content .btn-primary:hover {
  background-color: #004494;
  transform: scale(1.1);
}

.overlay-content a {
  text-decoration: none;
}

.overlay-content a:hover {
  text-decoration: none;
}
#about .overlay-content h1,
#tours .overlay-content h1,
#contact .overlay-content h1 {
  color: #000000 !important;
  text-shadow: none; /* Remove any text-shadow if needed */
}
/* Responsive Design */
@media (max-width: 768px) {
  .overlay-content h1 {
    font-size: 2rem;
  }

  .overlay-content p {
    font-size: 1rem;
  }
}
/* About Us Section */
/* About Us Section */
#about {
  min-height: 100vh; /* Ensures the section covers the full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  /* Remove the background-image property from here if present */
}
#about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("images/about us.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8; /* Adjust this value for desired image opacity */
  z-index: -1;
}

/* Styles for the Read More button */
#read-more-btn {
  margin-top: 20px;
  cursor: pointer;
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

#read-more-btn:hover {
  /* background-color: #004494; */
  transform: scale(1.05);
}

#about h1 {
  color: var(--primary-color);
  color: #ddd;
}

#about p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Slider Container */
.slider {
  position: relative;
  overflow: visible; /* Allow arrows to be visible outside the slider */
  max-width: 800px;
  /* Adjust as needed */
  margin: auto;
}
.slider {
  position: relative;
}

.slide {
  transition: opacity 0.3s ease-in-out;
}

.slider.transitioning {
  pointer-events: none;
}

/* Slider Arrow Buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  transition: opacity 1s ease-in-out;
  z-index: 10;
}

/* Position arrows outside the slider box */
.arrow.left {
  left: -50px;
}

.arrow.right {
  right: -50px;
}

#destinations {
  /* Remove the background-image properties from the element itself */
  min-height: 100vh; /* Ensures the section covers the full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff; /* Ensure text is readable over the image */
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

/* Use the ::before pseudo-element for the background image with reduced opacity */
#destinations::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("images/destinations.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1; /* Adjust this value for desired image opacity */
  z-index: -1;
}

#destinations > * {
  position: relative;
  z-index: 1;
}

#destinations h1 {
  /* color: var(--primary-color); */
  color: #fffefe;
  /* line-height: 20%; */
  /* box-height: 20%; */
}

#destinations p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #000000;
  line-height: 1.6;
}
/* Custom styling for the Destinations section header (without overlay) */
#destinations > .overlay-content {
  background: rgba(255, 255, 255, 0.5); /* Whitish background */
  box-shadow: 0 8px 16px rgba(12, 10, 10, 0.5);
  border: none;
  padding: 20px;
  margin-bottom: 30px;
}
#destinations h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;

  color: #000000;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#destinations > .overlay-content h1 {
  /* background-color: ; */
  font-size: 3rem;
  color: #000000;
  background: rgba(200, 255, 255, 0.5);
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
  margin: 0;
}

#destinations > .overlay-content p {
  font-size: 1.5rem;
  color: #000000;

  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-top: 10px;
}
#destinations .container .overlay-content {
  background: rgba(255, 255, 255, 0.6); /* White-ish background */
  color: #ebebeb; /* Dark text for contrast */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 8);
  border: none;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  max-width: 300 px; /* Set a max-width for the overlay content */
}

#destinations .container .overlay-content:hover {
  transform: scale(1.05) translateY(-5px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0);
}

/* Tours & Packages Section */
#tours {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  /* Remove the background-image property from here if present */
}
#tours::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("images/tours and prices.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85; /* Adjust this for desired opacity */
  z-index: -1;
}

#tours h1 {
  color: var(--primary-color);
  color: #ddd;
}

#tours p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Contact Us Section */
#contact {
  background-image: url("images/contact2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 150vh;
  opacity: 0.9;
}

#contact h1 {
  color: var(--primary-color);
  color: #ddd;
}
/* Remove margin and padding from the main container */
main {
  margin: 0;
  padding: 0;
}

/* Ensure the footer is directly below the content */
footer {
  margin-top: 0;
}

/* Remove any margin or padding from the image container */
.image-container {
  margin: 0;
  padding: 0;
}
#contact p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
/* Contact Form Styles */
#contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#contact .overlay-content:hover {
  transform: none !important;
  background-color: rgba(30, 22, 22, 0.8) !important;
  box-shadow: none !important;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1; /* Change from -1 to ensure overlay is above the background */
}

/* And update the main section CSS */
#contact {
  background-image: url("images/contact2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  opacity: 0.9;
  position: relative;
  overflow: hidden; /* Add this to prevent any content from spilling */
}

/* Make sure the content stays above the overlay */
#contact > * {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

button[type="submit"] {
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

button[type="submit"]:hover {
  background-color: #004494;
  transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 768px) {
  section {
    padding: 40px 10px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .d-flex {
    justify-content: center;
    margin-top: 10px;
  }
}
/* Footer Styles */
footer {
  background-color: #212121;
  color: #ffffff;
  border-top: 10px solid #ddd;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  margin: 0;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
    }
} */
