/* Top Bar */
.topbar-glass {
  background: linear-gradient(to right, #ffca28, #f8b828);
  padding: 0.5rem 0;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.topbar-content {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 8px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-info {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 14px;
}

.topbar-info li {
  display: flex;
  align-items: center;
}

.topbar-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.topbar-info a:hover {
  color: #f8b828;
}

.topbar-info .icon {
  background: #f8b828;
  color: #111;
  border-radius: 50%;
  padding: 6px;
  margin-right: 8px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #fff;
}

.topbar-social .follow-text {
  margin-right: 6px;
  font-weight: 500;
}

.topbar-social a {
  background: #222;
  color: #f8b828;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.topbar-social a:hover {
  background: #f8b828;
  color: #111;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
  .topbar-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Banner Button */
.animated-button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background: linear-gradient(120deg, #F8B828);
    border-radius: 40px;
    transition: background 0.4s ease;
    z-index: 1;
  }
  
  .animated-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    color: white;
    background: #000000;
    transition: left 0.4s ease;
    z-index: -1;
  }
  
  .animated-button:hover::before {
    left: 0;
    color: white;
  }
  
  .animated-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: white;
  }
  
  .animated-button:hover i {
    transform: translateX(5px);
    color: white;
  }
  
  /* Optional: add a little bounce effect */
  .animated-button:hover {
    animation: bounce 0.4s ease;
  }
  .theme-btn2:hover{
    color: white;
  }
  @keyframes bounce {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  .features-section {
    padding: 60px 0;
    background: #f9f9f9;
  }
  
  .features-row {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .feature-card {
    background: #FAC159;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    flex: 1 1 22%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
  }
  
  .feature-icon-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .feature-icon-box img {
    max-height: 100%;
    width: auto;
  }
  
  .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
  }
  .new-service-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    padding: 50px 0;
  }
  
  .new-service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 30px 20px;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease;
    min-height: 420px;
  }
  
  .new-service-card:hover {
    transform: translateY(-5px);
  }
  
  .new-service-icon {
    height: 80px;
    width: 80px;
    background: #fec653;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -30px;
    right: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .new-service-icon img {
    max-height: 45px;
    width: auto;
  }
  
  .new-service-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 10px;
  }
  
  .new-service-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
  }
  
  .new-service-btn {
    margin-top: 20px;
    background: #fec653;
    color: #000;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
  }
  
  .new-service-btn::after {
    content: "→";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
  }
  
  .new-service-btn:hover {
    background: #f9b938;
  }
  
  .new-service-btn:hover::after {
    right: 15px;
  }

  /* Discount Crads */

  .discount-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .discount-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 40px;
  }
  
  .discount-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .discount-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
    max-width: 32%;
  }
  
  .discount-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .discount-icon {
    margin-bottom: 20px;
  }
  
  .discount-icon img {
    width: 60px;
    height: 60px;
  }
  
  .discount-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
  }
  
  .discount-card p {
    flex-grow: 1;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .discount-btn {
    background-color: #f8b828;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .discount-btn:hover {
    background-color: #e0a419;
    color: #fff;
  }
  
  /* ?Footer */
  .custom-footer {
    background-color: #0e0e0e;
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .custom-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .footer-column {
    flex: 1 1 280px;
    min-width: 240px;
  }
  
  .footer-logo img {
    width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-contact,
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-contact li,
  .footer-links li {
    margin-bottom: 12px;
    font-size: 15px;
  }
  
  .footer-contact li i,
  .footer-links li i {
    color: white;
    margin-right: 10px;
  }
  
  .footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    border-bottom: 2px solid #f8b828;
    color: white;
    display: inline-block;
    padding-bottom: 4px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #f8b828;
  }
  
  @media (max-width: 768px) {
    .custom-footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* New service area */
  /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Padding */
section {
  padding: 80px 0;
}

/* Hero Banner */
.hero-banner {
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}
.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: white;
}
.breadcrumb-nav {
  margin-top: 12px;
  font-size: 16px;
}
.breadcrumb-nav a {
  color: #fff;
  text-decoration: underline;
}
.breadcrumb-nav span {
  margin: 0 6px;
  color: #eee;
}

/* Layout */
.service-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Sidebar */
.sidebar {
  width: 100%;
  max-width: 300px;
  background: #f5f7fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}
.sidebar-title {
  font-size: 20px;
  margin-bottom: 20px;
}
.sidebar-list {
  list-style: none;
}
.sidebar-list li {
  margin-bottom: 15px;
}
.sidebar-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
}
.sidebar-list a:hover,
.sidebar-list a.active {
  background: #F8B928;
  color: white;
}

/* Main Content */
.main-content {
  flex: 1;
}
.main-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}
.main-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.main-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

/* Features Grid */
.features-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.feature-box {
  flex: 1 1 250px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.feature-box i {
  font-size: 36px;
  color: #F8B928;
  margin-bottom: 15px;
}
.feature-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 15px;
  color: #555;
}

/* Additional Info */
.additional-info {
  margin-top: 50px;
}
.additional-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.additional-info p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* CTA Button */
.btn-primary {
  background: #F8B928;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #d89f18;
  color: black;
}

/* Patners */
.partners-section {
    width: 100%;
    padding: 2rem 1rem;
    background-color: #f9f9f9; /* light background for contrast */
  }

  .partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* spacing between logos */
    flex-wrap: nowrap; /* all in one row */
    overflow-x: auto; /* just in case on small screens */
    padding: 1rem 0;
  }

  .partner-logo {
    max-width: 200px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  /* Optional: Make sure it looks good on smaller screens */
  @media (max-width: 768px) {
    .partners-logos {
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .partner-logo {
      max-width: 150px;
    }
  }
  
  