/* Hero Section Of Contact Page */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/contact-us.jpg");
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 8px;
  opacity: 0.95;
}

.contact-hero span {
  color: #01c08f;
}

/* Contact Section */
.contact-section {
  padding: 0px 0;
  background-color: #f8f9fa;
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 20px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  height: auto;
}

.contact-form .form-control:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
  color: white;
}

/* Contact Info */
.contact-info-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 24px;
}

.contact-details h5 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-details p {
  color: #6c757d;
  margin: 0;
}

.contact-details a {
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: #1a73e8;
}

/* Map Section */
.map-section {
  padding: 0px 0;
  background: white;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.map-placeholder {
  background: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #6c757d;
}

.map-placeholder i {
  font-size: 48px;
  margin-bottom: 15px;
  color: #1a73e8;
}

/* FAQ Section */
.faq-section {
  padding: 0px 0;
  background-color: #edeff1;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
}

.faq-title p {
  color: #6c757d;
  margin-top: 10px;
}

.faq-accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-accordion-button {
  background-color: white;
  font-weight: 600;
  color: #2c3e50;
  padding: 20px;
}

.faq-accordion-button:not(.collapsed) {
  background-color: rgb(18, 17, 17);
  color: #ffff;
  box-shadow: none;
}

.faq-accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.faq-accordion-body {
  padding: 20px;
  color: #6c757d;
}

/* TERMS AND CONDITON SECTION START */
.terms-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/termsandcondition.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
  margin-top: 5rem !important;
}

.terms-header h1 {
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.terms-header p {
  font-size: 16px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 8px;
  opacity: 0.95;
}

.terms-header span {
  color: #01c08f;
}

.terms-content-section {
  padding: 60px 0;
}

.toc-card {
  background: #f8f9fa;
  border-left: 4px solid #01c08f;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  z-index: 20;
}

.toc-card h3 {
  color: #01c08f;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.toc-list {
  list-style: none;
  padding: 0;
}

.toc-list li {
  padding: 8px 0;
}

.toc-list a {
  color: #5e5e5e;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding-left: 20px;
  position: relative;
}

.toc-list a:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #01c08f;
}

.toc-list a:hover {
  color: #01c08f;
  padding-left: 25px;
}

.terms-section {
  margin-bottom: 0px;
  scroll-margin-top: 10px;
}

.terms-section h2 {
  font-family: "Montserrat", sans-serif;
  color: #01c08f;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #01c08f;
}

.terms-section h3 {
  font-family: "Montserrat", sans-serif;
  color: #0aa77e;
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

.terms-section p {
  margin-bottom: 15px;
  text-align: justify;
}

.terms-section ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

.terms-section li {
  margin-bottom: 10px;
}

.terms-highlight-box {
  background: #f0fdf9;
  border-left: 4px solid #01c08f;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
}

.terms-last-updated {
  background: #6c757d;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 30px;
  text-align: center;
}

/* PAYMNET PAGE SECTION */
.paymnet-main {
  line-height: 1.6;
  color: #1f2937;
  background-color: #f9fafb;
  min-height: 100vh;
}

/* paymnet-about-hero Section */
.paymnet-about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/payment-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
}

.paymnet-about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.paymnet-about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.paymnet-about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.paymnet-about-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
  margin: 0 auto 8px;
}

.paymnet-about-hero span {
  color: #01c08f;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Payment Section */
.payment-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding: 40px 0px;
}

/* QR Code Section */
.qr-section {
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px !important;
}

.qr-section::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
      #10b981,
      #3b82f6,
      #10b981);
  /* Replaced --primary-color and --secondary-color */
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.qr-section:hover::before {
  opacity: 1;
}

.qr-container {
  position: relative;
  display: inline-block;
  margin: 20px 0;
}

.qr-code {
  width: 300px;
  height: 300px;
  border: 8px solid #f9fafb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.qr-section:hover .qr-code {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.payment-instructions-points {
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  margin: 0;
}

.payment-instructions-points li {
  counter-increment: list-counter;
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  color: #000;
}

.payment-instructions-points li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: sans-serif;
}



/* Instructions Section */
.paymnet-instructions-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.paymnet-instructions-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 15px;
}

.paymnet-instructions-title i {
  color: #10b981;
}

.paymnet-paymnet-steps {
  list-style: none;
}

.paymnet-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px 15px;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.paymnet-step:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg,
      rgba(16, 185, 129, 0.1) 0%,
      rgba(59, 130, 246, 0.1) 100%);
}

.paymnet-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.paymnet-step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1f2937;
}

.paymnet-step-content p {
  color: #6b7280;
  font-size: 0.95rem;
}



/* Support Section */
.paymnet-support-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 2rem 0rem;
}

.paymnet-support-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
}

.paymnet-paymnet-support-options {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.paymnet-support-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.paymnet-support-option:hover {
  background: #f9fafb;
  transform: translateY(-5px);
}

.paymnet-support-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
}

.support-label {
  font-weight: 600;
  color: #1f2937;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 0.8s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blogs Details Page */
.blog-deatils {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.7;
}

.blog-details-container {
  padding: 100px 3px;
}

.blog-details-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #0a0a36;
}

.blog-details-meta-item {
  color: #6c757d;
}

.blog-details-meta-item i {
  color: #01c08f;
}

.blog-details-image {
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-details-content {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-details-intro {
  font-size: 1.2rem;
  color: #5e5e5e;
  font-weight: 500;
}

/* ===== Blog Base ===== */
.blog-details-body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.9;
  color: #444;
  font-size: 1.1rem;
}

/* ===== Paragraph ===== */
.blog-details-body p {
  margin-bottom: 1.5rem;
  color: #4a5568;
  font-weight: 400;
}

.blog-details-body strong {
  color: #1a202c;
  font-weight: 700;
}

/* ===== Headings ===== */
.blog-details-body h1,
.blog-details-body h2,
.blog-details-body h3,
.blog-details-body h4,
.blog-details-body h5,
.blog-details-body h6 {
  color: #1a2b48;
  font-weight: 700;
  margin: 3rem 0 1.25rem;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
}

.blog-details-body h1 {
  font-size: 2.5rem;
}

.blog-details-body h2 {
  font-size: 2.1rem;
  border-left: 5px solid #01c08f;
  padding-left: 15px;
  background: linear-gradient(to right, #f0fdf9, white);
  padding-top: 5px;
  padding-bottom: 5px;
}

.blog-details-body h3 {
  font-size: 1.75rem;
  color: #2d3748;
}

.blog-details-body h4 {
  font-size: 1.4rem;
}

/* ===== Spacing for First Element ===== */
.blog-details-body>*:first-child {
  margin-top: 0 !important;
}

/* ===== Lists ===== */
.blog-details-body ul,
.blog-details-body ol {
  padding-left: 0 !important;
  margin-bottom: 2rem !important;
  list-style: none !important;
}

.blog-details-body li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  color: #444;
  line-height: 1.7;
  list-style: none !important;
}

.blog-details-body ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0px;
  color: #01c08f;
  font-size: 1.1rem;
}

.blog-details-body ol {
  counter-reset: blog-ol-counter;
}

.blog-details-body ol li {
  counter-increment: blog-ol-counter;
}

.blog-details-body ol li::before {
  content: counter(blog-ol-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #01c08f;
}

/* ===== Hide Empty Tags ===== */
.blog-details-body p:empty,
.blog-details-body div:empty,
.blog-details-body span:empty {
  display: none !important;
}

/* ===== Links ===== */
.blog-details-body a {
  color: #01c08f;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 192, 143, 0.3);
  transition: all 0.3s ease;
}

.blog-details-body a:hover {
  color: #019a73;
  border-bottom-color: #019a73;
}

/* ===== Images ===== */
.blog-details-body img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2.5rem 0;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== Blockquote ===== */
.blog-details-body blockquote {
  background: #f0fdf9;
  border-left: 5px solid #01c08f;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.blog-details-body blockquote::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 2rem;
  color: rgba(1, 192, 143, 0.1);
}

.blog-details-body blockquote p {
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.blog-details-body blockquote cite {
  display: block;
  font-weight: 700;
  color: #0a0a36;
  font-style: normal;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ===== Tables ===== */
.blog-details-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.blog-details-body th,
.blog-details-body td {
  border: 1px solid #e5e5e5;
  padding: 12px 14px;
}

.blog-details-body th {
  background: #f1f1f1;
  font-weight: 600;
  color: #0a0a36;
}

/* ===== Code ===== */
.blog-details-body pre {
  background: #0f172a;
  color: #e5e7eb;
  padding: 1.2rem;
  border-radius: 12px;
  overflow-x: auto;
  margin: 2rem 0;
}

.blog-details-body code {
  background: #f1f1f1;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* ===== HR ===== */
.blog-details-body hr {
  border: none;
  height: 1px;
  background: #e5e5e5;
  margin: 3rem 0;
}

/* ===== Table Content Section ===== */
.blog-table-contents {
  margin-top: 4rem;
}

.table-content-item {
  background: #ffffff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 4rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 3rem;
}

.table-content-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.table-content-item h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #0a0a36;
}

.blog-details-table-desc {
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .blog-details-content {
    padding: 30px 15px;
  }
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
  .blog-details-body {
    font-size: 1rem;
  }

  .blog-details-body h1 {
    font-size: 1.8rem;
  }

  .blog-details-body h2 {
    font-size: 1.5rem;
  }

  .blog-details-body h3 {
    font-size: 1.3rem;
  }

  .table-content-item {
    padding: 1.4rem;
  }
}









/* ===== Blog Footer Elements ===== */
.blog-details-tag {
  background: #f8f9fa;
  color: #4a5568;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-details-tag:hover {
  background: #01c08f;
  color: #fff;
  border-color: #01c08f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 192, 143, 0.2);
}

.blog-details-navigation {
  margin-top: 5rem;
}

.blog-details-nav-item {
  flex: 1;
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  transition: all 0.3s ease;
  max-width: 48%;
}

.blog-details-nav-item:hover {
  border-color: #01c08f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.blog-details-nav-item i {
  color: #01c08f;
  font-size: 1.2rem;
}

.blog-details-nav-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a0aec0;
  margin-bottom: 5px;
}

.blog-details-nav-title {
  color: #2d3748;
  font-weight: 700;
  font-size: 1rem;
}

.blog-details-nav-item:hover .blog-details-nav-title {
  color: #01c08f;
}

/* Sidebar Styles */
.sidebar-widget {
  background: white;
  padding: 30px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.sidebar-widget-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #0a0a36;
  font-size: 1.5rem;
  border-bottom: 2px solid #01c08f;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-group label {
  color: #0a0a36;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form-group input,
.contact-form-group textarea {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #01c08f;
}

.contact-form-submit {
  background: #01c08f;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-form-submit:hover {
  background: #0aa77e;
}

/* Social Media */
.blog-details-social-link {
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #0a0a36;
  transition: all 0.3s ease;
}

.blog-details-social-link:hover {
  background: #01c08f;
  color: white;
  transform: translateX(5px);
}

.blog-details-social-link.facebook:hover {
  background: #3b5998;
}

.blog-details-social-link.twitter:hover {
  background: #1da1f2;
}

.blog-details-social-link.instagram:hover {
  background: #e4405f;
}

.blog-details-social-link.linkedin:hover {
  background: #0077b5;
}

.blog-details-social-link.youtube:hover {
  background: #ff0000;
}

/* Recent Posts */
.blog-details-recent-post-item {
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.blog-details-recent-post-item:hover {
  transform: translateX(5px);
}

.blog-details-recent-post-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-details-recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details-recent-post-title {
  font-weight: 600;
  color: #0a0a36;
  font-size: 0.95rem;
  line-height: 1.4;
}

.blog-details-recent-post-date {
  font-size: 0.85rem;
  color: #6c757d;
}

.blog-details-recent-post-date i {
  color: #01c08f;
}

/* Privacy and Policy Section */
.prav-poliy-section {
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.prav-policy-hero-section {
  background: linear-gradient(135deg, #024736 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
  margin-top: 4rem;
}

.content-prv-policy h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px Orgba(0, 0, 0, 0.5);
}

.content-prv-policy p {
  font-size: 1.3rem;
  margin: 0 auto 8px;
  opacity: 0.95;
}

.content-prv-policy span {
  color: #01c08f;
}

/* --- Corrected Navigation Pills Styling --- */
.nav-pills .nav-link {
  color: #64748b;
  border-radius: 0.5rem;
  margin: 0.25rem 0;
  /* Adjusted margin for vertical nav */
  transition: all 0.3s ease;
  text-align: left;
}

/* Correctly target the nav-link element on hover */
.nav-pills .nav-link:hover {
  background-color: #e2e8f0;
  transform: translateY(-2px);
  color: #1e293b;
}

/* Correctly target the nav-link element when it is active */
.nav-pills .nav-link.active {
  background-color: #01c08f;
  color: white;
  transform: none;
}

/* Ensure the active state is maintained when the element is active */
.nav-pills .nav-link.active:hover {
  background-color: #50f5c9ff;
  /* Slightly darker shade of the primary color on active hover */
  color: white;
}

/* --- End Corrected Navigation Pills Styling --- */

.policy-section {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.policy-section:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.prav-policy-section-title {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prav-policy-highlight-box {
  background: #f0f9ff;
  border-left: 4px solid #01c08f;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
}

.prav-policy-search-box {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.prav-policy-search-box input {
  padding-left: 2.5rem;
  border-radius: 2rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.prav-policy-search-box input:focus {
  border-color: #01c08f;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.prav-policy-search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
}

.sticky-nav {
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.print-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

@media print {
  .no-print {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .policy-section {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}



.accordion-button:not(.collapsed) {
  background-color: #f0f9ff;
  color: #fff;
}

button.accordion-button i {
  margin-right: 1rem;
}

.highlight {
  background-color: #fef3c7;
  padding: 2px 4px;
  border-radius: 3px;
}

/* Blogs Page  */

/* blog-custom-section-hero */
.blog-custom-section-hero {
  background: url("../images/blogs-hero.jpg") no-repeat center center / cover;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-top: 6rem;
}

/* Dark overlay */
.blog-custom-section-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.blog-custom-section-hero-content {
  position: relative;
  z-index: 1;
}

.blog-custom-section-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-custom-section-hero-content p {
  max-width: 700px;
  font-size: 1.3rem;
  margin: 0 auto 8px;
  opacity: 0.95;
}

.blog-custom-section-hero-content span {
  color: #01c08f;
}

/* blog-custom-section-card */
.blog-custom-section-card {
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.blog-custom-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-custom-section-image-wrapper {
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.blog-custom-section-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-custom-section-card:hover .blog-custom-section-image {
  transform: scale(1.08);
}

.blog-custom-section-meta {
  font-size: 0.875rem;
  color: #6b7280;
}

.blog-custom-section-read-more {
  color: #028b68;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-custom-section-read-more:hover {
  color: #6f42c1;
  padding-right: 5px;
}

/* Form Button */
.blog-custom-section-submit-btn {
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  border: none;
  transition: all 0.3s ease-in-out;
}

.blog-custom-section-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(2, 139, 104, 0.4) !important;
}

/* Social Icons - blog-custom-social-icon */
.blog-custom-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.blog-custom-social-icon:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Social Icon Colors */
.blog-custom-social-facebook {
  background: #1877f2;
}

.blog-custom-social-twitter {
  background: #1da1f2;
}

.blog-custom-social-instagram {
  background: #e1306c;
}

.blog-custom-social-linkedin {
  background: #0077b5;
}

.blog-custom-social-youtube {
  background: #ff0000;
}

.blog-custom-social-github {
  background: #333333;
}


.tour_decp {
  color: #01c08f !important;
  font-size: 12px !important;
}

/* About Us Page */
/* About Us page css */

/* Hero Section */
.aboutus-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/about-us-hero.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 130px 0;
  text-align: center;
}

.about-hero-content {
  /* blackish transparent */
  border-radius: 12px;
  padding: 25px;
  padding-top: 3rem;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 8px;
  opacity: 0.95;
}

.about-hero-content span {
  color: #01c08f;
}

/* setps section */

.aboutus-icon-box {
  width: 50px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.aboutus-trip-card {
  background: #fff;
  border-radius: 20px;
}

/* Story Section */
.aboutus-story-content {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aboutus-story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
  font-family: var(--ff-montserrat);
}

.aboutus-story-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.aboutus-stat-item {
  text-align: center;
}

.aboutus-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #01c08f !important;
  display: block;
}

.aboutus-stat-label {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 600;
}

/* Mission & Vision */
.mission-vision-card {
  background: white;
  border-radius: 20px;
  padding: 40px 15px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.card-icon i {
  color: white;
  font-size: 35px;
}

.mission-vision-card h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.mission-vision-card p {
  color: #6c757d;
  line-height: 1.8;
}

/* Why Choose Us */
.feature-item {
  text-align: center;
  padding: 20px 15px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  color: white;
  font-size: 30px;
}

.feature-item h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: #6c757d;
  line-height: 1.6;
  text-align: left;
}

/* Enhanced About Us Section */
.about-story-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.about-story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/aboutus-our-story-img.png");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.about-aboutus-story-content {
  position: relative;
  z-index: 1;
}

.story-timeline {
  position: relative;
  padding: 40px 0;
}

.aboutus-timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.aboutus-timeline-item:nth-child(odd) {
  flex-direction: row;
}

.aboutus-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.aboutus-timeline-content {
  flex: 1;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.aboutus-timeline-content::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
}

.aboutus-timeline-item:nth-child(odd) .aboutus-timeline-content::after {
  right: -10px;
}

.aboutus-timeline-item:nth-child(even) .aboutus-timeline-content::after {
  left: -10px;
}

.aboutus-timeline-year {
  flex: 0 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-year-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aboutus-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  transform: translateX(-50%);
  z-index: 0;
}

.story-highlights {
  background: white;
  border-radius: 15px;
  padding: 40px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.aboutus-highlight-item {
  text-align: center;
  padding: 20px;
}

.aboutus-highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(142deg, #028b68 0%, #01c08f8a 100%) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.aboutus-highlight-icon i {
  color: white;
  font-size: 24px;
}

.aboutus-highlight-item h5 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.aboutus-highlight-item p {
  color: #6c757d;
  font-size: 0.9rem;
  font-size: 16px;
}

/* About Us Ended */

/* Media Query */

/* Responsive */
@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 2.8rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 150px 0 80px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-form-container,
  .contact-info-card {
    padding: 30px 15px;
  }

  .contact-info-item {
    flex-direction: column;
    background: #74d2b821;
    padding: 20px 15px;
    border: 1px solid #000;
    border-radius: 10px;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .contact-hero h1 {
    font-size: 1.8rem;
  }
}

/* Terms Condition */
@media (max-width: 768px) {
  .terms-header h1 {
    font-size: 2rem;
  }

  .terms-section h2 {
    font-size: 1.5rem;
  }
}

/* Payment Page */
/* Responsive Design */
@media (max-width: 968px) {
  .payment-section {
    grid-template-columns: 1fr;
  }

  .paymnet-about-hero h1 {
    font-size: 2.5rem;
  }

  .qr-code {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 640px) {
  .paymnet-about-hero h1 {
    font-size: 2rem;
  }

  .paymnet-about-hero p {
    font-size: 1rem;
  }

  .paymnet-timer {
    font-size: 2rem;
  }

  .paymnet-paymnet-support-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Blog details */
@media (max-width: 768px) {
  .blog-details-title {
    font-size: 2rem;
  }

  .sidebar-widget {
    padding: 20px;
  }

  /* Move contact form below blog content on mobile */
  .blog-sidebar .contact-widget {
    order: 3;
  }
}

/* About Us Media */
/* Responsive Adjustments  For About us*/

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-hero-content p {
    font-size: 1.1rem;
  }

  .about-section-title {
    font-size: 2rem;
  }

  .aboutus-story-content {
    padding: 30px 20px;
  }

  .aboutus-stat-number {
    font-size: 2.5rem;
  }

  .aboutus-timeline-item {
    flex-direction: column !important;
  }

  .aboutus-timeline-year {
    margin-bottom: 20px;
  }

  .aboutus-timeline-content::after {
    display: none;
  }

  .aboutus-timeline-line {
    left: 30px;
  }
}