:root {
  --primary-blue: #4a90e2;
  --primary-color: #4e73df;
  --primary-green: #61a7a6;
  --accent-navy: #1e3a8a;
  --accent-beige: #f4f1e1;
  --neutral-white: #ffffff;
  --neutral-gray: #d1d1d1;
  --hover-color: #3a5ecc;
  --light-bg: #f8f9fc;
}

body {
  font-family: "Lato", sans-serif;
  color: #333;
  background-color: #fafafa;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/* Stylish Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-navy);
}

.logo-text {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.navbar {
  background-color: var(--neutral-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 8px 0;
}

.navbar-brand {
  color: var(--primary-blue);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 8px 15px;
  margin: 0 5px;
  transition: all 0.3s;
}

@media (max-width: 767px) {

  .nav-link {
    color: #333;
    font-weight: 500;
    position: relative;
    padding: 8px 15px;
    margin: 0 5px;
    transition: all 0.3s;
    text-align: center;
  }

  .lang-button {
    text-align: center!important;
  }
  .user-dropdown-menu {
   margin-left: 15px;
  }

  .log-buttons{
justify-content: center!important;
  }
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.lang-select {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}


.btn {
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease-in-out;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-navy);
  border-color: var(--accent-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  box-shadow: 0 4px 10px rgba(97, 167, 166, 0.3);
}

.btn-secondary:hover {
  background-color: #4a8887;
  border-color: #4a8887;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(74, 136, 135, 0.4);
}

.how-it-works {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(97, 167, 166, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.process-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
  transition: all 0.4s;
}

.process-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}

.process-item:hover .process-icon {
  transform: translateY(-5px);
}

.process-item:hover .process-icon::before {
  opacity: 1;
  transform: scale(1.2);
}

.process-icon i {
  color: white;
  font-size: 35px;
}

.process-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-navy);
}

.process-desc {
  color: #666;
}

.testimonial-section {
  /*padding: 80px 0;*/
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin: 15px 0;
  position: relative;
  transition: all 0.4s;
  border-top: 4px solid transparent;
}

.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 60px;
  color: rgba(74, 144, 226, 0.1);
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-top-color: var(--primary-blue);
}

.user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.testimonial-card:hover .user-img {
  transform: scale(1.1);
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: #555;
}

.rating {
  margin-top: 10px;
}

.rating i {
  color: #ffd700;
  margin-right: 2px;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-navy), #152b72);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-section::before {
  top: -100px;
  right: -50px;
}

.cta-section::after {
  bottom: -100px;
  left: -50px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.booking-form {
  background-color: var(--neutral-white);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  padding: 30px;
  position: relative;
  z-index: 1;
}

.booking-form label {
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
}

.form-control {
  height: 46px;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-select {
  height: 46px;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.time-slot {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.time-slot:hover {
  border-color: var(--primary-blue);
  background-color: rgba(74, 144, 226, 0.05);
}

.time-slot.active {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.service-booking {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-booking::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: rgba(97, 167, 166, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.booking-img {
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.booking-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

footer {
  background-color: #1a1a1a;
  color: var(--neutral-white);
  padding: 60px 0 20px;
  position: relative;
}
@media (max-width: 767px) {
  footer {
    background-color: #1a1a1a;
    color: var(--neutral-white);
    padding: 60px 0 20px;
    position: relative;
    text-align: center;
  }
  .social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .footer-links h5::after{
    margin-left: 150px;
  }
  
}

.footer-links h5 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.footer-links h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-blue),
    var(--primary-green)
  );
  border-radius: 3px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #b0b0b0;
}

.footer-contact li i {
  width: 25px;
  color: var(--primary-blue);
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--neutral-white);
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--primary-blue);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  animation: pulse-green 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1fa855;
  transform: scale(1.1);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.back-to-top:hover {
  background-color: var(--accent-navy);
  transform: translateY(-5px);
}

/* Language selection style enhancements */
.language-selection {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.language-btn {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.language-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

/* .language-btn:hover::before {
  width: 100%;
}

.language-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

/* Mobile responsiveness optimizations */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .process-icon {
    width: 80px;
    height: 80px;
  }

  .process-icon i {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-shape {
    width: 150px;
    height: 150px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .process-item {
    margin-bottom: 40px;
  }

  .service-booking {
    padding: 60px 0;
  }

  .booking-form {
    margin-top: 40px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.6rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon i {
    font-size: 28px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }
}

/* our services card*/
.service-card {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  padding: 1.5rem;
  height: 100%;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.service-img-container {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}

.service-img {
  max-width: 90%;
  max-height: 130px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.7rem;
  position: relative;
  display: inline-block;
}

.service-title:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.service-card:hover .service-title:after {
  width: 60px;
}

.service-description {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.service-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  opacity: 1;
  transform: translateY(0);
}

.service-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(78, 115, 223, 0.1);
  color: var(--primary-color);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-badge {
  opacity: 1;
  transform: translateX(0);
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-img-container {
    height: 130px;
  }
}

@media (max-width: 767.98px) {
  .page-header {
    padding: 2rem 0;
  }

  .service-img-container {
    height: 120px;
  }

  .service-img {
    max-height: 100px;
  }
}

@media (max-width: 575.98px) {
  .col-6 {
    width: 100%;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
}

/* Modal Styles */
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #224abe 100%);
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 1.5rem;
  position: relative;
  border-bottom: none;
}

.modal-title {
  font-weight: 600;
  font-size: 1.3rem;
}

.modal-body {
  padding: 1.8rem;
}

.form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 0.6rem 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: none;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.15);
}

.modal-footer {
  border-top: none;
  padding: 1rem 1.8rem 1.8rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 10px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(78, 115, 223, 0.2);
}

.btn-outline-secondary {
  border-radius: 10px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  color: #6c757d;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

.modal-icon {
  margin-right: 8px;
}

/* Form validation styles */
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.875em;
  margin-top: 0.25rem;
}

/* Animation for modal */
.modal.fade .modal-dialog {
  transform: translateY(-20px);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

/* Datepicker styling */
input[type="date"],
input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2rem;
  background-color: #fff;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0.7;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
