﻿ /* When header becomes sticky */
.sticky-header .menu-link,
.is-sticky .menu-link {
    color: #222; /* Example: red tone when sticky */
}
/* CSS for breadcrumb banner */
.banner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;                /* spacing between items */
  font-size: 1rem;
  color: #adb5bd;             /* muted default color for breadcrumb text */
  margin: 0;                  /* keep existing layout spacing control */
  padding: 0;
  text-transform: none;
  justify-content: center;    /* keeps it centered when container is narrow */
}

/* link (Home) */
.banner-breadcrumb .banner-link {
  color: inherit;             /* inherits muted color by default */
  text-decoration: none;
  font-weight: 500;           /* normal weight */
  transition: color 0.18s ease, font-weight 0.18s ease;
  cursor: pointer;
}

/* separator */
.banner-breadcrumb .separator {
  color: currentColor;
  opacity: 0.9;
  font-size: 1.05rem;
  margin: 0 4px;
  line-height: 1;
}

/* current (Blog) - non-link */
.banner-breadcrumb .current {
  color: inherit;
  font-weight: 600;
}

/* hover effect on Home */
.banner-breadcrumb .banner-link:hover,
.banner-breadcrumb .banner-link:focus {
  color: #ffc107;             /* highlight color — replace as needed */
  font-weight: 700;           /* becomes bold on hover */
  outline: none;
  text-decoration: none;
}

/* optional: make chevron look like an icon on small screens */
@media (max-width: 576px) {
  .banner-breadcrumb {
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .banner-breadcrumb .separator {
    font-size: 1rem;
  }
}


        .background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            background: rgba(0, 0, 0, 0.5); /* 🔹 semi-transparent black */
        }
       .pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Card styling */
.pricing-card {
    background-image: url('../html/pics/p2.jpg'); /* ✅ Fixed image path syntax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* ✅ Ensures the image covers the entire card */
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* ✅ Soft dark overlay to improve contrast */
.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
    border-radius: 5px;
  border-top: 4px solid var(--cnvs-themecolor);
}

/* Ensure all text appears above overlay */
.pricing-card * {
    position: relative;
    z-index: 1;
}

/* Hover effect */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Title styling */
.pricing-card h4 {
    font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--cnvs-themecolor);
  text-transform: uppercase;
}

/* Price styling */
.pricing-card h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 20px 0 35px 0;
    color: #ffffff;
}

/* List styling */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    width: 100%;
}

.pricing-card ul li {
    font-size: 14px;
    padding: 15px 0;
    color: #e6e6e6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Button styling */
.btn-subscribe {
    background: linear-gradient(135deg, rgb(5, 168, 237), rgb(173, 232, 255));
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 30px;
    transition: background 0.3s ease-in-out;
}

.btn-subscribe:hover {
    background: linear-gradient(135deg, rgb(4, 140, 210), rgb(150, 220, 255));
    color: #fff !important;
}

/* Section Background */
#transactions {
  background: linear-gradient(135deg, rgba(85, 112, 123, 0.27), rgba(173, 232, 255, 0.3), rgb(255, 255, 255));
}

/* Tabs Styling */
.transaction-tabs .nav-link {
  color: #0078b7;
  border: 2px solid transparent;
  background: rgba(5, 168, 237, 0.1);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.transaction-tabs .nav-link.active {
  background: linear-gradient(135deg, rgb(5, 168, 237), rgb(173, 232, 255));
  color: #fff !important;
  border-color: transparent;
}

.transaction-tabs .nav-link:hover {
  background: linear-gradient(135deg, rgba(5, 168, 237, 0.8), rgba(173, 232, 255, 0.8));
  color: #fff;
}

/* Table Styling */
.custom-table {
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* Enforced Gradient Header */
.custom-table thead,
.custom-table thead tr,
.custom-table thead th {
  background: linear-gradient(135deg, rgb(10, 170, 238), rgb(71, 193, 244),rgb(14, 171, 238)) !important;
  color: #fff !important;
  border: none !important;
}

.custom-table th {
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.custom-table td {
  padding: 14px 16px;
  color: #333;
  vertical-align: middle;
  font-size: 14px;
}

.custom-table tr:hover {
  background-color: rgba(5, 168, 237, 0.05);
  transition: background-color 0.3s ease;
}

/* Image inside cell */
.custom-table img {
  border: 2px solid #05a8ed;
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .custom-table th, .custom-table td {
    font-size: 13px;
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
  #transactions h2 {
    font-size: 22px;
  }

  .transaction-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .transaction-tabs .nav-link {
    font-size: 14px;
    padding: 8px 20px;
  }

  .table-responsive {
    overflow-x: auto;
  }
}

@media (max-width: 576px) {
  .custom-table th, .custom-table td {
    font-size: 12px;
    padding: 10px 8px;
  }

  .custom-table img {
    width: 28px;
  }

  .transaction-tabs .nav-link {
    font-size: 13px;
    padding: 8px 15px;
  }
}
@media (max-width: 992px) {
  #section-about h2 {
    font-size: 32px;
  }

  .pricing-card h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  #section-about h2 {
    font-size: 28px;
  }

  .pricing-card {
    margin: 0 auto 20px;
    max-width: 350px;
  }

  .row.justify-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pricing-card h4 {
    font-size: 18px;
  }

  .pricing-card h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  #section-about h2 {
    font-size: 24px;
  }

  #section-about p {
    font-size: 15px;
    padding: 0 15px;
  }

  .pricing-card {
    max-width: 300px;
    margin: 0 auto 25px;
  }

  .btn-subscribe {
    width: 100%;
    padding: 10px 0;
  }
}

/* Parallax Section Styling */
.promo.parallax {
  position: relative;
  overflow: hidden;
}

/* Background Image Styling */
.promo.parallax .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay */
.promo.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Adjust opacity (0.4–0.6 looks best) */
  z-index: 2;
}

/* Content Above Overlay */
.promo.parallax .container,
.promo.parallax .row,
.promo.parallax .text-white {
  position: relative;
  z-index: 3;
}

.grid-switch-content:not(.col-grid) > div {
			-ms-flex: 0 0 100%;
		    flex: 0 0 100%;
		    max-width: 100%;
			-ms-flex-direction: column !important;
			flex-direction: column !important;
		}

		.grid-switch-content .card-img {
			-ms-flex: 1 1 auto !important;
   			flex: 1 1 auto !important;
   			border-radius: 0.25rem 0.25rem 0 0;
		}

		@media (min-width: 768px) {
			.grid-switch-content:not(.col-grid) .card-img {
			    -ms-flex: 0 0 33.333333%;
			    flex: 0 0 33.333333%;
			    max-width: 33.333333%;
			}
			.grid-switch-content .col-full .card-img { border-radius: 0.25rem 0 0 0.25rem; }
		}
        .card-title a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
        

		.toggle {
			background-color: #1b1b1b;
			border-radius: 8px;
			margin-bottom: 15px;
			padding: 15px;
			transition: background 0.3s;
		}

		.toggle:hover {
			background-color: #222;
		}

		.toggle-header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			cursor: pointer;
		}

		.toggle-title {
			font-weight: 600;
			font-size: 18px;
			color: #fff;
		}

		.toggle-content {
			display: none !important;
			margin-top: 10px;
			color: #ccc;
			text-align: justify;
		}

		.toggle.active .toggle-content {
			display: block !important;
		}

		.grid-filter {
			text-align: center;
			margin-bottom: 30px;
			padding: 0;
			list-style: none;
		}

		.grid-filter li {
			display: inline-block;
			margin: 0 10px;
		}

		.grid-filter a {
			color: #aaa;
			text-decoration: none;
			font-weight: 600;
		}

		.grid-filter li.activeFilter a {
			color: #00c3ff;
		}
        #testimonial-carousel .item {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
}
        /* RESPONSIVE BREAKPOINTS */

/* Mobile View (up to 600px) */
@media (max-width: 600px) {
  #testimonial-carousel .item {
    padding: 15px;
    font-size: 14px;
  }

  #testimonial-carousel .item img {
    max-width: 60px;
  }
}

/* Tablet View (600px to 992px) */
@media (min-width: 600px) and (max-width: 992px) {
  #testimonial-carousel .item {
    padding: 18px;
    font-size: 15px;
  }
}

/* Desktop View (above 992px) */
@media (min-width: 992px) {
  #testimonial-carousel .item {
    padding: 25px;
    font-size: 16px;
  }
}

/* MAKE OVERLAY WORK */
.bg-overlay {
    position: relative;
    height: 100%;
}

.bg-overlay-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* CONTENT ABOVE BACKGROUND */
.bg-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 3rem;
}

/* ICON SIZE & STYLE */
.contact-icon {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

/* CARD HOVER EFFECT */
.grid-inner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.grid-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

/* ICON HOVER EFFECT */
.grid-inner:hover .contact-icon {
    transform: scale(1.25);
    color: #fea005;
}

/* TEXT COLOR FIX */
.bg-overlay-content h2,
.bg-overlay-content p {
    color: #ffffff !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-icon { font-size: 48px; }
}

@media (max-width: 576px) {
    .contact-icon { font-size: 40px; }
    .bg-overlay-content { padding: 2rem; }
}
