/* ====== Colors ====== */
:root {
  --primary-color: #09a2ee;
  --secondary-color: #fc3033;
  --dark: #212529;
  --white: #ffffff;
  --grey: #516263;
  --bg-color-1: #b9b3b354;
  --bg-color-2: #fc30331c;
  --bg-color-3: #09a2ee27;
}

/* ====== Global Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ====== Media Elements ====== */
iframe,
video {
  width: 100%;
}

/* ====== Links ====== */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ====== Text Selection ====== */
::selection {
  background-color: var(--secondary-color);
  color: var(--dark);
}

/* ====== Custom Scrollbar ====== */
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--white);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-corner {
  background-color: var(--white);
}

/* ====== Body Styles ====== */
body {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

/* ====== Disable Text Selection Globally ====== */
/* body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
} */

/* ====== Typography ====== */
strong {
  font-weight: 600;
}

/* ====header-section-start==== */

.header-section .menu-bar {
  width: 100%;
  position: relative;
  z-index: 9999999;
  background-color: var(--primary-color);
}

.header-section .navbar {
  padding: 0;
}

.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.4s ease-in;
  background-color: var(--secondary-color);
}

.header-section .navbar-brand {
  padding: 0;
  background-color: var(--white);
}

.header-section .navbar-brand img {
  width: 150px;
  height: auto;
}

.header-section .menu-bar .nav-link {
  margin: 0px 5px;
  text-transform: capitalize;
  color: var(--white);
  font-weight: 300;
  font-size: 14px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  font-family: "Krona One", sans-serif;
}

.header-section .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  background-color: var(--dark);
  left: 0;
  transform-origin: right;
  transition: 0.5s;
}

.header-section .nav-link:hover:after {
  width: 100%;
  transition: 0.5s;
}

.header-section .navbar-nav .nav-link.active {
  color: var(--dark);
}

.header-section .dropdown-menu {
  background-color: var(--white);
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  padding: 0;
  display: none;
  border: 1px solid white;
  overflow: hidden;
  border: 0;
  transition: 0.5s;
  position: absolute;
}

.header-section .dropdown:hover .dropdown-menu {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  transition: 0.5s;
}

.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 .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
  margin-bottom: 2px;
  position: relative;
  transition: all 0.5s;
  z-index: 1;
}

.header-section .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 0;
  width: 0;
  background-color: var(--primary-color);
  transition: all 0.5s;
  z-index: -1;
}

.header-section .dropdown-menu .dropdown-item:hover::before {
  width: 100%;
  transition: all 0.5s;
}

.header-section .dropdown-menu .dropdown-item:hover {
  color: var(--white);
}

.header-section .dropdown-menu .dropdown-item:first-child {
  margin-top: 15px;
}

.header-section .dropdown i {
  transition: 0.6s;
}

.header-section .dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.6s;
}

.header-section .navbar-toggler {
  background-color: var(--dark);
  color: var(--white);
  margin: 0px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  padding: 2px 10px;
  border: 1px solid white;
  margin-right: 10px;
}

.header-section .offcanvas-header {
  background-color: var(--primary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sidbar-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: 16px;
  padding: 3px 8px;
}

.header-section .sid .header-section .nav-link:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

.header-section .conatact-btn {
  color: var(--dark);
  text-decoration: none;
  background-color: var(--white);
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: ease-in-out 0.5s;
  margin: 0px 10px;
  border: 1px solid var(--dark);
  font-family: "Krona One", sans-serif;
}

.header-section .conatact-btn:hover {
  color: var(--white);
  background-color: var(--dark);
  transition: ease-in-out 0.5s;
}

.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: 16px;
  padding: 6px 8px;
  background-color: var(--dark);
}

.header-section .offcanvas-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

/* ===header-section-end=== */

/* ===hero-section-start=== */

.hero-section {
  padding: 90px 0px;
  text-align: center;
  background-color: black;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-section .hero-caption span {
  font-size: 20px;
  color: var(--secondary-color);
}

.hero-section .hero-caption h1 {
  font-family: "Krona One", sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  line-height: 90px;
  margin-top: 20px;
}

.hero-section .hero-caption p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-top: 20px;
}

.hero-section .contact-link {
  margin-top: 50px;
}

.hero-section .contact-link .btn-primary {
  color: var(--dark);
  border: none;
  background-color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  align-items: center;
  padding: 2px 3px 2px 20px;
  margin: 5px 5px;
  font-family: "Krona One", sans-serif;
}

.hero-section .contact-link .btn-primary:hover i,
.hero-section .contact-link .btn-secondary:hover i {
  transform: rotate(360deg);
  transition: 0.5s;
  border-radius: 50%;
}

.hero-section .contact-link .btn-primary i {
  background-color: var(--dark);
  color: var(--white);
  height: 45px;
  width: 45px;
  border-radius: 10px;
  line-height: 45px;
  margin-left: 5px;
  font-size: 18px;
  transition: 0.5s;
}

.hero-section .contact-link .btn-secondary {
  color: var(--white);
  border: none;
  background-color: var(--secondary-color);
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  align-items: center;
  padding: 2px 3px 2px 20px;
  margin: 5px 5px;
  font-family: "Krona One", sans-serif;
}

.hero-section .contact-link .btn-secondary i {
  background-color: var(--dark);
  color: var(--white);
  height: 45px;
  width: 45px;
  border-radius: 10px;
  line-height: 45px;
  margin-left: 5px;
  font-size: 18px;
  transition: 0.5s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: -1;
  text-align: center;
}

.background li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(4, 157, 245, 0.267);
  animation: animate 3s linear infinite;
}

.background li:nth-child(0) {
  left: 0%;
  width: 102px;
  height: 102px;
  bottom: -102px;
  animation-delay: 1s;
}

.background li:nth-child(1) {
  left: 72%;
  width: 102px;
  height: 102px;
  bottom: -102px;
  animation-delay: 5s;
}

.background li:nth-child(2) {
  left: 52%;
  width: 101px;
  height: 101px;
  bottom: -101px;
  animation-delay: 2s;
}

.background li:nth-child(3) {
  left: 36%;
  width: 100px;
  height: 100px;
  bottom: -100px;
  animation-delay: 15s;
}

.background li:nth-child(4) {
  left: 18%;
  width: 105px;
  height: 105px;
  bottom: -105px;
  animation-delay: 11s;
}

.background li:nth-child(5) {
  left: 56%;
  width: 107px;
  height: 107px;
  bottom: -107px;
  animation-delay: 1s;
}

.background li:nth-child(6) {
  left: 52%;
  width: 105px;
  height: 105px;
  bottom: -105px;
  animation-delay: 2s;
}

.background li:nth-child(7) {
  left: 7%;
  width: 102px;
  height: 102px;
  bottom: -102px;
  animation-delay: 28s;
}

.background li:nth-child(8) {
  left: 33%;
  width: 104px;
  height: 104px;
  bottom: -104px;
  animation-delay: 7s;
}

.background li:nth-child(9) {
  left: 69%;
  width: 103px;
  height: 103px;
  bottom: -103px;
  animation-delay: 35s;
}

.background li:nth-child(10) {
  left: 0%;
  width: 105px;
  height: 105px;
  bottom: -105px;
  animation-delay: 17s;
}

.background li:nth-child(11) {
  left: 74%;
  width: 108px;
  height: 108px;
  bottom: -108px;
  animation-delay: 28s;
}

/* ===hero-section-end=== */

/* ====Benefits-Section-start====  */

.visuals-section {
  padding: 90px 0px;
  background-color: var(--bg-color-3);
}

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

.visuals-section .section-title span {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: "Krona One", sans-serif;
}

.visuals-section .section-title span img {
  height: 20px;
}

.visuals-section .section-title h2 {
  font-family: "Krona One", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 15px;
}

.visuals-section .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 5px;
}

.visuals-section .trust-badge {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: var(--primary-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 25px;
  height: 100%;
  text-align: center;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.visuals-section .trust-badge::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  transition: 0.8s;
  z-index: -1;
  height: 80px;
  width: 80px;
}

.visuals-section .trust-badge:hover::before {
  transform: translateY(0);
  transition: 0.8s;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  bottom: -5px;
  left: -5px;
}

.visuals-section .trust-icon {
  height: 90px;
  width: 90px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.visuals-section .trust-icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.visuals-section .trust-icon:before {
  animation: round 6s linear infinite;
  inset: -3px;
  border: 4px dashed var(--white);
}

.visuals-section .trust-badge h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-top: 20px;
  font-family: "Krona One", sans-serif;
}

.visuals-section .trust-badge p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 0;
}

.visuals-section .cta-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-family: "Krona One", sans-serif;
}

.visuals-section .cta-button:hover {
  background-color: var(--dark);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===hero-section-end=== */

/* ===about-section-start=== */

.about-section {
  padding: 90px 0px;
  background-color: var(--bg-color-2);
}

.about-section .about-image,
.about-section .about-content {
  margin-bottom: 25px;
}

.about-section .about-image {
  position: relative;
  z-index: 1;
}

.about-section .about-image img {
  border-radius: 10px;
}

.about-section .about-image:before {
  background-color: var(--secondary-color);
  content: "";
  height: 300px;
  right: -10px;
  position: absolute;
  bottom: -10px;
  width: 300px;
  z-index: -1;
  border-radius: 10px;
}

.about-section .about-content span {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: "Krona One", sans-serif;
}

.about-section .about-content span img {
  height: 20px;
}

.about-section .about-content h2 {
  font-family: "Krona One", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 20px;
}

.about-section .about-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  font-family: "Krona One", sans-serif;
}

.about-section .about-content p {
  font-size: 16px;
  margin: 20px 0px;
}

.about-section .about-content ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-section .about-content ul li {
  font-weight: 600;
  font-size: 14px;
}

.about-section .about-content ul li i {
  color: #25d366;
  font-size: 18px;
  margin-right: 3px;
}

.about-section .about-btn {
  margin-top: 40px;
}

.about-section .about-btn a {
  background-color: var(--primary-color);
  padding: 10px 15px;
  color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-family: "Krona One", sans-serif;
  transition: 0.5s;
}

.about-section .about-btn a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border: 1px solid var(--white);
  transition: 0.5s;
}

.about-section .vision .icon,
.about-section .mission .icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .vision,
.about-section .mission {
  margin-top: 20px;
}

.about-section .vision h3,
.about-section .mission h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 10px;
  font-family: "Krona One", sans-serif;
}

.about-section .vision p,
.about-section .mission p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 10px;
}

/* ===about-section-end=== */

/* ===service-section-start=== */

.service-section {
  padding: 90px 0px;
  background-color: var(--bg-color-3);
}

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

.service-section .section-title span {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: "Krona One", sans-serif;
}

.service-section .section-title span img {
  height: 20px;
}

.service-section .section-title h2 {
  font-family: "Krona One", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 20px;
}

.service-section .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 30px;
}

.service-section .service-box {
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: 0.5s;
  height: 100%;
}

.service-section .service-box .icon {
  margin-bottom: 20px;
  background-color: var(--white);
  height: 90px;
  width: 90px;
  border-radius: 50%;
  line-height: 90px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-section .service-box .icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.service-section .service-box .icon:before {
  animation: round 6s linear infinite;
  inset: -3px;
  border: 4px dashed var(--white);
}

.service-section .service-box .content h3 {
  font-size: 18px;
  font-family: "Krona One", sans-serif;
  font-weight: 500;
  color: var(--white);
  margin-top: 20px;
  text-transform: uppercase;
  position: relative;
}

.service-section .service-box .content h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
}

.service-section .service-box .content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 30px;
  text-align: justify;
}

.service-section .service-box .content ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.service-section .service-box .content ul li {
  font-weight: 400;
  margin-bottom: 5px;
  margin-left: 20px;
  position: relative;
}

.service-section .service-box .content ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--dark);
  position: absolute;
  left: -25px;
}

.service-section .service-box:hover {
  transform: translateY(-10px);
  transition: 0.5s;
}

.service-section .service-box .service-btn {
  margin: 30px 0px 20px 0px;
}

.service-section .service-box .service-btn a {
  background-color: var(--white);
  padding: 10px 15px;
  color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  font-family: "Krona One", sans-serif;
  transition: 0.5s;
}

.service-section .service-box .service-btn a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border: 1px solid var(--white);
  transition: 0.5s;
}

/* ===service-section-end=== */

/* ===success-story-section-start=== */

.success-story {
  background: url(../images/success-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
  padding: 90px 0px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.success-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.774);
  z-index: -1;
}

.success-story .success-content {
  margin: 0px 150px 0px 150px;
}

.success-story .success-content h2 {
  font-size: 50px;
  font-weight: 500;
  font-family: "Krona One", sans-serif;
  margin-bottom: 20px;
}

.success-story.success-content p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}

.success-story .success-btn {
  margin-top: 20px;
}

.success-story .success-btn a {
  background-color: var(--primary-color);
  padding: 10px 15px;
  color: var(--white);
  border: 1px solid var(--dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-family: "Krona One", sans-serif;
  font-size: 14px;
}

.success-story .success-btn a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border: 1px solid var(--white);
  transition: 0.5s;
}

/* ===success-story-section-end=== */

/* ===case-study-section-start=== */

.case-study {
  padding: 90px 0px;
  background-color: var(--bg-color-2);
}

.case-study .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.case-study .section-title span {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: "Krona One", sans-serif;
}

.case-study .section-title img {
  height: 20px;
}

.case-study .section-title h2 {
  font-family: "Krona One", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 20px;
}

.case-study .case-study-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  background-color: var(--white);
}

.case-study .case-study-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
}

.case-study .case-study-header h3 {
  font-size: 26px;
  color: var(--white);
  font-weight: 500;
}

.case-study .case-study-body {
  padding: 30px 20px;
}

.case-study .results-list {
  list-style-type: none;
  padding-left: 0;
}

.case-study .results-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
}

.case-study .results-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.case-study .testimonial-card {
  background-color: var(--light-color);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 5px 5px 0;
}

.case-study .testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.case-study .testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.case-study .cta-button {
  background-color: var(--primary-color);
  padding: 10px 15px;
  color: var(--white);
  border: 1px solid var(--dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-family: "Krona One", sans-serif;
  font-size: 14px;
}

.case-study .cta-button:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border: 1px solid var(--white);
  transition: 0.5s;
}

.case-study .strategy-item {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
}

.case-study .strategy-item:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.case-study .industry-tag {
  display: inline-block;
  background-color: var(--light-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* ===testimonial-section-start=== */

.testimonial-section {
  padding: 90px 0px;
  background-color: var(--bg-color-3);
}

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

.testimonial-section .section-title span {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: "Krona One", sans-serif;
}

.testimonial-section .section-title span img {
  height: 20px;
}

.testimonial-section .section-title h2 {
  font-family: "Krona One", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 20px;
}

.testimonial-section .testimonial-item {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 5px;
  height: 100%;
  min-height: 250px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-section .testimonial-item p {
  font-size: 16px;
  color: #555;
}

.testimonial-section .testimonial-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin: 0px 5px;
}

.testimonial-section .author h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.testimonial-section .author p {
  font-size: 16px;
  font-weight: 400;
  color: #3b3b3b;
  margin: 0;
}

.testimonial-section .slider-1 {
  position: relative;
}

.testimonial-section .slider-1 .owl-nav button.owl-next {
  height: 35px;
  width: 35px;
  border: 1px;
  background-color: var(--primary-color);
  border-radius: 5px;
  font-size: 20px;
  color: var(--white);
  position: absolute;
  right: -5px;
  top: 40%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section .slider-1 .owl-nav button.owl-prev {
  height: 35px;
  width: 35px;
  border: 1px;
  background-color: var(--primary-color);
  border-radius: 5px;
  left: -5px;
  font-size: 20px;
  color: var(--white);
  position: absolute;
  top: 40%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section .owl-carousel .owl-dots.disabled,
.testimonial-section .owl-carousel .owl-nav.disabled {
  display: block;
}

/* ===testimonial-section-end=== */

/* ===funfact-section-start=== */

.fun-facts-section {
  padding: 80px 0;
  background-color: var(--bg-color-2);
  color: white;
  position: relative;
  overflow: hidden;
}

.fun-facts-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.fun-facts-section .section-title span {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: "Krona One", sans-serif;
}

.fun-facts-section .section-title span img {
  height: 20px;
}

.fun-facts-section .section-title h2 {
  font-family: "Krona One", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 20px;
}

.fun-facts-section .fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.fun-facts-section .fun-fact-card {
  background: var(--primary-color);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fun-facts-section .fun-fact-card:hover {
  transform: translateY(-10px);
  background: var(--secondary-color);
}

.fun-facts-section .fact-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
}

.fun-facts-section .fact-icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 50%;
}

@keyframes round {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.fun-facts-section .fact-icon:before {
  animation: round 6s linear infinite;
  inset: -3px;
  border: 4px dashed var(--white);
}

.fun-facts-section .counter-value,
.fun-facts-section span {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #f1f1f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fun-facts-section .fact-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fun-facts-section .fact-detail {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Animation for numbers */
@keyframes countUp {
  from {
    content: "0";
  }

  to {
    content: attr(data-count);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fun-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fun-fact-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .fun-facts-grid {
    grid-template-columns: 1fr;
  }

  .fact-number {
    font-size: 2.5rem;
  }
}

/* ===funfact-section-end=== */

/* ===cta-section-start=== */

/* CTA Section Styles */
.cta-section {
  padding: 90px 0;
  background-color: var(--primary-color);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.cta-section .cta-content {
  flex: 1;
  z-index: 2;
}

.cta-section .cta-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
  z-index: 2;
}

.cta-section .cta-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.cta-section .cta-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.cta-section .cta-image:hover img {
  transform: scale(1.05);
}

.cta-section .cta-title {
  font-family: "Krona One", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  margin-top: 20px;
}

.cta-section .cta-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
}

.cta-section .cta-contact-methods {
  margin-bottom: 40px;
}

.cta-section .contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.185);
  padding: 15px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-section .contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.cta-section .contact-method i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--secondary-color);
  min-width: 45px;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section .contact-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 3px;
}

.cta-section .contact-info {
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cta-section .contact-info:hover {
  color: #f1f1f1;
  text-decoration: underline;
}

.cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--primary-color);
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-family: "Krona One", sans-serif;
}

.cta-section .cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-section .cta-button:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Decorative Elements */
.cta-section .cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section .cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    gap: 30px;
  }

  .cta-content,
  .cta-image {
    width: 100%;
  }

  .cta-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .contact-method {
    padding: 12px 15px;
  }

  .contact-method i {
    font-size: 1.2rem;
    margin-right: 15px;
  }

  .contact-info {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* ===cta-section-end=== */

/* === image-slider-start === */

.image-slider {
  padding: 45px 0;
  background-color: var(--bg-color-2);
  overflow: hidden;
}

.slider-2.owl-carousel {
  position: relative;
}

.slider-2 .owl-stage {
  display: flex;
  align-items: center;
}

.image-slider .image-box {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
  margin: 0 10px;
  cursor: pointer;
  border: 2px solid var(--secondary-color);
}

.image-slider .image-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-slider .image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-slider .image-box:hover img {
  transform: scale(1.03);
}

/* Dots Styling */
.image-slider .slider-2 .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.image-slider .slider-2 .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.image-slider .slider-2 .owl-dot.active {
  background-color: #3498db;
  transform: scale(1.2);
}

/* Image Popup Modal */
.image-slider .image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-slider .image-popup.active {
  display: flex;
  opacity: 1;
}

.image-slider .popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.image-slider .popup-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.image-slider .close-popup {
  position: absolute;
  top: 0px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 50px;
  width: 50px;
  background-color: var(--primary-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.image-slider .close-popup:hover {
  transform: rotate(90deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .image-slider .image-slider {
    padding: 40px 0;
  }

  .image-slider .slider-2 .owl-nav {
    display: none;
  }

  .image-slider .popup-content {
    max-width: 95%;
  }

  .image-slider .close-popup {
    top: -50px;
  }
}

/* === image-slider-end === */

/* ===team-section-start=== */

.team-section {
  padding: 90px 0px;
  background-color: var(--bg-color-3);
}

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

.team-section .section-title span {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: "Krona One", sans-serif;
}

.team-section .section-title span img {
  height: 20px;
}

.team-section .section-title h2 {
  font-family: "Krona One", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 20px;
}

.team-section .team-member {
  text-align: center;
  margin-bottom: 30px;
  background: var(--primary-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.team-section .team-member:hover img {
  transform: scale(1.05);
  transition: all 0.5s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-section .team-member img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.team-section .team-member h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.team-section .team-member p {
  font-size: 14px;
  font-weight: 400;
  color: #1f1e1e;
  margin: 0;
  margin-top: 5px;
}

/* Dots Styling */
.team-section .slider-3 .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.team-section .slider-3 .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.team-section .slider-3 .owl-dot.active {
  background-color: #3498db;
  transform: scale(1.2);
}

/* ===team-section-end=== */

/*===footer-section-start ===*/

.footer-section {
  background: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 90px 0px 0px 0px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.884);
  z-index: -1;
}

.footer-section .coppany-logo img {
  width: 150px;
  margin-bottom: 20px;
  background-color: var(--white);
}

.footer-section .footer-item {
  margin-bottom: 25px;
  padding: 0px 10px;
}

.footer-section .footer-item h2 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-section .footer-item h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-section .footer-item .services,
.footer-section .footer-item .contact,
.footer-section .footer-item .quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section .footer-item p {
  font-size: 16px;
  color: var(--white);
  font-weight: 300;
}

.footer-section .footer-item .services li,
.footer-section .footer-item .contact-link li,
.footer-section .footer-item .quick-links li {
  margin-bottom: 10px;
}

.footer-section .footer-item .services li a,
.footer-section .footer-item .contact-link li a,
.footer-section .footer-item .quick-links li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-section .footer-item .services li a:hover,
.footer-section .footer-item .contact-link li a:hover,
.footer-section .footer-item .quick-links li a:hover {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.footer-section .footer-item .services li a i,
.footer-section .footer-item .quick-links li a i {
  margin-right: 5px;
  color: var(--primary-color);
  font-size: 14px;
}

.footer-section .footer-item .contact-link li i {
  font-size: 18px;
  color: var(--primary-color);
  margin-right: 5px;
}

.footer-section .copy-right {
  background-color: var(--secondary-color);
  text-align: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

.footer-section .copy-right .copy-right-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  padding: 20px 0px;
}

.footer-section .copy-right p {
  font-size: 14px;
  color: var(--white);
  margin: 0;
}

.footer-section .copy-right-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.footer-section .copy-right-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section .copy-right-menu ul li {
  margin: 0 10px;
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}

.footer-section .copy-right-menu ul li a {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}

.footer-section .top-button .top {
  background-color: var(--primary-color);
  color: var(--white);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  right: 1em;
  bottom: 0.2em;
  position: fixed;
  font-size: 22px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.footer-section .call-button .call {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: 1em;
  bottom: 5em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--primary-color);
}

.footer-section .whatsapp-button .whatsapp {
  background-color: #25d366;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: 1em;
  bottom: 8em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--primary-color);
}

/*===footer-section-end===*/

/*===breadcrumb-section-start=== */

.breadcrumb-section {
  padding: 50px 0px;
  position: relative;
  background: url(../images/breadcrumb-bg.jpg) center center repeat no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000b0;
  z-index: -1;
}

.breadcrumb-section .element .right {
  position: absolute;
  top: 10%;
  background-color: var(--primary-color);
  height: 50px;
  width: 200px;
  left: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.breadcrumb-section .element .right {
  animation: bounceInRight;
  animation-duration: 2s;
}

.breadcrumb-section .element .left {
  position: absolute;
  right: 0;
  bottom: 10%;
  background-color: var(--white);
  height: 50px;
  width: 200px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.breadcrumb-section .element .left {
  animation: bounceInLeft;
  animation-duration: 2s;
}

.breadcrumb-section .breadcrumb-heading h1 {
  font-size: 30px;
  color: var(--white);
  font-weight: 600;
  z-index: 1;
}

.breadcrumb-section .breadcrumb li {
  font-size: 16px;
  color: var(--white);
  z-index: 1;
}

.breadcrumb-section .breadcrumb li i {
  padding: 0px 10px;
}

.breadcrumb-section .breadcrumb li a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
}

.breadcrumb-section .breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--white);
}

/* ====breadcrumb-section-end=== */

/* ====contact-section-start=== */

.contact-section {
  padding: 90px 0px;
  background-color: var(--bg-color-3);
}

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

.contact-section .section-title span {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: "Krona One", sans-serif;
}

.contact-section .section-title span img {
  height: 20px;
}

.contact-section .section-title h2 {
  font-family: "Krona One", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 20px;
}

.contact-section .contact-box {
  margin-bottom: 30px;
  background: var(--primary-color);
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
}

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

.contact-section .contact-box img {
  height: 70px;
  width: 120px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section .contact-box h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-section .contact-box p {
  font-size: 16px;
  color: #f0f0f0;
  margin: 0;
}

.contact-section .contact-box .contact-icon {
  margin-top: 20px;
  font-size: 24px;
  height: 90px;
  width: 90px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  background-color: var(--white);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.contact-section .contact-box a {
  font-size: 16px;
  color: #f0f0f0;
  margin: 0;
}

/* ====contact-section-end=== */

/* ===privacy-policy-section-start=== */

.privacy-policy .privacy-header {
  background-color: var(--bg-color-3);
  color: var(--dark);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.privacy-policy .privacy-header h1 {
  font-weight: 700;
  margin: 0;
}

.privacy-policy .last-updated {
  opacity: 0.8;
  font-size: 0.9rem;
}

.privacy-policy .privacy-content {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  padding: 10px;
  margin-bottom: 3rem;
}

.privacy-policy h2 {
  color: var(--primary-color);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  margin: 2rem 0 1.5rem;
  font-size: 26px;
  font-weight: 600;
}

.privacy-policy h3 {
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}

.privacy-policy .highlight-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* ===privacy-policy-section-end=== */

/* ===terms-and-conditions-section-start=== */

.terms-and-conditions-section .terms-header {
  background-color: var(--bg-color-3);
  color: var(--dark);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.terms-and-conditions-section .terms-header h1 {
  font-weight: 700;
  margin: 0;
}

.terms-and-conditions-section .intro-text {
  font-size: 1.1rem;
  margin: 0;
}

.terms-and-conditions-section .terms-content {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  padding: 2.5rem 0px;
  margin-bottom: 3rem;
}

.terms-and-conditions-section h2 {
  color: var(--primary-color);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  margin: 2rem 0 1.5rem;
  font-weight: 600;
  font-size: 26px;
}

.terms-and-conditions-section h3 {
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}

.terms-and-conditions-section .highlight-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.terms-and-conditions-section .section-icon {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.terms-and-conditions-section .service-item {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.terms-and-conditions-section .service-item:before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .terms-and-conditions-section .terms-header {
    padding: 3rem 0;
  }

  .terms-and-conditions-section .terms-content {
    padding: 1.5rem;
  }
}

/* ===terms-and-conditions-section-end=== */

/* ===refund-policy-section-start=== */

.refund-policy-section .refund-header {
  background-color: var(--bg-color-3);
  color: var(--dark);
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.refund-policy-section .refund-header h1 {
  font-weight: 700;
  margin: 0;
}

.refund-policy-section .intro-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.refund-policy-section .refund-content {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  padding: 2.5rem 0px;
  margin-bottom: 3rem;
}

.refund-policy-section h2 {
  color: var(--primary-color);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
  margin: 2rem 0 1.5rem;
  font-weight: 600;
  font-size: 26px;
}

.refund-policy-section .policy-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.refund-policy-section .eligible:before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.refund-policy-section .not-eligible:before {
  content: "✗";
  color: var(--danger-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.refund-policy-section .process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.refund-policy-section .step-number {
  background-color: var(--secondary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.refund-policy-section .highlight-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  margin: 2rem 0;
}

.refund-policy-section .contact-email {
  color: var(--secondary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .refund-policy-section .refund-header {
    padding: 3rem 0;
  }

  .refund-policy-section .refund-content {
    padding: 1.5rem;
  }
}

/* ===refund-policy-section-end=== */