/* ===== Global Styles ===== */
:root {
  --primary: #0077b6;
  --secondary: #00b4d8;
  --accent: #90e0ef;
  --dark: #03045e;
  --light: #caf0f8;
  --white: #ffffff;
  --gray: #6c757d;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== Header / Navbar ===== */

/* .header-logo {
  margin-bottom: 20px;
} */

.logo-circle-background-header {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-circle-background-header img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* ===== Breadcrumbs ===== */
.breadcrumb-wrapper {
  background: linear-gradient(135deg, var(--light), var(--accent));
  padding: 12px 0;
  margin-top: 120px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 5;
}

.breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
  font-size: 0.95rem;
}

.breadcrumb-item {
  color: var(--gray);
}

.breadcrumb-item a {
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--dark);
}

/* ===== Page Hero Section ===== */
.page-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/BgImg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0;
  margin-top: 80px;
  position: relative;
  text-align: center;
  color: white;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: white;
}

.page-hero .breadcrumb {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero .breadcrumb-item a:hover {
  color: var(--secondary);
}

.breadcrumb-item.active {
  color: var(--dark);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "→";
  color: var(--primary);
  font-weight: 700;
}

.breadcrumb-item i {
  margin-right: 5px;
}

/* ===== Buttons ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 119, 182, 0.4);
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #caf0f8 0%, #90e0ef 100%);
  padding: 80px 0 100px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.3), transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease;
}

.hero p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 30px;
  animation: slideInLeft 1.2s ease;
}

.hero img {
  animation: slideInRight 1s ease, floatImg 4s ease-in-out infinite 1s;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== Section Styles ===== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ===== Product Cards ===== */
.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-info {
  padding: 20px;
}

.product-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.badge-custom {
  background: var(--secondary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===== Feature Cards ===== */
.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.feature-card:hover h4,
.feature-card:hover p {
  color: white;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: white;
  color: var(--primary);
  transform: rotateY(360deg);
}

/* ===== About Section ===== */
.about-img {
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
  width: 100%;
}

.about-img:hover {
  transform: scale(1.02);
}

.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-box h3 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
}

/* ===== Service Cards ===== */

.row{
  display: flex;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card .content {
  padding: 25px;
}

/* ===== Blog Cards ===== */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-card .content {
  padding: 25px;
}

.blog-meta {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.blog-meta span {
  margin-right: 15px;
}

/* ===== Testimonial Cards ===== */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  margin-top: 40px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 6rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.testimonial-author h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--dark);
}

.testimonial-author small {
  color: var(--gray);
}

.stars {
  color: #ffc107;
  margin-bottom: 10px;
}

/* ===== Brand Section ===== */
.brand-logo {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray);
  filter: grayscale(100%);
}

.brand-logo:hover {
  filter: grayscale(0%);
  transform: translateY(-8px) scale(1.05);
  color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 119, 182, 0.2);
}

/* ===== FAQ Accordion ===== */
.accordion-item {
  border: none !important;
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: white !important;
  color: var(--dark) !important;
  font-weight: 600;
  padding: 18px 25px;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: white !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230077b6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px;
  color: #555;
  background: white;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: scale(1.05);
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary);
}

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

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

/* ===== Pricing Cards ===== */
.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 119, 182, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
  color: white;
}

.pricing-card.featured .btn-primary-custom {
  background: white;
  color: var(--primary);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--secondary);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  text-align: left;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured ul li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card ul li i {
  color: #28a745;
  margin-right: 10px;
}

.pricing-card.featured ul li i {
  color: var(--accent);
}

/* ===== Blog Categories ===== */
.category-list {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.category-list h4 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent);
}

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.category-list a:last-child {
  border-bottom: none;
}

.category-list a:hover {
  color: var(--primary);
  padding-left: 10px;
}

.category-list a span {
  background: var(--accent);
  color: var(--dark);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* ===== Popular Posts ===== */
.popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-post:hover {
  transform: translateX(5px);
}

.popular-post img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.popular-post h6 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--dark);
  line-height: 1.4;
}

.popular-post small {
  color: var(--gray);
}

/* ===== Video Section ===== */
.video-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 550px;
  background-image: linear-gradient(rgba(3, 4, 94, 0.4), rgba(3, 4, 94, 0.4)), url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExN2FmZzg5eXFtbGs2NXlsMXYxcXdjN2hhd2w5eGlhN2tqZHk1Yms4ZiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/lQsyMX565lcN9KUfQR/giphy.gif');
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.video-section h2 {
  color: white;
}

/* ===== Filter Tabs ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 25px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  color: #555;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== Compare Table ===== */
.compare-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table table {
  margin-bottom: 0;
}

.compare-table thead {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.compare-table thead th {
  padding: 20px;
  border: none;
  font-weight: 600;
}

.compare-table tbody td {
  padding: 15px 20px;
  vertical-align: middle;
}

.compare-table tbody tr:hover {
  background: #f8f9fa;
}

/* ===== Awards Badge ===== */
.award-badge {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  height: 100%;
}

.award-badge:hover {
  transform: translateY(-8px) rotate(2deg);
}

.award-badge i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.award-badge h5 {
  margin-bottom: 5px;
}

.award-badge small {
  color: var(--gray);
}

/* ===== Contact Section ===== */
.contact-info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-8px);
}

.contact-info-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-info-card:hover i {
  transform: scale(1.2);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form .form-control {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-form textarea.form-control {
  /* make the message box larger to fill the form space */
  flex: 0 0 auto;
  min-height: 320px;
  max-height: 60vh;
  margin-bottom: 16px;
  resize: vertical;
}

.contact-form .btn-primary-custom {
  /* place button directly after the fields (no auto push)
     and make it span the width for better UX */
  margin-top: 12px;
  align-self: stretch;
  padding: 14px 24px;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

.fixed-contact-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

.fixed-contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: float-action 4s ease-in-out infinite;
  overflow: hidden;
}

.fixed-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.fixed-contact-btn:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.fixed-contact-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.24);
}

.fixed-contact-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #1eb64f);
}

.fixed-contact-btn.call {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
}

.fixed-contact-btn i {
  font-size: 1.45rem;
  position: relative;
  z-index: 1;
}

@keyframes float-action {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-4px) scale(1.02);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(-2px) scale(1.01);
  }
}

/* ===== Footer with Background Image ===== */

.flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  position: relative;
  background-image: url('../images/FooterBackgroundImg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ccc;
  padding: 80px 0 0;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

footer h5 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

footer p {
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 10px;
}

footer a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.logo-circle-background-footer {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-circle-background-footer img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}


.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-5px);
  padding-left: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom .footer-logo {
  margin-bottom: 0;
}

.footer-text {
  max-width: 720px;
}

.footer-bottom span {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom a {
  display: inline;
  color: var(--secondary);
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--accent);
  padding: 0;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    padding: 25px 0;
  }

  .footer-text {
    text-align: center;
  }
}

/* ===== Responsive Design ===== */

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    margin-bottom: 0;
  }

  .nav-link {
    padding: 10px 15px !important;
    margin: 2px 0;
    border-radius: 8px;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--accent);
  }

  .nav-link::after {
    display: none;
  }

  .navbar-toggler {
    border: 2px solid var(--primary);
    padding: 6px 10px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
  }

  /* Timeline Mobile */
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left !important;
    left: 0 !important;
  }

  .timeline-item::after {
    left: 10px !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

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

  .hero img {
    margin-top: 30px;
    max-height: 300px !important;
  }

  .breadcrumb-wrapper {
    margin-top: 125px;
    padding: 10px 0;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }
  h4 { font-size: 1.1rem; }
  p { font-size: 0.95rem; }

  .stat-box h3 {
    font-size: 1.8rem;
  }

  .stat-box p {
    font-size: 0.85rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }

  .product-card img,
  .service-card img,
  .blog-card img {
    height: 200px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .price {
    font-size: 2.2rem;
  }

  .video-section {
    min-height: 300px;
    padding: 40px 20px;
  }

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

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: -20px;
  }

  .filter-tab {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .compare-table {
    font-size: 0.85rem;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 10px;
  }

  /* Footer Mobile */
  footer {
    padding: 50px 0 0;
    background-attachment: scroll;
    text-align: center;
  }

  footer h5 {
    margin-top: 25px;
  }

  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.3rem;
  }

  .logo-circle-background-header {
    width: 70px;
    height: 70px;
  }

  .logo-circle-background-header img {
    width: 70px;
    height: 70px;
  }

  /* .navbar-brand img {
    height: 38px;
  } */

  .hero {
    /* margin-top: 125px; */
    padding: 40px 0 40px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 9px 18px;
    font-size: 0.85rem;
  }

  .breadcrumb-wrapper {
    margin-top: 95px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}