:root {
  /* Brand Colors */
  --brand-primary: #d40000;
  --brand-dark: #001b35;
  --brand-accent: #a80000;

  /* Neutrals */
  --brand-white: #ffffff;
  --brand-light: #f8f9fa;
  --brand-gray: #6c757d;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;

  /* UI Tokens */
  --brand-radius: 0.5rem;
  --brand-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  --navbar-height: 88px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--brand-white);
  color: var(--brand-dark);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  overflow-x: hidden; /* Only content gets clipped, navbar stays sticky */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(to right, var(--brand-dark), var(--brand-primary));
  border: none;
  color: var(--brand-white);
  border-radius: var(--brand-radius);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-image: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transform: scale(1.03);
}


/* Background & Text Utilities */
.bg-dark {
  background-color: var(--brand-dark) !important;
}
.bg-primary {
  background-color: var(--brand-primary) !important;
}

.bg-gradient {
  background: linear-gradient(to right, var(--brand-dark), var(--brand-primary))!important;
}

.text-primary {
  color: var(--brand-primary) !important;
}
.text-accent {
  color: var(--brand-accent) !important;
}

.text-gradient {
  background: linear-gradient(to right, var(--brand-dark), var(--brand-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* For Firefox */
  background-clip: text;
  color: transparent;
}

/* Common Spacing */
.section {
  padding: 80px 0;
}

/* 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: linear-gradient(to right, var(--brand-dark), var(--brand-primary));
  border-bottom: none;
  padding: 1rem 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-white);
  font-family: var(--font-primary);
}

/* Modal Body */
.modal-body {
  padding: 2rem 1.75rem;
  font-family: var(--font-primary);
  background-color: var(--brand-light);
}

/* Form Label */
.form-label {
  font-weight: 600 !important;
  color: var(--brand-dark) !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 ease, box-shadow 0.3s ease !important;
  box-shadow: none !important;
  outline: none !important;
}

.form-control:focus {
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 2px rgba(212, 0, 0, 0.1) !important;
  outline: none !important;
}

textarea.form-control {
  resize: none !important;
  min-height: 100px;
}

/* =============== GENERAL RESET =============== */

/* Remove all native focus outlines and Bootstrap focus shadows */
input:focus,
textarea:focus,
select:focus,
button:focus,
.btn:focus,
.btn:focus-visible,
.btn:active:focus,
.btn-check:focus + .btn {
  outline: none !important;
  box-shadow: none !important;
}

/* =============== SUBMIT BUTTON STYLES =============== */

button[type="submit"],
.btn-submit {
  background-color: var(--brand-primary) !important;
  border: none !important;
  color: var(--brand-white) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover,
.btn-submit:hover {
  background-color: var(--brand-accent) !important;
  transform: translateY(-1px);
}

button[type="submit"]:active,
.btn-submit:active {
  background-color: #901010 !important;
  transform: scale(0.98);
}

/* Top Bar Styles */
.top-bar {
  background: linear-gradient(to right, var(--brand-dark), var(--brand-primary));
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: var(--brand-white);
  padding-block: 0.4rem;
}

/* Contact info (Left side) */
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

/* Make icons visually aligned */
.topbar-left i,
.top-bar-social-icon {
  vertical-align: middle;
  font-size: 1.05rem;
}

/* Social Icons (Right side) */
.top-bar-social-icon {
  color: var(--brand-white);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.top-bar-social-icon:hover {
  color: var(--brand-dark);
  background-color: var(--brand-white);
  transform: scale(1.1);
}

/* -----------------------------------
   Navigation & Offcanvas Styles
----------------------------------- */
/* Navbar Base */
.navbar {
  height: var(--navbar-height);
  background-color: var(--brand-white);
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
}

.navbar.shadow {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

/* Logo */
.navbar-brand img {
  height: 62px;
}

/* Toggler */
.navbar-toggler {
  border: none;
  font-size: 1.25rem;
  outline: none;
  box-shadow: none;
}

/* Nav Link */
.navbar-nav .nav-link {
  color: var(--brand-dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--brand-primary);
}

/* Remove Bootstrap caret completely */
.navbar-nav .nav-link::after {
  display: none !important;
}

/* Chevron Rotation */
.hover-dropdown > a .bi-chevron-down {
  transition: transform 0.3s ease;
  display: inline-block;
}

.hover-dropdown:hover > a .bi-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown visibility on hover */
.hover-dropdown {
  position: relative;
}

.hover-dropdown > .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.hover-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Prevent dropdown from instantly closing on mouseout */
.dropdown-menu {
  pointer-events: auto;
  padding: 0.5rem 0;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--brand-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  z-index: 1000;
}

/* Dropdown Items */
.dropdown-item {
  padding: 0.65rem 1.2rem;
  font-weight: 500;
  color: var(--brand-dark);
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(212, 0, 0, 0.05);
  color: var(--brand-primary);
}

/* Fade-Up Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=========================================
  Responsive Behavior
=========================================*/

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--brand-white);
    padding: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    animation: none;
  }

  .hover-dropdown .dropdown-toggle::after {
    display: none;
  }
}

/* ========================
   OFFCANVAS CUSTOM STYLES
=========================== */

.custom-offcanvas {
  width: 260px !important;
  background-color: #fff;
  border-left: 1px solid #dee2e6;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.custom-offcanvas .offcanvas-backdrop.show {
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(1px);
}

.custom-offcanvas .offcanvas-body {
  overflow-y: auto;
  padding: 1rem;
}

/* Chevron Icon Rotation for Collapsible Items */
.nav-link[aria-expanded="true"] i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* Nested Collapse Menu Items */
.custom-offcanvas .offcanvas .collapse .nav-link {
  padding-left: 1rem;
  font-size: 0.875rem;
  color: #555;
}

/* Prevent body scroll when offcanvas is open */
body.offcanvas-open {
  overflow: hidden;
}

/* Optional: subtle background overlay blur effect */
body.offcanvas-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  z-index: 1040; /* Just below Bootstrap's offcanvas z-index */
  pointer-events: none;
}

.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-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: 20px;
  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-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--brand-dark), var(--brand-primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.icon-circle-big {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--brand-dark), var(--brand-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Pulsing animated rings */
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 75, 43, 0.3);
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

 /* Service Cards */
.service-card {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
  color: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* Keep content centered */
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* Icon Wrapper */
.icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Tech Icon Styles */
.tech-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

.tech-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto;
  padding: 1rem;
  transition: transform 0.3s ease;

}

.tech-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.tech-icon:hover {
  transform: scale(1.1);
}

/* Gradient Backgrounds */
.bg-react {
  background: linear-gradient(135deg, #e0f7ff, #b3e5fc);
}
.bg-laravel {
  background: linear-gradient(135deg, #ffe5e5, #ffcccc);
}
.bg-python {
  background: linear-gradient(135deg, #fff7d1, #ffe082);
}
.bg-node {
  background: linear-gradient(135deg, #e6f7e6, #c8e6c9);
}
.bg-js {
  background: linear-gradient(135deg, #fffde7, #fff9c4);
}
.bg-android {
  background: linear-gradient(135deg, #f1f8e9, #dcedc8);
}
.bg-java {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}
.bg-mysql {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.bg-flutter {
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
}

/* New Backgrounds */
.bg-bootstrap {
  background: linear-gradient(135deg, #f8f9fa, #e2e6ea);
}
.bg-tailwind {
  background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
}
.bg-php {
  background: linear-gradient(135deg, #e1e4f2, #cdd4f2);
}


.transition {
    transition: all 0.3s ease;
}

/* Portfolio */

/* Gradient left panel */
.gradient-panel {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  color: #fff;
  min-height: 100%;
}

.gradient-panel h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.gradient-panel p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

/* Portfolio Cards */
.portfolio-card {
  position: relative;
  border-radius: 14px;
  height: 200px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.portfolio-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.portfolio-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card img:hover {
  transform: scale(1.05);
}

.portfolio-card .badge {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.4rem 0.6rem;
}

.portfolio-card .btn-sm {
  font-size: 0.8rem;
  padding: 4px 10px;
}

 .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
  }
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .blog-img-wrapper img {
    transition: transform 0.4s ease;
  }
  .blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
  }

/* Section Background */
.testimonials-section {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
  padding: 60px 20px 50px; /* less bottom padding */
  margin-bottom: 0;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-header {
  padding: 15px;
  background: rgba(255,77,77,0.05);
  text-align: center;
}

.quote-icon {
  font-size: 2rem;
  color: #ff4d4d;
}

.card-body {
  padding: 20px;
  flex-grow: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4.5em; /* keeps height consistent */
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(0,0,0,0.02);
}

.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.star-rating {
  color: #ffcc00;
  font-size: 0.9rem;
}

/* Fix Slick wrapping layout */
.slick-slide > div {
  height: 100%;
}
.slick-slide {
  padding: 10px;
}

/* Custom Arrows Bottom Center */
.testimonial-nav {
  text-align: center;
  margin-top: 20px;
}

.slick-prev-custom,
.slick-next-custom {
  background: #fff;
  border: none;
  color: var(--brand-primary);
  font-size: 1.5rem;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* Footer Container Styling */
#footer {
  position: relative; /* Needed for overlay positioning */
  background: url('../img/footer-world-map.png') center/cover no-repeat; /* lighter fallback */
  color: #f5f5f5;
  padding-top: 50px;
  margin-top: 0;
  padding-bottom: 30px;
}

/* Optional: dark transparent overlay for text contrast */
#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9); /* 60% black overlay */
  z-index: 0;
}

#footer > * {
  position: relative;
  z-index: 1; /* Ensure content appears above overlay */
}

#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;
  }
}

/* Popular Searches Tags */
.popular-searches {
  border-radius: 8px;
}

.popular-tags .tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  color: #ddd;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.popular-tags .tag:hover {
  background: var(--brand-white);
  color: var(--brand-dark)!important;
}

/* Floating Button Position */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 85px;
  z-index: 999;
  text-decoration: none;
}

/* Container Styling */
.whatsapp-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #14ba52;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 0.5s ease forwards;
}

/* Hover Effect */
.whatsapp-container:hover {
  background-color: #43a047;
  transform: translateY(-3px);
}

/* WhatsApp Icon */
.whatsapp-container i {
  font-size: 22px;
}

/* Text Styling */
.whatsapp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.chat-title {
  font-size: 14px;
  font-weight: bold;
}

.chat-subtitle {
  font-size: 11px;
  opacity: 0.9;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hide on small screens */
@media (max-width: 640px) {
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  text-decoration: none;
}  
 .whatsapp-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #14ba52;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 0.5s ease forwards;
}

/* Hover Effect */
.whatsapp-container:hover {
  background-color: #43a047;
  transform: translateY(-3px);
}

/* WhatsApp Icon */
.whatsapp-container i {
  font-size: 22px;
}


/* Text Styling */
.whatsapp-text {
  display: none;
}

.chat-title {
  display: none;
}

.chat-subtitle {
  display: none;
}

}

/* Back to Top Button Styling */
#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 48px;          /* Match WhatsApp icon container height */
  height: 48px;         /* Perfect circle */
  border-radius: 50%;   /* Circular */
  border: none;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
  color: #fff;
  display: none;        /* Initially hidden */
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn:hover {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));;
  transform: translateY(-3px);
}

#backToTopBtn i {
  font-size: 1.2rem;
  line-height: 1;
}


/* === 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;
}




