/**
* Template Name: BizLand
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Updated: Dec 05 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Open Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0b2c74;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;
  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 90px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }


  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }


  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }


}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 87vh;

  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg1.jpg") top left;
  background-size: cover;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  color: #FFBE56;
}

.hero p {
  color: #fff;
  font-weight: 900;
  margin: 5px 0 30px 0;
  font-size: 18px;
  font-weight: 400;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);

}

.hero .btn-get-started {
  color: #000;
  background: #fff;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;

  }

  .hero {
    width: 100%;
    min-height: 40vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;

    background-size: cover;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: #000;
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: #cf8105;
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 20px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;

    .hero {
      width: 100%;
      min-height: 45vh;
      position: relative;
      padding: 60px 0;
      display: flex;
      align-items: center;
      background: url(../img/hero-bg.jpg) top left;
      background-size: cover;
    }
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .hero {
    width: 100%;
    min-height: 45vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;

    background-size: cover;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }

  .hero {
    width: 100%;
    min-height: 35vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;

    background-size: cover;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.about1 {
  padding: 50px 5%;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
}

.about-image1 img {
  max-width: 500px;
}

/* About Container */
.about-container1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Initial Hidden State */
.about-image1 img,
.about-content1 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Bounce-in effect */
.about1.bounce .about-image1 img,
.about1.bounce .about-content1 {
  opacity: 1;
  transform: translateY(0);
  animation: bounceIn 2s ease-in-out;
}

/* Keyframe Animation */
@keyframes bounceIn {
  0% {
    transform: translateY(50px);
    opacity: 1;
  }

  50% {
    transform: translateY(-10px);
    opacity: 1;
  }

  75% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container1 {
    flex-direction: column;
    text-align: center;
  }

  .about-image1 img {
    max-width: 400px;
  }

  .about-content1 h2,
  .about-content1 p {
    text-align: left;
  }
}

@media (max-width: 992px) {
  .about-container1 {
    flex-direction: column;
    text-align: center;
  }
}

.gradient-border-button {
  position: relative;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  color: white;
  background: #1e293b;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gradient-border-button::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(45deg, #60a5fa, #a78bfa, #60a5fa);
  border-radius: 10px;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.gradient-border-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(96, 165, 250, 0.4);
}

/* ****************
     General
 ****************** */




#main h1 {
  font-size: 45px;
  color: #bac0e3;
  text-align: center;
}

.cards-list {
  z-index: 0;

  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
}

.card {
  margin: 30px auto;

  width: 360px;

  padding: 20px;
  border-radius: 50px 0;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 30%);
  cursor: pointer;
  transition: 0.4s;
  justify-content: flex-start !important;
  background-color: #97A9BD;
}

.card_image {
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 10px auto;
}

.card_image i {
  margin: 17px;
  font-size: 37px;

  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.card_title .heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: auto;
  text-align: center;
  color: #fff;
}

.card_title p {
  margin: 10px auto;
  line-height: normal;
  text-align: center;
  color: #fff;
}

.cards-list .card:nth-child(1) {
  background-color: #13365e;
}

.cards-list .card:nth-child(1):hover {
  background-color: #000;
}

.cards-list .card1 .card_image a i {
  color: #000;

}

.cards-list .card:nth-child(2) {
  background-color: #2c6b95;
}

.cards-list .card:nth-child(2):hover {
  background-color: #000;
}

.cards-list .card2 .card_image a i {
  color: #000;

}

.cards-list .card:nth-child(3) {
  background-color: #d98b0c;
}

.cards-list .card:nth-child(3):hover {
  background-color: #000;
}

.cards-list .card3 .card_image a i {
  color: #000;

}












.btn-flip {
  opacity: 1;
  outline: 0;
  background-color: #007bff;
  color: #fff;
  border-radius: 20px;
  line-height: 40px;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-family: "Open Sans";

  font-size: 14px;
  font-weight: 600;

}

.btn-flip:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.btn-flip:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}

.btn-flip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  border-radius: 20px;
  color: #ababb4;
  display: block;
  transition: 0.5s;
  position: absolute;
  background: #fcfcfc;
  content: attr(data-back);
  transform: translateY(-50%) rotateX(90deg);
}

.btn-flip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #f9f9ff;
  display: block;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 40px;
  transition: 0.5s;
  position: relative;
  /* background: #fbfbfd; */
  content: attr(data-front);
  transform: translateY(0) rotateX(0);
  border: 1px solid #fbfbfb;
}

.btn-read {
  justify-content: center;
  align-content: center;
  display: flex;
  margin: 31px;
}


.packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;

}

.package {
  width: 100%;
  max-width: 260px;
  background: linear-gradient(135deg, #6c6d6e, #020607);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background 0.3s;
  border: 4px dotted;
  animation: borderAnimation 2s infinite linear;
  text-align: center;
}

@keyframes borderAnimation {
  0% {
    border-color: #ff5733;
  }

  25% {
    border-color: #33ff57;
  }

  50% {
    border-color: #3357ff;
  }

  75% {
    border-color: #ff33a6;
  }

  100% {
    border-color: #ff5733;
  }
}

.package:hover {
  background: linear-gradient(135deg, #23262a, #00C6FF);
  color: #555;
  transform: scale(1.05);
  animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.package-header {
  background: linear-gradient(90deg, #080915, #9d9da1);
  color: white;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
}

.package:hover .price {
  color: #fff;
}

.details {
  font-size: 15px;
  margin-top: 5px;

  color: #fff;
}

.pack {
  margin: 10px 0;
  padding-left: 0;
  text-align: left;
  list-style-type: none;
}

.pack li {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #fff;

}

/* Responsive Design */
@media (min-width: 768px) {
  .package {
    width: 48%;
  }
}

.flip-button {
  position: relative;
  width: 140px;
  height: 36px;
  perspective: 1000px;

}

.flip-button .inner {
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-button:hover .inner {
  transform: rotateX(180deg);
}

.flip-button .front,
.flip-button .back {
  position: absolute;
  width: 100%;
  height: 100%;

  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
}

.flip-button .front {
  background: linear-gradient(90deg, #fcc367, #ea9409);
  color: #000;
}

.flip-button .back {
  background: linear-gradient(90deg, #e2e2e3, #9d9c98);
  color: white;
  transform: rotateX(180deg);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .flip-button {
    width: 120px;
    height: 35px;
  }

  .flip-button .front,
  .flip-button .back {
    font-size: 16px;
  }
}

/* Animated Heading */
.animated-heading {

  font-size: 30px;
  font-weight: bold;
  color: #555;
  position: relative;
  display: inline-block;
  opacity: 0;
  padding-bottom: 35px;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Underline Effect */
.animated-heading::after {
  content: "";
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #000, #000, #000, #000);
  display: block;
  margin-top: 5px;
  border-radius: 3px;
  transition: width 0.8s ease-in-out;
}

/* When visible */
.animated-heading.visible {
  opacity: 1;
  transform: translateY(0);
}

.animated-heading.visible::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .animated-heading {
    font-size: 25px;
    font-weight: bold;
    color: #555;
    position: relative;
    display: inline-block;
    opacity: 0;
    padding-bottom: 35px;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  /* Underline Effect */
  .animated-heading::after {
    content: "";
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #000, #000, #000, #000);
    display: block;
    margin-top: 5px;
    border-radius: 3px;
    transition: width 0.8s ease-in-out;
  }

  .package {
    width: 100%;
    max-width: 350px;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1140px;
  margin: auto;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Overlay Effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-container:hover .overlay {
  opacity: 1;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.modal img {
  width: 500px;
  height: auto;
  border-radius: 10px;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
  color: black;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  user-select: none;
  transition: background 0.3s;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.8);
}

.prev {
  left: 5%;
}

.next {
  right: 5%;
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: red;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .prev,
  .next {
    font-size: 18px;
    padding: 8px;
  }

  .modal img {
    width: 300px;
    height: auto;
    border-radius: 10px;
  }
}

/* Counter Section */
.counter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #FFBE56;
  color: white;
  padding: 50px 20px;
}

.counter-box {
  width: 250px;
  margin: 15px;
  padding: 20px;
  background: #333;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.5s ease-in-out, background 0.3s ease;
}

/* Counter Number */
.counter-number {
  font-size: 40px;
  font-weight: bold;
  color: #6496ED;
  display: inline-block;
}

/* Rotate Animation */
.rotate {
  animation: rotateAnim 1s linear infinite;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Counter Label */
.counter-label {
  font-size: 18px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-section {
    flex-direction: column;
  }
}

.services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 20px;
}

.service-box {
  height: 600px;
  width: 23%;
  background: #f9cc89;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, background 0.4s ease;
  border: 4px solid transparent;
  animation: fadeInUp 1s ease-in-out;
}

/* Gradient Border Animation */
.service-box::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #3c87f7, #719def, #624bd5);
  z-index: -1;
  transition: transform 0.5s;
}

.service-box:hover {
  background: #210bc5;
  color: #fff;
  transform: scale(1.05);
}

.service-box:hover::before {
  transform: rotate(180deg);
}

/* Icon Styling */
.service-box i {
  font-size: 50px;
  color: #2e17b1;
  margin-bottom: 10px;
  transition: color 0.4s;
}

.service-box:hover i {
  color: #fff;
  animation: bounce 0.6s infinite alternate;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-box {
    height: auto;
    width: 43%;

  }
}

@media (max-width: 768px) {
  .service-box {
    height: auto;
    width: 70%;

  }
}

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bounce Animation */
@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.footer1 {
  background: #222;
  color: white;
  padding: 40px 0;
  text-align: center;
  opacity: 1;
  transform: translateY(50px);
  transition: all 1s ease-in-out;
}

/* Footer Container */
.footer-container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

/* Footer Sections */
.footer-section1 {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

/* Footer Headings */
.footer-heading1 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #FFBE56;
  text-align: left;


}


/* Contact Info */
.footer-section1 p {
  margin: 10px 0;
  text-align: left;
}

/* Download Buttons */
.app-btn {
  display: inline-block;
  background: #FFBE56;
  color: #222;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 5px;
  text-decoration: none;
  transition: transform 0.3s;
}

.app-btn:hover {
  transform: scale(1.1);
}

/* Social Icons */
.social-icon {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s, transform 0.3s;
  justify-items: left;
}

.social-icon:hover {
  color: #FFBE56;
  transform: rotate(360deg);
}

/* Scroll Animation */
.footer1.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container1 {
    flex-direction: column;

  }

  .footer-section1 p {
    margin: 10px 0;
    text-align: left;
  }

  .footer-heading1 {

    text-align: left;
  }
}

.booking-section {
  background: url('https://source.unsplash.com/1600x900/?car,wash') no-repeat center center/cover;

  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-container {
  display: flex;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 90%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.booking-section.active .booking-container {
  opacity: 1;
  transform: translateY(0);
}

.booking-left {
  width: 50%;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.booking-left h2 {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-left p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.booking-right {
  width: 50%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 10px 10px 0;
}

.booking-right input,
.booking-right select,
.booking-right textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  outline: none;
  border: 1px solid #ccc;

}

.booking-right button {
  background: #FFBE56;
  color: #000;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.booking-right button:hover {
  background: #efa42b;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
  }

  .booking-left,
  .booking-right {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .booking-right {
    border-radius: 0 0 10px 10px;
  }
}


/* Terms Section */
.terms {
  background: white;
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Term Cards */
.term-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.term-card:hover {
  transform: scale(1.03);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.term-card h3 {
  font-size: 18px;
  color: #000;
}

.term-card p {
  font-size: 16px;
  color: #444;
}

/* Contact Section */
.contact {
  background: #222;
  color: white;
}

.contact a {
  color: #ffcc00;
  text-decoration: none;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.term-card {
  animation: fadeIn 0.5s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
  .terms {
    padding: 30px 15px;
  }
}

/* Policy Content */
.policy-container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.policy-box {
  margin-bottom: 20px;
  padding: 15px;
  border-left: 5px solid var(--accent-color);
  background: #f9f9f9;
  border-radius: 5px;
  animation: slideIn 0.8s ease-in-out;
}

.policy-box h2 {
  font-size: 18px;
  color: #000;
}

.policy-box p,
.policy-box ul {
  margin: 0;
  font-size: 16px;
}

.policy-box ul {
  padding-left: 20px;
}

.policy-box ul li {
  margin-bottom: 8px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .policy-container {
    padding: 15px;
  }

  .policy-box {
    padding: 10px;
  }

  .header h1 {
    font-size: 24px;
  }

  .header p {
    font-size: 14px;
  }
}

/* HERO */
.k2x-hero-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* BACKGROUND */
.k2x-bg-flow {
  position: absolute;
  width: 100%;
  height: 200%;
  top: 0;
  left: 0;
  z-index: 1;
}

.k2x-bg-layer {
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7') center/cover no-repeat;
}

/* OVERLAY */
.k2x-hero-wrap::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 2;
}

/* CONTENT */
.k2x-content-box {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: left;
}

/* TITLE */
.k2x-main-heading {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* SUBTITLE */
.k2x-sub-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* TEXT */
.k2x-content-box p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

/* BUTTON */
.k2x-btn {
  display: inline-block;
  padding: 14px 34px;
  margin: 8px;
  border: 2px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.k2x-btn:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .k2x-main-heading {
    font-size: 40px;
  }

  .k2x-sub-heading {
    font-size: 22px;
  }

  .k2x-content-box p {
    font-size: 15px;
  }

  .k2x-content-box {
    position: relative;
    z-index: 3;
    max-width: 400px;
    padding-top: 130px;
  }
}

@media(max-width:1068px) {
  .k2x-main-heading {
    font-size: 40px;
  }

  .k2x-sub-heading {
    font-size: 22px;
  }

  .k2x-content-box p {
    font-size: 15px;
  }

  .k2x-content-box {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 130px;
  }
}

/* Overlay background */
.k2x-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 90;
}

/* Show overlay */
.k2x-overlay.active {
  display: block;
}

/* Menu above overlay */
.k2x-menu {
  z-index: 100;
}

/* Prevent scroll */
body.menu-open {
  overflow: hidden;
}

/* TOP BAR */
.k2x-topbar {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: absolute;
  width: 100%;
  z-index: 2000;
}

.k2x-topbar div {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* NAVBAR FULL WIDTH */
/* NAVBAR */
.k2x-navbar {
  position: absolute;
  top: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

/* INNER */
.k2x-nav-inner {
  width: 95%;
  max-width: 1300px;
  height: 90px;
  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  padding: 0 40px;
  border-radius: 12px;
  position: relative;
}

/* LOGO */
.k2x-logo img {
  height: 75px;
}

/* CENTER MENU */
.k2x-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.k2x-menu a {
  color: #fff;
  text-decoration: none;
  margin: 0 14px;
  font-size: 15px;
  position: relative;
}

.k2x-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.k2x-menu a:hover::after {
  width: 100%;
}

/* RIGHT SIDE BUTTONS */
/* BUTTON WRAP - LEFT ALIGN BELOW SUBTITLE */
.k2x-cta-wrapX91 {
  position: static;
  /* remove absolute */
  margin-top: 50px;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  /* LEFT ALIGN */
  align-items: center;
}

/* BUTTON STYLE */
.k2x-btnX91 {
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  background: transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  /* change direction */
}

/* HOVER */
.k2x-btnX91:hover {
  background: #fff;
  color: #000;
}

/* CLICK */
.k2x-btnX91:active {
  transform: scale(0.9);
}

/* LOAD ANIMATION (from bottom now) */
.btn-anim-1 {
  animation: slideUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

.btn-anim-2 {
  animation: slideUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

/* KEYFRAMES */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TOGGLE (MOBILE) */
.k2x-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .k2x-menu {
    display: none;
  }

  .k2x-toggle {
    display: block;
    margin-left: auto;
  }


}


/* HERO */
.k2x-hero-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 190px;
  /* top bar + navbar spacing */
}

/* BACKGROUND */
.k2x-bg-flow {
  position: absolute;
  width: 100%;
  height: 200%;
  top: 0;
  left: 10p;
  z-index: 1;
}

.k2x-bg-layer {
  width: 100%;
  height: 100%;
  background: url('../img/hero2.webp') center/cover no-repeat;
}

/* OVERLAY */
.k2x-hero-wrap::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* CONTENT */
.k2x-content-box {
  position: relative;
  z-index: 3;
  overflow: hidden;

}

/* ANIMATION CLASSES */
.k2x-anim {
  opacity: 0;
  transform: translateX(50px);
  animation-fill-mode: forwards;
}

.k2x-anim.k2x-main-heading {
  animation: slideIn 1s ease forwards;
  animation-delay: 0.3s;
}

.k2x-anim.k2x-sub-heading {
  animation: slideIn 1s ease forwards;
  animation-delay: 0.8s;
}

.k2x-anim.k2x-para {
  animation: slideIn 1s ease forwards;
  animation-delay: 1.3s;
}

.k2x-anim.k2x-btn {
  animation: slideIn 1s ease forwards;
  animation-delay: 1.8s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* HEADINGS */
.k2x-main-heading {
  font-size: 12vh;
  font-weight: 900;
  color: #fff;

}

.k2x-sub-heading {
  font-size: 28px;
  margin: 20px 0;
  color: #fff;
}

.k2x-para {
  font-size: 18px;
  margin: 10px 0 30px;
  color: #fff;
}

/* BUTTON UNIQUE STYLE */
.k2x-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  /* text color */
  background: transparent;
  /* transparent bg */
  border: 2px solid #cfcfd0;
  /* outline */
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
}

.k2x-btn:hover {
  background: #c0bfbf;
  color: #000;
}

/* MOBILE */
@media(max-width:768px) {
  .k2x-toggle {
    display: block;
  }

  .k2x-menu {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* or max-width for better design */
    max-width: 500px;
    height: 200px;

    background: #000;
    flex-direction: column;
    align-items: center;
    display: none;

    border-radius: 10px;
  }

  .k2x-menu.active {
    display: flex;
  }

  .k2x-menu a {
    margin: 10px 0;
  }

  /* REMOVE SHAPE FOR MOBILE */
  .k2x-nav-inner {
    clip-path: none;
    border-radius: 10px;
    padding: 10px 20px;
    height: auto;
  }

  .k2x-main-heading {
    font-size: 52px;
  }

  .k2x-sub-heading {
    font-size: 20px;
  }


  .k2x-para {
    font-size: 16px;
  }

  .k2x-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

.qzx-about-wrap {
  padding: 20px 30px;
  background: #ffffff;
  overflow: hidden;
}

.qzx-about-box {
  max-width: 1200px;
  margin: auto;
}

.qzx-about-card {
  display: flex;
  align-items: center;
  padding: 60px;
  gap: 50px;
  position: relative;
}

.qzx-about-img {
  flex: 1;
}

.qzx-about-img img {
  width: 100%;
  border-radius: 15px;
  transform: scale(1.05);
}

.qzx-about-content {
  flex: 1;
}

/* TITLE */
.tyx-title1 {
  font-size: 45px;
  font-weight: 600;
  color: #382694;
  display: inline-block;
  overflow: hidden;
  margin-bottom: 20px;

  white-space: nowrap;
  /* 🔥 PREVENT LINE BREAK */
}

.tyx-title1 span {
  display: inline-block;
  transform: translateY(-120%);
  opacity: 0;
  animation: tyxDrop 0.5s forwards;
  margin-right: 1px;
}

/* PERFECT WORD GAP */
.tyx-title1 span.space {
  margin-right: 8px;
  /* clean spacing between words */
}

/* ANIMATION */
@keyframes tyxDrop {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.qzx-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.qzx-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  transition: 0.4s;
}

.qzx-btn:hover {
  background: #ff6600;
}

/* LEFT RIGHT ANIMATION */
.qzx-left,
.qzx-right {
  opacity: 0;
  transition: 1s ease;
}

.qzx-left {
  transform: translateX(-100px);
}

.qzx-right {
  transform: translateX(100px);
}

.qzx-show {
  opacity: 1;
  transform: translateX(0);
}

/* DECOR */
.qzx-about-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #f1f0f6, #006732);
  top: -30px;
  right: -30px;
  border-radius: 50%;
  opacity: 0.2;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .qzx-about-card {
    flex-direction: column;
    padding: 40px 15px;
    text-align: left;
  }

  .tyx-title {
    font-size: 34px;
  }
}

.znt-whx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #006634;
  background: transparent;
  border: 2px solid #006634;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s;
}

/* HOVER */
.znt-whx-btn:hover {
  background: #006634;
  color: #fff;
  transform: scale(1.05);
}

.k3d-why-wrap {
  position: relative;
  padding: 40px 20px;
  background: #fff;
  overflow: hidden;
}

/* FLOATING BG */
.k3d-bg span {
  position: absolute;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(174, 178, 176, 0.08);
  background: rgba(11, 105, 52, 0.05);
  transform: rotate(45deg);
  animation: k3dFloat 10s linear infinite;
}

.k3d-bg span:nth-child(1) {
  top: 10%;
  left: 10%;
}

.k3d-bg span:nth-child(2) {
  top: 70%;
  left: 20%;
}

.k3d-bg span:nth-child(3) {
  top: 30%;
  right: 15%;
}

.k3d-bg span:nth-child(4) {
  bottom: 10%;
  right: 10%;
}

.k3d-bg span:nth-child(5) {
  top: 50%;
  left: 50%;
}

@keyframes k3dFloat {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(-25px) rotate(135deg);
  }

  100% {
    transform: translateY(0) rotate(225deg);
  }
}

/* FLEX LAYOUT */
.k3d-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.k3d-left {
  flex: 1;
}



.tyx-right {
  color: #3C2A98;
  font-weight: 600;
}

/* SUBTEXT */
.k3d-desc {
  margin-top: 20px;
  color: #000;
  line-height: 1.7;
  max-width: 400px;
}

/* ROTATING CUBE */
.k3d-rotate-box {
  margin-top: 40px;
  width: 60px;
  height: 60px;
  perspective: 600px;
}

.k3d-cube {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: k3dRotate 6s linear infinite;
}

.k3d-cube .face {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f1f0f6, #006732);
  opacity: 0.8;
}

.front {
  transform: translateZ(30px);
}

.back {
  transform: rotateY(180deg) translateZ(30px);
}

.right {
  transform: rotateY(90deg) translateZ(30px);
}

.left {
  transform: rotateY(-90deg) translateZ(30px);
}

.top {
  transform: rotateX(90deg) translateZ(30px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(30px);
}

@keyframes k3dRotate {
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* RIGHT SIDE GRID */
.k3d-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.k3d-card {
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
  transition: 0.4s;

  opacity: 0;
  transform: translateY(60px);
}

.k3d-card i {
  font-size: 26px;
  margin-bottom: 12px;
  color: #3C2A98;
}

.k3d-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.k3d-card p {
  font-size: 14px;
  color: #000;
}

.k3d-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.k3d-show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .k3d-container {
    flex-direction: column;
    text-align: center;
  }

  .k3d-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .k3d-grid {
    grid-template-columns: 1fr;
  }

  .tyx-title {
    font-size: 28px;
  }
}

/* RESPONSIVE IMPROVEMENTS */

/* Tablet */
@media (max-width: 992px) {
  .k3d-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .k3d-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .k3d-desc {
    max-width: 100%;
  }

  .k3d-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {


  .k3d-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .k3d-rotate-box {
    width: 50px;
    height: 50px;
  }

  .k3d-cube .face {
    width: 50px;
    height: 50px;
  }

  .front {
    transform: translateZ(25px);
  }

  .back {
    transform: rotateY(180deg) translateZ(25px);
  }

  .right {
    transform: rotateY(90deg) translateZ(25px);
  }

  .left {
    transform: rotateY(-90deg) translateZ(25px);
  }

  .top {
    transform: rotateX(90deg) translateZ(25px);
  }

  .bottom {
    transform: rotateX(-90deg) translateZ(25px);
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .tyx-title {
    font-size: 22px;
  }


}



.mn4-wrap {
  position: relative;
  /* needed for cube absolute positioning */
  padding: 50px 20px;

  overflow: hidden;
}

/* HEADER */
.mn4-head {
  text-align: center;
  margin-bottom: 60px;
}

/* TITLE ANIMATION */
.tyx-title {
  opacity: 0;
  transform: translateY(-60px);
  /* start from top */
  transition: 0.8s ease;
  font-size: 40px;
  color: #3c2a98;
}

/* WHEN VISIBLE */
.tyx-title.tyx-show {
  opacity: 1;
  transform: translateY(0);
}



.tyx-right {
  color: #3c2a98;
  font-weight: 600;
}

.mn4-head p {
  margin-top: 10px;
  color: #000;
}

/* GRID */
.mn4-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.mn4-card {
  position: relative;
  background: #f8f8f8;
  padding: 35px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.4s;

  opacity: 0;
  transform: translateY(60px);
}

.mn4-card:nth-child(even) {
  /* optional alternate animation direction */
}

.mn4-strip {
  position: absolute;
  top: 0;
  left: -90px;
  width: 120px;
  height: 100%;
  background: linear-gradient(45deg, #4f527a, #ffffff);
  transform: skewX(-20deg);
}

.mn4-content {
  position: relative;
  z-index: 2;
}

.mn4-content h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.mn4-content p {

  color: #666;
  line-height: 1.6;
}

.mn4-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* SHOW ANIMATION */
.mn4-show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ROTATING CUBE - TOP RIGHT */
.k3d-rotate-box1 {
  width: 60px;
  height: 60px;
  perspective: 600px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.k3d-rotate-box1 .k3d-cube {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: k3dRotate 6s linear infinite;
}

.k3d-rotate-box1 .face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f1f0f6, #006732);
  opacity: 0.8;
}

.k3d-rotate-box1 .front {
  transform: translateZ(30px);
}

.k3d-rotate-box1 .back {
  transform: rotateY(180deg) translateZ(30px);
}

.k3d-rotate-box1 .right {
  transform: rotateY(90deg) translateZ(30px);
}

.k3d-rotate-box1 .left {
  transform: rotateY(-90deg) translateZ(30px);
}

.k3d-rotate-box1 .top {
  transform: rotateX(90deg) translateZ(30px);
}

.k3d-rotate-box1 .bottom {
  transform: rotateX(-90deg) translateZ(30px);
}

@keyframes k3dRotate {
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .tmlc2-title {
    opacity: 1 !important;
    transform: none !important;
  }

  .mn4-grid {

    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.tl8-wrap {
  padding: 100px 20px;
  background: #f8fbff;
}

/* CONTAINER */
.tl8-box {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT TIMELINE */
.tl8-left {
  flex: 1;
}

/* TITLE */
.tl8-title {
  font-size: 34px;
  margin-bottom: 30px;
  color: #3c2a98;

  opacity: 0;
  transform: translateY(-50px);
  transition: 0.6s;
}

/* STEP */
.tl8-step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;

  opacity: 0;
  transform: translateX(-60px);
  transition: 0.6s;
}

/* NUMBER */
.tl8-num {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #3c2a98, #3c2a98);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* TEXT */
.tl8-text h4 {
  font-size: 21px;
  margin-bottom: 5px;
}

.tl8-text p {

  color: #666;
  line-height: 1.6;
}

/* RIGHT IMAGE CARD */
.tl8-right {
  flex: 1;
  position: relative;

  opacity: 0;
  transform: translateX(60px);
  transition: 0.6s;
}

/* IMAGE */
.tl8-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tl8-img img {
  width: 100%;
  display: block;
}

/* FLOAT BOX */
.tl8-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

/* SHOW */
.tl8-show {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .tl8-box {
    flex-direction: column;
  }

  .tl8-title {
    text-align: center;
  }

  .tl8-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .tl8-float {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 15px;
  }
}

/* SECTION */
.tmlc6-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #252629;
  padding: 70px 20px;
}

/* CONTAINER */
.tmlc6-box {
  width: 100%;
  max-width: 1100px;
  display: flex;
  gap: 40px;
}

/* LEFT */
.tmlc6-left {
  flex: 1;
  color: #fff;
}

/* TITLE */
.tmlc6-title {
  margin-bottom: 30px;
}

.tmlc6-title h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.tmlc6-title p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

/* TREE */
.tmlc6-tree {
  position: relative;
  padding-left: 40px;
}

/* TRUNK */
.tmlc6-line {
  position: absolute;
  left: 15px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d4dddf;
  transform: scaleY(0);
  transform-origin: top;
  transition: 1.2s;
}

/* SHOW LINE */
.tmlc6-line-show {
  transform: scaleY(1);
}

/* BRANCH */
.tmlc6-branch {
  position: relative;
  margin-bottom: 80px;
  /* 👈 increase gap (was 40px) */
  padding-left: 30px;
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.6s;
}

/* SHOW BRANCH */
.tmlc6-show {
  opacity: 1;
  transform: translateX(0);
}

/* CONNECT */
.tmlc6-branch::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 12px;
  width: 20px;
  height: 2px;
  background: #d4dddf;
}

/* NODE */
.tmlc6-node {
  position: absolute;
  left: -28px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #d4dddf;
  border-radius: 50%;
  box-shadow: 0 0 10px #d4dddf;
  animation: pulse 2s infinite;
}

/* CARD */
.tmlc6-card {


  border-radius: 10px;
  transition: 0.3s;
}

.tmlc6-card:hover {
  transform: translateX(8px);

}

/* FORM (same) */
.tmlc6-form {
  flex: 1;
  padding: 40px;
  border-radius: 15px;
  background: #252629;
}

.tmlc6-group {
  position: relative;
  margin-bottom: 25px;
}

.tmlc6-group input,
.tmlc6-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-bottom: 2px solid #555;
  background: transparent;
  color: #fff;
}

.tmlc6-group label {
  position: absolute;
  left: 0;
  top: 14px;
  color: #aaa;
  transition: 0.3s;
}

.tmlc6-group input:focus+label,
.tmlc6-group input:valid+label,
.tmlc6-group textarea:focus+label,
.tmlc6-group textarea:valid+label {
  top: -10px;
  font-size: 12px;
  color: #fff;
}

/* BTN */
.tmlc6-btn {
  width: 100%;
  padding: 14px;
  background: #d4dddf;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 5px #d4dddf;
  }

  50% {
    box-shadow: 0 0 20px #d4dddf;
  }

  100% {
    box-shadow: 0 0 5px #d4dddf;
  }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .tmlc6-box {
    flex-direction: column;
  }
}

.tmlc6-card h4 {
  color: #fff;
}

.ftw {
  background: #ffffff;
  color: #111;
  text-align: center;
  padding: 20px 20px 20px;
  position: relative;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}



/* LOGO */
.ftw h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #3C2A98;
}

/* TEXT */
.ftw p {
  color: #000;
  font-size: 14px;
  margin-bottom: 20px;
}

/* SOCIAL */
.ftw-social a {
  display: inline-block;
  margin: 0 10px;
  color: #111;
  font-size: 16px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  transition: 0.3s;
}

/* HOVER */
.ftw-social a:hover {
  background: linear-gradient(45deg, #3C2A98, #3C2A98);
  color: #fff;
  transform: translateY(-5px);
}

/* BOTTOM */
.ftw-bottom {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #eee;
  padding-top: 8px;
  padding-bottom: 21px;
}

.edu-sec {
  padding: 90px 20px;
  background: #ffffff;
}

/* CONTAINER */
.edu-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.edu-head {
  text-align: center;
  margin-bottom: 50px;

  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.edu-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #3C2A98;
}

.edu-head p {
  color: #666;
}

/* GRID */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT */
.edu-content {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.6s;
}

.edu-content p {
  color: #555;
  margin-bottom: 23px;
  line-height: 1.6;
}

/* HIGHLIGHT */
.edu-highlight span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.edu-highlight i {
  color: #3C2A98;
  margin-right: 8px;
}

/* RIGHT CARDS */
.edu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.edu-card {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;

  opacity: 0;
  transform: translateY(40px);
  transition: 0.5s;
}

.edu-card i {
  font-size: 20px;
  color: #3C2A98;
  margin-bottom: 10px;
}

.edu-card h4 {
  margin-bottom: 5px;
  font-size: 20px;
}

.edu-card p {

  color: #555;
}

/* SHOW CLASS */
.edu-show {
  opacity: 1 !important;
  transform: none !important;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .edu-grid {
    grid-template-columns: 1fr;
  }

  .edu-cards {
    grid-template-columns: 1fr;
  }
}

.k2x-topscroll {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3C2A98, #3C2A98);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.k2x-topscroll:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Show button when scroll */
.k2x-topscroll.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media(max-width:768px) {
  .k2x-topscroll {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

.k2eu-section {
  padding: 30px 20px;
  overflow: visible;
  /* FIX */
}

.k2eu-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  overflow: visible;
  /* FIX */
}

/* GRID */
.k2eu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* IMAGE */
.k2eu-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.k2eu-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 700;
  color: #3c2a98;
}

.k2eu-content p {
  color: #555;
  line-height: 1.6;
}

.k2eu-content h3 {
  font-size: 21px;
}

.k2eu-content ul {
  margin: 15px 0;
  list-style: none;
}

/* CUSTOM BULLET */
.k2eu-content li {
  margin-bottom: 2px;
  padding-left: 30px;
  position: relative;
  font-size: 15px;
}

.k2eu-content li::before {
  content: "\f111";
  /* NEW BULLET DOT */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #3c2a98;
  font-size: 8px;
  top: 6px;
}

/* BOXES */
.k2eu-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.k2eu-box {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(25px);
}

.k2eu-box i {
  font-size: 24px;
  color: #3c2a98;
  margin-bottom: 10px;
}

.k2eu-box:hover {
  background: #3C2A98;
  color: #fff;
}

.k2eu-box:hover i {
  color: #fff;
}

/* 🔥 FIXED CUBE POSITION */
.k2eu-cube-wrap {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -60%);
  /* OUTSIDE + VISIBLE */
  width: 60px;
  height: 60px;
  perspective: 600px;
  z-index: 999;
}

.k2eu-cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: k2rotate 6s linear infinite;
}

.k2eu-cube div {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f1f0f6, #006732);

  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* cube faces */
.k2f {
  transform: rotateY(0deg) translateZ(30px);
}

.k2b {
  transform: rotateY(180deg) translateZ(30px);
}

.k2r {
  transform: rotateY(90deg) translateZ(30px);
}

.k2l {
  transform: rotateY(-90deg) translateZ(30px);
}

.k2t {
  transform: rotateX(90deg) translateZ(30px);
}

.k2bt {
  transform: rotateX(-90deg) translateZ(30px);
}

@keyframes k2rotate {
  0% {
    transform: rotateX(0) rotateY(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* STAGGER */
.k2eu-stagger {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.k2eu-stagger.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media(max-width:900px) {
  .k2eu-grid {
    grid-template-columns: 1fr;
  }

  .k2eu-boxes {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:500px) {

  .k2eu-cube-wrap {
    transform: translate(20%, -50%);
    width: 50px;
    height: 50px;
  }

  .k2eu-cube div {
    width: 50px;
    height: 50px;
  }

  .k2f {
    transform: rotateY(0deg) translateZ(25px);
  }

  .k2b {
    transform: rotateY(180deg) translateZ(25px);
  }

  .k2r {
    transform: rotateY(90deg) translateZ(25px);
  }

  .k2l {
    transform: rotateY(-90deg) translateZ(25px);
  }

  .k2t {
    transform: rotateX(90deg) translateZ(25px);
  }

  .k2bt {
    transform: rotateX(-90deg) translateZ(25px);
  }
}

.k2vmc-section {
  padding: 90px 20px;
}

.k2vmc-container {
  max-width: 1100px;
  margin: auto;
}

/* GRID */
.k2vmc-grid {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  align-items: center;
  gap: 30px;
}

/* CENTER CIRCLE */
.k2vmc-center {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5c5a64, #3c2a98);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* INNER ROTATION WRAP */
.k2vmc-rotate {
  width: 100%;
  height: 100%;
  position: absolute;
  animation: rotateCircle 10s linear infinite;
}

/* ICON STYLE */
.k2vmc-rotate i {
  position: absolute;
  font-size: 20px;
  color: #fff;
}

/* POSITION ICONS IN CIRCLE */
.k2vmc-rotate i:nth-child(1) {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.k2vmc-rotate i:nth-child(2) {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.k2vmc-rotate i:nth-child(3) {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) scaleX(-1);
}

.k2vmc-rotate i:nth-child(4) {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

/* CENTER ICON */
.k2vmc-main-icon {
  font-size: 32px;
  color: #fff;
  z-index: 2;
}

/* ROTATION */
@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* BOX */
.k2vmc-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}

/* ICON */
.k2vmc-box i {
  font-size: 38px;
  color: #5c5c5c;
  margin-bottom: 15px;
}

/* TITLE */
.k2vmc-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* TEXT */
.k2vmc-box p {
  color: #555;
  line-height: 1.6;

}

/* ACTIVE */
.k2vmc-box.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media(max-width:900px) {
  .k2vmc-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .k2vmc-center {
    margin: auto;
  }
}

.k2cvw-section {
  padding: 40px 20px;
}

.k2cvw-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.k2cvw-title {
  text-align: center;
  margin-bottom: 40px;
}

.k2cvw-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #3c2a98;
}



/* CONTENT BOX */
.k2cvw-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

/* LEFT BORDER */
.k2cvw-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(#6d6d6d, #3e3e3e);
}

/* INTRO PARAGRAPH */
.k2cvw-intro {
  margin-bottom: 25px;
  color: #444;
  line-height: 1.7;
  font-size: 17px;
}

/* LIST */
.k2cvw-list {
  list-style: none;
}

/* TITLE ANIMATION */
.k2cvw-title {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.k2cvw-title.active {
  opacity: 1;
  transform: translateY(0);
}

/* ITEM */
.k2cvw-list li {

  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  position: relative;
}

/* CUSTOM BULLET */
.k2cvw-list li::before {
  content: "\f058";
  /* check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #3c2a98;
  margin-right: 12px;
  font-size: 16px;
  margin-top: 2px;
}

/* ACTIVE */
.k2cvw-box.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media(max-width:768px) {
  .k2cvw-box {
    padding: 25px;
  }

  .k2cvw-title h2 {
    font-size: 26px;
  }
}

.k8-sec {
  padding: 60px 15px;
}

.k8-container {
  max-width: 1100px;
  margin: auto;
}

/* BOX */
.k8-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.k8-box h3 {
  margin-bottom: 8px;
  color: #3c2a98;
}

.k8-box p {

  color: #000;
  line-height: 1.7;
}

/* LIST STYLE */

/* TITLE */
.k8-title {
  text-align: center;
  margin: 25px 0;
}

.k8-title span {
  color: #333;
}

/* ROAD */
.k8-road {
  position: relative;
  height: 600px;
}

.k8-road svg {
  width: 100%;
  height: 100%;
}

/* ROAD BODY */
.k8-road-bg {
  fill: none;
  stroke: #dcdcdc;
  stroke-width: 80;
  stroke-linecap: round;
}

/* CENTER BASE */
.k8-center-base {
  fill: none;
  stroke: #bbb;
  stroke-width: 6;
  stroke-dasharray: 50 30;
}

/* CENTER FILL */
.seg {
  fill: none;
  stroke: #333;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: 0.6s;
}

/* DOT */
.k8-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}

/* STEPS */
.k8-step {
  position: absolute;
  width: 210px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.k8-step.active {
  background: #333;
  color: #fff;
}

/* ZIGZAG */
.s1 {
  top: 40px;
  left: 65%;
}

.s2 {
  top: 150px;
  left: 10%;
}

.s3 {
  top: 260px;
  left: 65%;
}

.s4 {
  top: 380px;
  left: 10%;
}

.s5 {
  top: 500px;
  left: 65%;
}

.k8-box ul {
  margin-top: 10px;
  padding-left: 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* MOBILE */
@media(max-width:768px) {
  .k8-road {
    height: 500px;
  }

  .k8-step {
    width: 130px;
    font-size: 12px;
  }
}

.glx-sec {
  padding: 70px 15px;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.glx-title {
  text-align: center;
  margin-bottom: 10px;
}

.glx-title h2 {
  font-size: 28px;
  color: #3c2a98;
}

.glx-sub {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 35px;

}

/* FIX CUT ISSUE */
.owl-stage-outer {
  padding: 30px 0;
}

/* CARD */
.glx-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* CENTER ACTIVE (FIXED SCALE) */
.owl-item.center .glx-card {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* FLAG CIRCLE */
.glx-flag {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  margin-bottom: 10px;
}

.glx-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.glx-card span {
  font-size: 14px;
  color: #222;

}

/* GAP */
.glx-gap {
  margin-top: 70px;
}

/* MOBILE */
@media(max-width:768px) {
  .glx-card {
    padding: 20px 10px;
  }
}

.k2pgx-section-container {
  position: relative;
  padding: 100px 20px;
  background: #252629;
  color: #fff;
}

/* Title */
.k2pgx-title-main {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.k2pgx-title-main::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: k2pgx-anim-grow 1s ease forwards;
}

@keyframes k2pgx-anim-grow {
  0% {
    width: 0;
  }

  100% {
    width: 100px;
  }
}

/* Image under heading */
.k2pgx-image-heading {
  display: block;
  max-width: 800px;
  width: 90%;
  margin: 30px auto;
  border-radius: 20px;

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.k2pgx-image-heading.active {
  opacity: 1;
  transform: translateY(0);
}

/* Content */
.k2pgx-content-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
}

.k2pgx-content-wrapper h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.k2pgx-content-wrapper p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Courses */
.k2pgx-courses-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.k2pgx-course-item {
  background: #fff;
  color: #3c2a98;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.k2pgx-course-item:hover {
  background: #271c69;
  color: #fff;
}

/* Roadmap Steps */
.k2pgx-roadmap-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.k2pgx-roadmap-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
  border-radius: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.k2pgx-roadmap-step.right {
  transform: translateX(50px);
}

.k2pgx-roadmap-step.active {
  opacity: 1;
  transform: translateX(0);
}

.k2pgx-roadmap-step i {
  font-size: 30px;
  color: #fff;
  min-width: 50px;
  text-align: center;
}

.k2pgx-step-content {
  text-align: left;
}

.k2pgx-step-content h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #fff;
}

.k2pgx-step-content p {
  font-size: 14px;
  color: #eee;
}

/* Mobile */
@media(max-width:1000px) {
  .k2pgx-roadmap-wrapper {
    gap: 15px;
  }
}

/* SECTION */
.wpn81-wrap {
  padding: 30px 60px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.wpn81-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.wpn81-head {
  text-align: center;
  margin-bottom: 60px;
}

.wpn81-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #3c2a98;
}

.wpn81-head p {
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* ROW */
.wpn81-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

/* REVERSE */
.wpn81-row.reverse {
  direction: rtl;
}

.wpn81-row.reverse .wpn81-content {
  direction: ltr;
}

/* IMAGE */
.wpn81-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.wpn81-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.wpn81-content p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.wpn81-content ul {
  padding-left: 20px;
  list-style: none;
}

.wpn81-content ul li {
  margin-bottom: 8px;
}

/* TAGS */
.wpn81-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wpn81-tags span {
  background: #f1f5f9;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wpn81-row {
    grid-template-columns: 1fr;
  }

  .wpn81-row.reverse {
    direction: ltr;
  }

  .wpn81-head h2 {
    font-size: 26px;
  }
}

/* INITIAL STATE */
.wpn81-row {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s ease;
}

/* LEFT SIDE ANIMATION */
.wpn81-row:nth-child(odd) {
  transform: translateX(-80px);
}

/* ACTIVE (VISIBLE) */
.wpn81-row.show {
  opacity: 1;
  transform: translateX(0);
}

/* OPTIONAL DELAY FOR ONE BY ONE */
.wpn81-row:nth-child(1) {
  transition-delay: 0.2s;
}

.wpn81-row:nth-child(2) {
  transition-delay: 0.4s;
}

.wpn81-row:nth-child(3) {
  transition-delay: 0.6s;
}

.wpn81-row:nth-child(4) {
  transition-delay: 0.8s;
}

@media (max-width: 1200px) {
  .wpn81-wrap {
    padding: 20px 15px;
  }
}

.vib-floatWrap {
  position: fixed;
  right: 42px;
  bottom: 85px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  z-index: 9999;
}

/* WHATSAPPICON */
.vib-waIcon {
  font-size: 55px;
  color: #24ce62;
  cursor: pointer;
  animation: vibFloat 1.2s infinite;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
}

.vib-waIcon:hover {
  transform: scale(1.2);
}



/* FLOAT/VIBRATE ANIMATION */
@keyframes vibFloat {
  0% {
    transform: translateY(0px) rotate(-2deg);
  }

  25% {
    transform: translateY(-3px) rotate(2deg);
  }

  50% {
    transform: translateY(0px) rotate(-2deg);
  }

  75% {
    transform: translateY(3px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(-2deg);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vib-waIcon {
    font-size: 50px;
  }

  .vib-floatWrap {
    position: fixed;
    right: 21px;
    bottom: 75px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    z-index: 9999;
  }

  .k2x-hero-wrap {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 30px;
  }


}

.body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #e3f2fd, #fce4ec);
}

/* CARD */
.k2x-card-box {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.k2x-card-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #222;
}

/* FIELD */
.k2x-field {
  margin-bottom: 18px;
}

.k2x-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.k2x-field input,
.k2x-field select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
  font-size: 14px;
}

.k2x-field input:focus,
.k2x-field select:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

/* PHONE GROUP */
.k2x-phone {
  display: flex;
  gap: 10px;
}

.k2x-phone select {
  width: 35%;
}

.k2x-phone input {
  width: 65%;
}

/* CHECKBOX */
.k2x-check {
  margin-top: 10px;
}

.k2x-check label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #444;
}

.k2x-check input {
  margin-right: 6px;
}

/* BUTTON */
.k2x-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background-color: #0b3d91;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.k2x-btn:hover {
  transform: translateY(-2px);
}

/* BACK LINK */
.k2x-back {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #3c2a98;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:500px) {
  .k2x-card-box {
    padding: 30px 50px;
  }
}

.k2eu-list-wrap {
  max-width: 800px;
  margin: auto;
}

.k2eu-list-wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  list-style: none;
  padding: 0;
}

.k2eu-list-wrap li {
  font-size: 15px;
  color: #222;
  position: relative;
  padding-left: 18px;
}

/* Custom bullet */
.k2eu-list-wrap li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3c2a98;
  font-size: 13px;
}

/* Responsive (mobile = 1 column) */
@media (max-width: 600px) {
  .k2eu-list-wrap ul {
    grid-template-columns: 1fr;
  }
}

.glx-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.glx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(60, 42, 152, 0.2);
}

/* FLAG */
.glx-flag {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.glx-flag img {
  width: 100%;
  border-radius: 6px;
}

/* TITLE */
.glx-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #3c2a98;
  margin-bottom: 10px;
}

/* UNIVERSITY LIST */
.glx-uni {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.glx-uni li {
  font-size: 13px;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
  color: #333;
}

.glx-uni li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3c2a98;
  font-size: 11px;
}

/* NOTE */
.glx-note {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .glx-title {
    font-size: 16px;
  }

  .glx-uni li {
    font-size: 12px;
  }
}

/* SECTION */
.glx-sec {
  padding: 60px 0;
  background: #f9fbff;
}

/* TITLE */
.glx-title h2 {
  text-align: center;
  font-size: 32px;
  color: #0b3d91;
  margin-bottom: 10px;
}

.glx-sub {
  text-align: center;
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

/* CONTAINER */
.zxO-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ITEM */
.zxO-item {
  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0.6;
}

/* CENTER ACTIVE */
.owl-item.center .zxO-item {
  transform: scale(1.08);
  opacity: 1;
}

/* CARD */
.zxO-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s;
}

.zxO-card:hover {
  transform: translateY(-5px);
}

/* COUNTRY TITLE */
.zxO-card h3 {
  margin-bottom: 20px;
  color: #0b3d91;
  font-size: 22px;
}

/* UNIVERSITY ROW */
.zxO-uni {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  text-align: left;
  padding: 8px;
  border-radius: 10px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.zxO-uni:hover {
  background: #f5f7ff;
}

/* LOGO FIXED SIZE */
.zxO-uni img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
}

/* TEXT */
.zxO-uni p {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* NAV BUTTON */
.owl-nav button {
  background: #0b3d91 !important;
  color: #fff !important;
  font-size: 20px !important;
  border-radius: 50% !important;
  width: 35px;
  height: 35px;
  margin: 5px;
  transition: 0.3s;
}

.owl-nav button:hover {
  background: #062a63 !important;
}

/* NAV ALIGN */
.owl-nav {
  text-align: center;
  margin-top: 15px;
}

/* MOBILE */
@media(max-width:768px) {

  .glx-title h2 {
    font-size: 24px;
  }

  .zxO-item {
    transform: scale(1);
    opacity: 1;
  }

  .owl-item.center .zxO-item {
    transform: scale(1);
  }

  .zxO-uni {
    gap: 10px;
  }

  .zxO-uni img {
    width: 50px;
    height: 50px;
  }
}

.luminaWrapX1 {
  background: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.luminaBoxX1 {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.luminaTitleX1 {
  text-align: center;
  margin-bottom: 25px;
}

.luminaTitleX1 h2 {
  margin: 0;
  color: #0b3d91;
}

.luminaTitleX1 p {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* FIELD */
.luminaFieldX1 {
  margin-bottom: 18px;
}

.luminaFieldX1 label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
}

/* INPUT */
.luminaInputX1,
.luminaSelectX1 {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.luminaInputX1:focus,
.luminaSelectX1:focus {
  border-color: #0b3d91;
}

/* ROW */
.luminaRowX1 {
  display: flex;
  gap: 10px;
}

.luminaRowX1 input {
  width: 50%;
}

/* BUTTON */
.luminaBtnX1 {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #0b3d91;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.luminaBtnX1:hover {
  background: #e5e5e5;
  color: #000;
}

/* RESPONSIVE */
@media(max-width:500px) {
  .luminaRowX1 {
    flex-direction: column;
  }

  .luminaRowX1 input {
    width: 100%;
  }
}



/* SECTION */
.zx-homeWrap {
  width: 100%;

  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 0px;
  padding-left: 20px;
  padding-right: 20px;
}

/* BOX */
.zx-homeBox {
  max-width: 1000px;
  text-align: center;
}

/* TITLE */
.zx-homeTitle {
  font-size: 38px;
  color: #382694;
  margin-bottom: 20px;
}

/* TEXT */
.zx-homeText {

  line-height: 1.8;
  color: #000;
}

/* BUTTON WRAP */
.zx-homeBtnWrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}



/* RESPONSIVE */
@media(max-width:768px) {

  .zx-homeTitle {
    font-size: 26px;
  }

  .zx-homeBtnWrap {
    flex-direction: column;
    align-items: center;
  }


}

/* Initial hidden state */
.zx-anim {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* When visible */
.zx-anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delay for sequence */
.zx-anim-delay1 {
  transition-delay: 0.2s;
}

.zx-anim-delay2 {
  transition-delay: 0.6s;
}

.uvx91_triggerWrap {
  text-align: center;
  margin-top: 100px;
}

.uvx91_triggerBtn {
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.k2x-free-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(135deg, #382694, #4324e2);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* HOVER EFFECT */
.k2x-free-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* CLICK EFFECT */
.k2x-free-btn:active {
  transform: scale(0.96);
}

/* ===== PANEL ===== */

/* BUTTON */
.zxq-trigger-91x {
  padding: 14px 30px;
  background: #ff5a5f;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* OVERLAY */


/* OPEN BUTTON */
.open-btn {
  margin: 20px;
  padding: 12px 25px;
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* TOPBAR HEIGHT */
:root {
  --topbar-h: 50px;
}

/* ROOT */
#k2x-root {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

/* OVERLAY */
#k2x-overlay {
  position: absolute;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--topbar-h));
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 0.3s;
}

/* PANEL */
#k2x-panel {
  position: absolute;
  top: var(--topbar-h);
  right: -440px;
  width: 400px;
  max-width: 100%;
  height: calc(100vh - var(--topbar-h));

  padding: 20px;
  transition: 0.4s ease;
  overflow-y: auto;
}

#k2x-panel::-webkit-scrollbar {
  display: none;
}

/* ACTIVE */
#k2x-root.active {
  pointer-events: auto;
}

#k2x-root.active #k2x-overlay {
  opacity: 1;
}

#k2x-root.active #k2x-panel {
  right: 0;
}

/* YOUR FORM STYLES */
.k2x-card-box h2 {
  margin-bottom: 15px;
}

.k2x-field {
  margin-bottom: 15px;
}

.k2x-field label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.k2x-field input,
.k2x-field select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* PHONE */
.k2x-phone {
  display: flex;
  gap: 10px;
}

.k2x-phone select {
  width: 30%;
}

.k2x-phone input {
  width: 70%;
}

/* CHECKBOX */
.k2x-check label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

/* SUBMIT */
.k2x-btn {
  width: 100%;
  padding: 12px;
  background: #382694;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
}

/* BACK LINK */
.k2x-back {
  display: block;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
  color: #333;
}

/* 🔥 3D CLOSE BUTTON */
.k2x-close3d {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(145deg, #ff3d3d, #c40000);
  box-shadow:
    0 6px 0 #8b0000,
    0 10px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.2s;
}

.k2x-close3d:active {
  transform: translateY(4px);
  box-shadow:
    0 2px 0 #8b0000,
    0 5px 10px rgba(0, 0, 0, 0.2);
}

/* MOBILE */
@media(max-width:480px) {
  #k2x-panel {
    width: 100%;
  }

  .k2x-phone {
    flex-direction: column;
  }

  .k2x-phone select,
  .k2x-phone input {
    width: 100%;
  }
}

/* ================= HERO NEW DESIGN ================= */
.heroX9 {
  padding: 70px 8% 50px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 65%, #d7dde3);
  position: relative;
  overflow: hidden;

}

/* floating blur shapes */
.heroX9::before,
.heroX9::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.heroX9::before {
  width: 300px;
  height: 300px;
  background: rgba(91, 71, 214, 0.25);
  top: -80px;
  left: -80px;
}

.heroX9::after {
  width: 250px;
  height: 250px;
  background: rgba(60, 42, 152, 0.25);
  bottom: -60px;
  right: -60px;
}

/* glass card effect */
.heroBoxX9 {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: auto;
  padding: 40px;

  backdrop-filter: blur(10px);

}

.heroX9 h1 {
  font-size: 46px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  color: #3c2a98;
}

.heroX9 h1 i {
  margin-right: 10px;
}

.heroX9 p {
  font-size: 17px;
  color: #000;
}

/* ================= MAIN LAYOUT ================= */
.wrapX9 {
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 45px;
  padding: 60px 25px;
}

/* LEFT NAVIGATION */
.sideX9 {
  width: 270px;
  position: sticky;
  top: 40px;
  align-self: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.sideX9 h3 {
  font-size: 18px;
  color: #3c2a98;
  margin-bottom: 20px;
  font-weight: 600;
}

.sideX9 ul {
  list-style: none;
}

.sideX9 li {
  margin-bottom: 12px;
}

.sideX9 a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #555;
  padding: 12px 14px;
  border-radius: 12px;
  transition: .3s ease;
  font-size: 14px;
  font-weight: 500;
}

.sideX9 a i {
  width: 18px;
  text-align: center;
}

.sideX9 a:hover {
  background: #ece8ff;
  color: #3c2a98;
  transform: translateX(4px);
}

.sideX9 a.activeLink {
  background: #3c2a98;
  color: #fff;
  box-shadow: 0 8px 18px rgba(60, 42, 152, .25);
}

/* CONTENT */
.contentX9 {
  flex: 1;
}

/* SECTION */
.blockX9 {
  display: none;
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  animation: fadeSlide .5s ease;
  position: relative;
}

.blockX9.active {
  display: block;
}

.blockX9::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #3c2a98;
}

.iconX9 {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ece8ff;
  color: #3c2a98;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.blockX9 h2 {
  font-size: 32px;
  color: #3c2a98;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.blockX9 p {
  margin-bottom: 18px;
  line-height: 1.9;
  font-size: 15px;
  color: #555;
}

.blockX9 ul {
  list-style: none;
}

.blockX9 li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.blockX9 li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #3c2a98;
}

.noteX9 {
  background: #f3f1ff;
  border-left: 4px solid #3c2a98;
  padding: 18px;
  border-radius: 12px;
  margin-top: 20px;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:950px) {

  .wrapX9 {
    flex-direction: column;
  }

  .sideX9 {
    width: 100%;
  }

  .heroX9 h1 {
    font-size: 32px;
  }

  .heroBoxX9 {
    padding: 25px;
  }
}

.wrapX10 {
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 45px;
  padding: 60px 25px;
}

/* LEFT NAVIGATION */
.sideX10 {
  width: 270px;
  position: sticky;
  top: 40px;
  align-self: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.sideX10 h3 {
  font-size: 18px;
  color: #3c2a98;
  margin-bottom: 20px;
  font-weight: 600;
}

.sideX10 ul {
  list-style: none;
}

.sideX10 li {
  margin-bottom: 12px;
}

.sideX10 a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #555;
  padding: 12px 14px;
  border-radius: 12px;
  transition: .3s ease;
  font-size: 14px;
  font-weight: 500;
}

.sideX10 a i {
  width: 18px;
  text-align: center;
}

.sideX10 a:hover {
  background: #ece8ff;
  color: #3c2a98;
  transform: translateX(4px);
}

.sideX10 a.activeLink {
  background: #3c2a98;
  color: #fff;
  box-shadow: 0 8px 18px rgba(60, 42, 152, .25);
}

/* CONTENT */
.contentX10 {
  flex: 1;
}

/* SECTION */
.blockX10 {
  display: none;
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  animation: fadeSlideX10 .5s ease;
  position: relative;
}

.blockX10.active {
  display: block;
}

.blockX10::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #3c2a98;
}

.iconX10 {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ece8ff;
  color: #3c2a98;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.blockX10 h2 {
  font-size: 32px;
  color: #3c2a98;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.blockX10 p {
  margin-bottom: 18px;
  line-height: 1.9;
  font-size: 15px;
  color: #555;
}

.blockX10 ul {
  list-style: none;
}

.blockX10 li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.blockX10 li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #3c2a98;
}

.noteX10 {
  background: #f3f1ff;
  border-left: 4px solid #3c2a98;
  padding: 18px;
  border-radius: 12px;
  margin-top: 20px;
}

@keyframes fadeSlideX10 {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:950px) {
  .wrapX10 {
    flex-direction: column;
  }

  .sideX10 {
    width: 100%;
  }
}

.lvl5X-wrap {
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 45px;
  padding: 60px 25px;
}

.lvl5X-side {
  width: 270px;
  position: sticky;
  top: 40px;
  align-self: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.lvl5X-side h3 {
  font-size: 18px;
  color: #3c2a98;
  margin-bottom: 20px;
  font-weight: 600;
}

.lvl5X-side ul {
  list-style: none;
}

.lvl5X-side li {
  margin-bottom: 12px;
}

.lvl5X-side a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #555;
  padding: 12px 14px;
  border-radius: 12px;
  transition: .3s ease;
  font-size: 14px;
  font-weight: 500;
}

.lvl5X-side a i {
  width: 18px;
  text-align: center;
}

.lvl5X-side a:hover {
  background: #ece8ff;
  color: #3c2a98;
  transform: translateX(4px);
}

.lvl5X-side a.activeLink {
  background: #3c2a98;
  color: #fff;
  box-shadow: 0 8px 18px rgba(60, 42, 152, .25);
}

.lvl5X-content {
  flex: 1;
}

.lvl5X-block {
  display: none;
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  animation: fadeLvl5 .5s ease;
  position: relative;
}

.lvl5X-block.active {
  display: block;
}

.lvl5X-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #3c2a98;
}

.lvl5X-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ece8ff;
  color: #3c2a98;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.lvl5X-block h2 {
  font-size: 32px;
  color: #3c2a98;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.lvl5X-block p {
  margin-bottom: 18px;
  line-height: 1.9;
  font-size: 15px;
  color: #555;
}

.lvl5X-block ul {
  list-style: none;
}

.lvl5X-block li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.lvl5X-block li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #3c2a98;
}

.lvl5X-note {
  background: #f3f1ff;
  border-left: 4px solid #3c2a98;
  padding: 18px;
  border-radius: 12px;
  margin-top: 20px;
}

a.lvl5X-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #3c2a98;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
}

@keyframes fadeLvl5 {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:950px) {
  .lvl5X-wrap {
    flex-direction: column;
  }

  .lvl5X-side {
    width: 100%;
  }
}