 body {
      font-family: 'Poppins', sans-serif;
    }

/* Modal Container */
.modal-content {
  border-radius: 1.25rem;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Modal Header */
.modal-header {
  background-color: #212529;
  border-bottom: none;
  padding: 1rem 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

/* Modal Body */
.modal-body {
  padding: 2rem 1.75rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

/* Form Label */
.form-label {
  font-weight: 600 !important;
  color: #444 !important;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Input & Textarea */
.form-control {
  width: 100%;
  border-radius: 0.6rem !important;
  border: 1.5px solid #ccc !important;
  padding: 12px 14px !important;
  background-color: #fff !important;
  color: #333 !important;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  box-shadow: none !important;
  outline: none !important;
}

.form-control:focus {
  border-color: #dc3545 !important;
  box-shadow: none; !important;
  outline: none !important;
}

textarea.form-control {
  resize: none !important;
  min-height: 100px;
}

/* Remove native outlines */
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
}

/* Submit Button */
button[type="submit"] {
  background-color: #dc3545 !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #c82333 !important;
  transform: translateY(-1px);
}

button[type="submit"]:active {
  background-color: #bd2130 !important;
  transform: scale(0.98);
}
/* -----------------------------------
   Navigation & Offcanvas Styles
----------------------------------- */

/* Navbar Hover Underline Effect */
.nav-link {
  position: relative;
  display: inline-block;
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 4px;
  bottom: 2px;
  width: 0%;
  height: 2px;
  background-color: #dc3545;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 90%;
}

/* Brand Image */
.navbar-brand img {
  height: 80px;
}

/* Toggler Customization */
.navbar-toggler {
  padding: 0.25rem 0.75rem;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.btn:focus,
.btn:active,
.btn-close:focus,
.btn-close:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Offcanvas Full Height & Smooth Slide */
.offcanvas-end {
  width: 260px!important;
  background-color: #fff;
  border-left: 1px solid #dee2e6;
  transition: transform 0.4s ease-in-out, opacity 0.3s ease;
}

/* Custom Overlay */
.offcanvas-backdrop.show {
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(1px);
  transition: background-color 0.4s ease;
}

/* Make offcanvas scrollable if content exceeds */
.offcanvas-body {
  overflow-y: auto;
}

/* Adjust nav alignment for mobile */
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .nav-link {
    width: 100%;
  }
  .navbar-brand img {
  height: 60px!important;
  width: 140px!important;
}
}


.hero {
  background: #f8f9fa;
  padding: 100px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  color: #d40000;
}
.hero p {
  font-size: 1.2rem;
  color: #333;
}

.animated-float {
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


   .btn-primary {
      background: linear-gradient(135deg, #d40000, #a80000);
      border: none;
      color: #fff;
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #b00000, #8a0000);
    }

    .btn-outline-danger {
      color: #d40000;
      border: 2px solid #d40000;
      background-color: transparent;
      transition: all 0.3s ease;
    }

    .btn-outline-danger:hover {
      background: linear-gradient(135deg, #d40000, #a80000);
      color: #fff;
      border-color: transparent;
    }

    .text-danger {
      color: #d40000 !important;
    }

  .section-title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #212529;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

/* Underline Accent */
.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #dc3545;
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* Optional: On hover of section, animate underline */
.section-title:hover::after {
  width: 120px;
}


  .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  .transition {
    transition: all 0.3s ease;
  }

/* Portfolio */

.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.portfolio-overlay {
  background: linear-gradient(to top, rgba(212, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}


/* Footer Container Styling */
#footer {
  background-color: #232323; /* Dark background for a modern, sleek look */
  color: #f5f5f5; /* Light text for contrast */
  padding-top: 50px;
  padding-bottom: 30px;
}

#footer h5, #footer h6 {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  font-weight: 600;
}

#footer .text-muted {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #b0b0b0;
}

/* Links in footer */
#footer a {
  font-family: 'Roboto', sans-serif;
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

#footer a:hover {
  color: #ff7f50; /* Orange color on hover */
  transform: translateX(5px); /* Smooth hover effect */
}

/* Footer sections */
#footer .col-md-3 {
  margin-bottom: 30px;
}

#footer .col-md-3 h6 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Legal Links Styling */
#footer .list-unstyled li {
  margin-bottom: 15px;
}

#footer .list-unstyled li a {
  color: #b0b0b0;
  font-size: 0.95rem;
}

/* Social Media Icons */
.social-icon {
  font-size: 1.7rem;
  color: #b0b0b0;
  margin-right: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #ff7f50;
  transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

/* Divider styling */
#footer hr {
  border-top: 1px solid #444444;
  width: 90%;
  margin-top: 40px;
}

/* Small Text */
#footer .small {
  font-size: 0.85rem;
  color: #999999;
}

/* Footer Bottom Section */
#footer .text-center {
  font-size: 0.85rem;
  color: #e0e0e0;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
  #footer .col-md-3 {
    text-align: center;
    margin-bottom: 20px;
  }

  #footer .d-flex {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #footer .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #footer .col-md-3 h6 {
    font-size: 1rem;
  }

  #footer .social-icon {
    font-size: 1.5rem;
  }

  #footer .small {
    font-size: 0.8rem;
  }
}

#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 999;
  display: none;
  background-color: #212529;
  color: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 14px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #ffc107;
  color: #212529;
}

/* === Page Hero Section === */
.page-hero-section {
  background: url("../img/page-hero.webp") center center/cover no-repeat;
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  color: #fff;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

.page-hero-section .container {
  position: relative;
  z-index: 2;
}

.page-hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.page-hero-section p.lead {
  font-size: 1.2rem;
  color: #ffc107;
}

/* === Breadcrumb Section === */
.breadcrumb {
  background: transparent;
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0.375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6c757d;
}

.breadcrumb-item {
  position: relative;
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #d40000;
  padding: 0 0.6rem;
  font-weight: bold;
  font-size: 1rem;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.breadcrumb-item a:hover {
  color: #d40000;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #d40000;
  font-weight: 600;
  cursor: default;
}


/* === Refund Policy Section === */
.refund-policy-section {
  background-color: #ffffff;
  padding: 4rem 0;
  color: #000;
}

.refund-policy-section h2 {
  color: #d40000;
  font-weight: 600;
  padding-left: 10px;
  margin-bottom: 1rem;
}

/* === Custom List === */
.custom-list {
  padding-left: 1.5rem;
  list-style: none;
}

.custom-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.7rem;
}

.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d40000;
  font-weight: bold;
}

/* === Typography === */
.policy-content {
  line-height: 1.75;
  font-size: 1.05rem;
  font-family: 'Segoe UI', sans-serif;
}

.policy-content strong {
  color: #000;
}

/* === Links === */
.policy-content a {
  color: #d40000;
  text-decoration: underline;
  font-weight: 500;
}

.policy-content a:hover {
  color: #a80000;
  text-decoration: none;
}

/* === Last Updated Note === */
.policy-content .text-muted {
  font-size: 0.9rem;
  color: #6c757d !important;
}




