/* ====== Colors ====== */
:root {
  --primary-color: #a1cc33;
  --secondary-color: #4a565e;
  --dark: #000000;
  --white: #fff;
  --grey: #808080;
  --bg-color: #055bac0c;
}

/* ====== Font ====== */
* {
  font-family: "Poppins", sans-serif;
}

a {
  color: var(--primary-color);
}

strong {
  color: var(--secondary-color);
  font-weight: 600;
}

::selection {
  background-color: var(--primary-color);
  color: var(--dark);
}

a:hover {
  text-decoration: none;
}

/* ====== header-section-start ====== */

/*========== menu bar =========*/

.header-section .menu-bar {
  width: 100%;
  background-color: var(--bg-color-second);
  border-bottom: 1px solid rgba(255, 255, 255, 0.096);
  position: relative;
}

.header-section .is-sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  animation: slideInDown 0.5s ease-in;
  background-color: var(--white);
  padding: 0;
}

.header-section .navbar-brand img {
  height: 60px;
}

.header-section .menu-bar .nav-link {
  margin: 0px 3px;
  text-transform: capitalize;
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.5s ease-in;
}

.header-section .nav-link::after {
  width: 0;
  height: 2px;
  background-color: var(--dark);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s ease-in;
}

.header-section .nav-link:hover:after {
  width: 100%;
  transition: 0.3s ease-in;
}

.header-section .navbar-nav .nav-link.active {
  color: #a1cc33;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
}

.header-section .navbar-toggler {
  background-color: #a1cc33;
  color: var(--white);
  margin: 0px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  padding: 3px 10px;
}

.header-section .navbar-toggler i {
  line-height: 30px;
}

.header-section .offcanvas-header {
  background-color: var(--secondary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
  font-size: 15px;
  padding: 3px 8px;
}

.header-section .conatact-btn {
  color: var(--white);
  text-decoration: none;
  background-color: #21cf89;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  margin: 0px 10px;
  display: flex;
  align-items: center;
}

.header-section .conatact-btn i {
  font-size: 23px;
  margin-right: 5px;
}

.header-section .franchise-btn {
  color: var(--white);
  text-decoration: none;
  background-color: var(--secondary-color);
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  margin: 0px 10px;
}

.header-section .offcanvas-header .btn-close {
  color: var(--white);
  opacity: 1;
  background-image: none;
  line-height: 10px;
  border-radius: 5px;
  border: none;
  border: 1px solid white;
  font-size: 15px;
  padding: 6px 8px;
  background-color: var(--dark);
}

.header-section .navbar {
  padding: 0;
}

/* === header-section-end === */

/* === hero-section-start === */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #5a6b76 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    var(--primary-color) 0%,
    transparent 70%
  );
  opacity: 0.1;
}

.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-section .hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-section .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section .hero-image img {
  max-width: 100%;
  height: 600px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-section .hero-logo {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0;
}

.hero-section .hero-tagline {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-section .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-section .hero-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.hero-section .hero-features {
  margin-bottom: 40px;
}

.hero-section .hero-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hero-section .hero-feature svg {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.hero-section .hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-section .cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero-section .cta-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.hero-section .cta-primary:hover {
  background: transparent;
  color: var(--white);
  box-shadow: 0 0 0 2px var(--primary-color);
  transform: translateY(-3px);
}

.hero-section .cta-secondary {
  background: transparent;
  color: var(--white);
  box-shadow: 0 0 0 2px var(--white);
}

.hero-section .cta-secondary:hover {
  background: var(--white);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

/* === hero-section-end === */

/* === about-section-start === */

#about-section {
  padding: 90px 0;
  background-color: var(--white);
}

#about-section .about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#about-section .section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  color: var(--secondary-color);
  font-weight: 700;
}

#about-section .about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

#about-section .about-text {
  flex: 1;
  min-width: 300px;
}

#about-section .about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#about-section .about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

#about-section .about-image:hover img {
  transform: scale(1.05);
}

#about-section .about-subtitle {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

#about-section .about-description {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 25px;
  line-height: 1.8;
}

#about-section .mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

#about-section .mission-box,
#about-section .vision-box {
  flex: 1;
  min-width: 300px;
  background: #f2f6fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: transform 0.3s ease;
}

#about-section .mission-box:hover,
#about-section .vision-box:hover {
  transform: translateY(-5px);
}

#about-section .mission-title,
#about-section .vision-title {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#about-section .mission-title svg,
#about-section .vision-title svg {
  margin-right: 10px;
  color: var(--primary-color);
}

#about-section .values-list {
  margin-top: 40px;
}

#about-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

#about-section .value-item {
  background: #f2f6fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#about-section .value-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--white);
}

#about-section .value-title {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

#about-section .value-desc {
  font-size: 14px;
  color: var(--grey);
}

/* === about-section-end === */

/* === feature-section-start === */

.feature-section {
  padding: 80px 0px;
  background-color: var(--bg-color);
}

.feature-section .section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 45px;
  color: var(--secondary-color);
  font-weight: 700;
}

.feature-section .features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.feature-section .feature-card {
  position: relative;
  background-color: #ffff;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 400px;
  text-align: center;
}

.feature-section .feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white);
}

.feature-section .feature-icon svg {
  width: 50px;
  height: 50px;
}

.feature-section .feature-title {
  font-size: 1.3rem;
  margin: 20px 0px;
  color: var(--secondary-color);
  font-weight: 700;
}

.feature-section .feature-desc {
  color: var(--grey);
}

/* === feature-section-end === */

/* === compliance-services-start === */

#compliance-services {
  background-color: var(--white);
  padding: 90px 0px;
}

#compliance-services .services-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}

#compliance-services .services-header {
  color: var(--dark);
  text-align: center;
  margin-bottom: 45px;
}

#compliance-services .services-header h2 {
  text-align: center;
  font-size: 40px;
  color: var(--secondary-color);
  font-weight: 700;
}

#compliance-services .services-header p {
  opacity: 0.9;
}

#compliance-services .services-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

#compliance-services .services-table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px;
  text-align: left;
}

#compliance-services .services-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

#compliance-services .services-table tr:hover {
  background-color: #edf7da;
}

#compliance-services .services-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

#compliance-services .service-name {
  font-weight: 600;
  color: var(--secondary-color);
}

#compliance-services .service-desc {
  color: var(--grey);
}

#compliance-services .service-price {
  font-weight: 600;
  color: var(--secondary-color);
  white-space: nowrap;
}

#compliance-services .services-note {
  padding: 20px;
  background-color: #edf7da;
  text-align: center;
  font-style: italic;
  color: var(--secondary-color);
}

/* === compliance-services-end === */

/* === legal-services-start === */

.legal-services {
  background-color: #f2f6fa;
  padding: 90px 0px;
}

.legal-services .services-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.legal-services .services-header {
  text-align: center;
  margin-bottom: 45px;
}

.legal-services .services-header h2 {
  text-align: center;
  font-size: 40px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.legal-services .services-header p {
  font-size: 18px;
  color: var(--grey);
  opacity: 0.9;
}

.legal-services .services-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-services .services-table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
}

.legal-services .services-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.legal-services .services-table tr:hover {
  background-color: #edf7da;
}

.legal-services .services-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.legal-services .service-name {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 17px;
}

.legal-services .service-desc {
  color: var(--grey);
  font-size: 16px;
}

.legal-services .service-price {
  font-weight: 600;
  color: var(--secondary-color);
  white-space: nowrap;
}

.legal-services .services-note {
  padding: 20px;
  background-color: #edf7da;
  text-align: center;
  font-style: italic;
  color: var(--secondary-color);
  border-radius: 5px;
  font-size: 16px;
}

/* === legal-services-end === */

/* === digital-marketing-start === */

.digital-marketing-services {
  background-color: var(--white);
  padding: 90px 0px;
}

.digital-marketing-services .services-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}

.digital-marketing-services .services-header {
  text-align: center;
  margin-bottom: 45px;
}

.digital-marketing-services .services-header h2 {
  text-align: center;
  font-size: 40px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.digital-marketing-services .services-header p {
  font-size: 18px;
  color: var(--grey);
  opacity: 0.9;
}

.digital-marketing-services .services-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.digital-marketing-services .services-table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
}

.digital-marketing-services .services-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.digital-marketing-services .services-table tr:hover {
  background-color: #edf7da;
}

.digital-marketing-services .services-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.digital-marketing-services .service-name {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 17px;
}

.digital-marketing-services .service-desc {
  color: var(--grey);
  font-size: 16px;
}

.digital-marketing-services .service-price {
  font-weight: 600;
  color: var(--secondary-color);
  white-space: nowrap;
  font-size: 17px;
}

.digital-marketing-services .services-note {
  padding: 20px;
  background-color: #edf7da;
  text-align: center;
  font-style: italic;
  color: var(--secondary-color);
  border-radius: 5px;
  font-size: 16px;
}

/* === digital-marketing-end === */

/* === bundled-packages-start === */

.bundled-packages {
  background-color: #f2f6fa;
  padding: 90px 0px;
}

.bundled-packages .packages-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.bundled-packages .packages-header {
  text-align: center;
  margin-bottom: 45px;
}

.bundled-packages .packages-header h2 {
  text-align: center;
  font-size: 40px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.bundled-packages .packages-header p {
  font-size: 18px;
  color: var(--grey);
  opacity: 0.9;
}

.bundled-packages .packages-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bundled-packages .packages-table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
}

.bundled-packages .packages-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.bundled-packages .packages-table tr:hover {
  background-color: #edf7da;
}

.bundled-packages .packages-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.bundled-packages .package-name {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 18px;
}

.bundled-packages .package-services {
  color: var(--grey);
  font-size: 16px;
}

.bundled-packages .package-price {
  font-weight: 600;
  color: var(--secondary-color);
  white-space: nowrap;
}

.bundled-packages .packages-notes {
  padding: 20px;
  background-color: #edf7da;
  border-radius: 5px;
  color: var(--secondary-color);
  font-size: 16px;
  margin-bottom: 30px;
}

.bundled-packages .packages-notes h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.bundled-packages .packages-notes ul {
  padding-left: 20px;
}

.bundled-packages .packages-notes li {
  margin-bottom: 8px;
}

.bundled-packages .packages-note {
  padding: 20px;
  background-color: #edf7da;
  text-align: center;
  font-style: italic;
  color: var(--secondary-color);
  border-radius: 5px;
  font-size: 16px;
}

/* === bundled-packages-end === */

/* === testimonial-section-start === */

#testimonials-section {
  padding: 90px 0;
  background-color: var(--white);
}

#testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#testimonials-section .section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 45px;
  color: var(--secondary-color);
  font-weight: 700;
}

#testimonials-section .testimonial-slider {
  position: relative;
}

#testimonials-section .testimonial-item {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 30px;
  margin: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#testimonials-section .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#testimonials-section .testimonial-video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#testimonials-section .video-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

#testimonials-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

#testimonials-section .play-button:hover {
  background: var(--secondary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

#testimonials-section .play-button i {
  color: var(--white);
  font-size: 20px;
}

#testimonials-section .testimonial-content {
  padding: 0 10px;
}

#testimonials-section .testimonial-text {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.8;
  font-style: italic;
}

#testimonials-section .client-info {
  display: flex;
  align-items: center;
}

#testimonials-section .client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

#testimonials-section .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#testimonials-section .client-details h4 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-weight: 600;
}

#testimonials-section .client-details p {
  font-size: 14px;
  color: var(--grey);
}

/* Owl Carousel Navigation */
#testimonials-section .owl-nav {
  text-align: center;
  margin-top: 30px;
}

#testimonials-section .owl-nav button {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  margin: 0 10px;
  transition: all 0.3s ease;
}

#testimonials-section .owl-nav button:hover {
  background: var(--secondary-color) !important;
}

#testimonials-section .owl-nav button span {
  font-size: 24px;
  line-height: 35px;
}

#testimonials-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}

#testimonials-section .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: var(--grey) !important;
  display: block;
  transition: all 0.3s ease;
  border-radius: 50%;
}

#testimonials-section .owl-dot.active span {
  background: var(--primary-color) !important;
  transform: scale(1.3);
}

/* Video Modal */
#testimonials-section .video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

#testimonials-section .modal-content {
  width: 80%;
  max-width: 800px;
  position: relative;
}

#testimonials-section .close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

#testimonials-section .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#testimonials-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* === testimonial-section-end === */

/*=== contact-section-start === */

#contact-section {
  padding: 90px 0;
  background-color: #f2f6fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}

#contact-section .container {
  margin: 0 auto;
  padding: 0 20px;
}

#contact-section .section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  color: var(--secondary-color);
  font-weight: 700;
}

#contact-section .contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

#contact-section .contact-info {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#contact-section .info-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

#contact-section .contact-details {
  margin-bottom: 40px;
}

#contact-section .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

#contact-section .contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: var(--white);
}

#contact-section .contact-icon i {
  font-size: 20px;
}

#contact-section .contact-text h4 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 5px;
  font-weight: 600;
}

#contact-section .contact-text p {
  font-size: 16px;
  color: var(--grey);
}

#contact-section .whatsapp-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 30px auto 0;
  max-width: 250px;
}

#contact-section .whatsapp-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#contact-section .whatsapp-btn i {
  margin-right: 10px;
  font-size: 20px;
}

#contact-section .business-hours {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#contact-section .hours-title {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

#contact-section .hours-list {
  list-style: none;
}

#contact-section .hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

#contact-section .day {
  font-weight: 500;
  color: var(--secondary-color);
}

#contact-section .time {
  color: var(--grey);
}

#contact-section .contact-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--grey);
}

/* === contact-section-end === */

/* ===map-section-starter=== */

.map-section .map-container {
  overflow: hidden;
}

.map-section .map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ===map-section-end=== */

/* ===footer-section-start=== */

.footer {
  padding-top: 45px;
  background-color: var(--bg-color-second);
  position: relative;
}

.footer .footer-item {
  position: relative;
  margin-bottom: 40px;
}

.footer .footer-item img {
  width: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.footer .footer-item h2 {
  color: var(--dark);
  font-size: 17px;
  font-weight: 600;
  padding: 15px 0px 15px 0px;
  margin: 0;
  position: relative;
}

.footer .footer-item h3 {
  color: var(--dark);
  font-size: 17px;
  font-weight: 600;
  padding-top: 15px;
  margin: 0;
  position: relative;
}

.footer .footer-item h2::before {
  content: "";
  position: absolute;
  bottom: 3px;
  height: 4px;
  width: 50px;
  background-color: var(--secondary-color);
}

.footer .footer-item p {
  color: var(--dark);
  font-size: 15px;
  padding: 20px 20px 0px 0px;
  margin: 0;
}

.footer .footer-item .social-icon {
  display: flex;
  list-style: none;
  margin-top: 15px;
}

.footer .footer-item .social-icon li {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #a1cc33;
  margin-right: 10px;
  text-align: center;
  font-size: 19px;
  line-height: 40px;
  transition: 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.432);
}

.footer .footer-item .social-icon li:hover {
  background-color: var(--dark);
  transition: 0.5s;
  transform: translateY(-5px);
}

.footer .footer-item .social-icon li:hover a {
  color: var(--white);
  transition: 1s;
}

.footer .footer-item .social-icon li a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-item .about-list {
  list-style: none;
  padding: 0;
}

.footer .footer-item .about-list li {
  margin: 10px 0px;
  font-size: 15px;
  transition: 1s;
}

.footer-item .about-list li:hover {
  transition: 1s;
  padding-left: 5px;
}

.footer .footer-item .about-list li a {
  color: var(--dark);
  text-decoration: none;
}

.footer .footer-item .about-list li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-item .service-links {
  list-style: none;
  padding: 0;
}

.footer .footer-item .service-links li {
  margin: 15px 0px;
  font-size: 15px;
  color: var(--dark);
  transition: 1s;
}

.footer .footer-item .service-links li:hover {
  padding-left: 5px;
  transition: 1s;
}

.footer .footer-item .service-links li a {
  color: var(--dark);
  text-decoration: none;
}

.footer .footer-item .service-links li i {
  color: var(--primary-color);
  padding-right: 5px;
}

.footer .footer-item .contact-list {
  list-style: none;
  padding: 0;
}

.footer .footer-item .contact-list li {
  margin: 15px 0px;
  font-size: 15px;
  color: var(--white);
  transition: 1s;
}

.footer .footer-item .contact-list li:hover {
  padding-left: 5px;
  transition: 1s;
}

.footer .footer-item .contact-list li a {
  color: var(--dark);
  text-decoration: none;
}

.footer .footer-item .contact-list li i {
  color: var(--dark);
  padding-right: 5px;
}

.footer .footer-main {
  border-top: 1px solid rgba(0, 0, 0, 0.342);
  margin-top: 25px;
}

.footer .copy-right {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.footer .copy-right p {
  color: var(--dark);
  font-size: 14px;
  text-align: center;
  font-weight: 300;
}

.footer .copy-right a {
  color: var(--dark);
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  text-decoration: none;
}

.footer .top-button .top {
  background-color: var(--primary-color);
  height: 35px;
  width: 37px;
  border: none;
  border-radius: 8px;
  color: var(--secondary-color);
  right: 1em;
  bottom: 0;
  position: fixed;
  font-size: 25px;
  line-height: 36px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: 1s;
  border: 1px solid var(--secondary-color);
}

.footer .calling-button .call-btn {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: var(--secondary-color);
  right: 1.1em;
  bottom: 11.5rem;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: 5s;
  border: 1px solid var(--secondary-color);
}

.footer .whatsapp-button .whatsapp-chat {
  background-color: #08bf3f;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: white;
  right: 1.1em;
  bottom: 7.5rem;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: ease-in-out 1s;
}

/* ===footer-section-end=== */

/* ===privacy-policy-section-start=== */

.privacy-policy-section .policy-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #5a6b76 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.privacy-policy-section .policy-header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.privacy-policy-section .policy-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.privacy-policy-section .policy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: -40px;
  position: relative;
}

.privacy-policy-section .policy-meta {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.privacy-policy-section .effective-date {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 10px;
}

.privacy-policy-section v.policy-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--secondary-color);
  line-height: 1.8;
}

.privacy-policy-section .policy-section {
  margin-bottom: 40px;
}

.privacy-policy-section .policy-section h2 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.privacy-policy-section .policy-points {
  list-style: none;
}

.privacy-policy-section .policy-points li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.privacy-policy-section .policy-points li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.privacy-policy-section .policy-contact {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.privacy-policy-section .policy-contact h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.privacy-policy-section .policy-contact a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.privacy-policy-section .policy-contact a:hover {
  text-decoration: underline;
}

.privacy-policy-section .back-to-home {
  text-align: center;
  margin-top: 40px;
}

.privacy-policy-section .back-to-home a {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-policy-section .back-to-home a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.privacy-policy-section .back-to-home i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .privacy-policy-section .policy-header {
    padding: 60px 0 40px;
  }

  .privacy-policy-section .policy-header h1 {
    font-size: 32px;
  }

  .privacy-policy-section .policy-container {
    padding: 40px 20px;
    margin-top: -30px;
  }

  .privacy-policy-section .policy-section h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .privacy-policy-section .policy-header h1 {
    font-size: 28px;
  }

  .privacy-policy-section .policy-header p {
    font-size: 16px;
  }

  .privacy-policy-section .policy-intro {
    font-size: 16px;
  }
}

/* ===privacy-policy-section-end=== */

/* ===terms-conditions-section-start=== */

.terms-conditions-section .terms-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #5a6b76 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.terms-conditions-section .terms-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.terms-conditions-section .terms-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.terms-conditions-section .terms-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: -40px;
  position: relative;
}

.terms-conditions-section .terms-meta {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.terms-conditions-section .effective-date {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 10px;
}

.terms-conditions-section .terms-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--secondary-color);
  line-height: 1.8;
  font-style: italic;
}

.terms-conditions-section .terms-section {
  margin-bottom: 40px;
}

.terms-conditions-section .terms-section h2 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.terms-conditions-section .terms-points {
  list-style: none;
}

.terms-conditions-section .terms-points li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.terms-conditions-section .terms-points li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.terms-conditions-section .nested-list {
  list-style: none;
  margin-top: 10px;
  margin-left: 20px;
}

.terms-conditions-section .nested-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.terms-conditions-section .nested-list li:before {
  content: "○";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-conditions-section .important-note {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin: 30px 0;
}

.terms-conditions-section .important-note h4 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.terms-conditions-section .important-note h4 i {
  color: var(--primary-color);
  margin-right: 10px;
}

.terms-conditions-section .back-to-home {
  text-align: center;
  margin-top: 40px;
}

.terms-conditions-section .back-to-home a {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.terms-conditions-section .back-to-home a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.terms-conditions-section .back-to-home i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .terms-conditions-section .terms-header {
    padding: 60px 0 40px;
  }

  .terms-conditions-section .terms-header h1 {
    font-size: 32px;
  }

  .terms-conditions-section .terms-container {
    padding: 40px 20px;
    margin-top: -30px;
  }

  .terms-conditions-section .terms-section h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .terms-conditions-section .terms-header h1 {
    font-size: 28px;
  }

  .terms-conditions-section .terms-header p {
    font-size: 16px;
  }

  .terms-conditions-section .terms-intro {
    font-size: 16px;
  }

  .terms-conditions-section .nested-list {
    margin-left: 10px;
  }
}

/* ===terms-conditions-section-end=== */

/* === refund-section-start === */

.refund-section .refund-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #5a6b76 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.refund-section .refund-header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.refund-section .refund-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.refund-section .refund-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: -40px;
  position: relative;
}

.refund-section .refund-meta {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.refund-section .effective-date {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 10px;
}

.refund-section .refund-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--secondary-color);
  line-height: 1.8;
}

.refund-section .refund-section {
  margin-bottom: 40px;
}

.refund-section .refund-section h2 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.refund-section .refund-points {
  list-style: none;
}

.refund-section .refund-points li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.refund-section .refund-points li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.refund-section .fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.refund-section .fee-table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.refund-section .fee-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.refund-section .fee-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.refund-section .fee-table tr:hover {
  background-color: #f1f1f1;
}

.refund-section .non-refundable {
  background-color: #fff4f4;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #ff6b6b;
  margin: 20px 0;
}

.refund-section .non-refundable h4 {
  color: #d32f2f;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.refund-section .non-refundable h4 i {
  margin-right: 10px;
}

.refund-section .contact-info {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}

.refund-section .contact-info h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.refund-section .contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.refund-section .contact-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.refund-section .contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.refund-section .contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
}

.refund-section .contact-text h4 {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.refund-section .contact-text p,
.refund-section .contact-text a {
  color: var(--grey);
  text-decoration: none;
}

.refund-section .contact-text a:hover {
  color: var(--primary-color);
}

.refund-section .back-to-home {
  text-align: center;
  margin-top: 40px;
}

.refund-section .back-to-home a {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.refund-section .back-to-home a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.refund-section .back-to-home i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .refund-section .refund-header {
    padding: 60px 0 40px;
  }

  .refund-section .refund-header h2 {
    font-size: 32px;
  }

  .refund-section .refund-container {
    padding: 40px 20px;
    margin-top: -30px;
  }

  .refund-section .refund-section h2 {
    font-size: 22px;
  }

  .refund-section .fee-table {
    display: block;
    overflow-x: auto;
  }

  .refund-section .contact-details {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .refund-section .refund-header h2 {
    font-size: 28px;
  }

  .refund-section .refund-header p {
    font-size: 16px;
  }

  .refund-section .refund-intro {
    font-size: 16px;
  }

  .refund-section .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .refund-section .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* === refund-section-end === */
