
: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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #040677; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1acc8d; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #1acc8d; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1acc8d; /* 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: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --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);
}
p{
    font-weight: 700;
    line-height: 22px;
    /* margin: 0 0 25px; */
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    color: #4E5561 ! important;
    line-height: 1.5;
}
/* 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 {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 59px;
    margin-right: 8px;
}

.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);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #10058c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-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;
  }
}

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

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

.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(--background-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 .copyright {
  padding: 25px 0;
  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: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

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

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

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

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  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;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

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

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

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

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
  position: relative;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb,#f25334, transparent 95%);
  color: #f25334;
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: #f25334;
  color: #fff;
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

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

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

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

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.details .features-item ul li:last-child {
  padding-bottom: 0;
}

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

.details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 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 85%);
  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%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  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 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  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-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.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 h3 {
  color: var(--accent-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-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  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 {
  height: 100%;
}

.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: color-mix(in srgb, var(--background-color), transparent 50%);
  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%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/* krisna Life  */
.awards-section {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .about-four__content {
        padding: 0 12px 0 8px;
    }
}
.about-four__content {
    position: relative;
}
.about-four__content .sec-title {
    padding-bottom: 21px;
}
.svg-underline {
    display: flex
;
    justify-content: center;
    margin-bottom: 10px;
}
.svg-underline {
    margin-top: 10px;
}
.about-four__content .sec-title__title {
    margin-top: 0;
}
@media (min-width: 768px) {
    .sec-title__title {
        font-size: 26px;
    }
}
.sec-title__title {
    margin: 0;
    font-size: 21px;
    color: #0B2038;
    font-weight: bold;
    line-height: 1.25em;
    margin-top: 5px;
}
.about-four__content__text {
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 25px;
    text-align: left;
}
.about-three__content__lists {
    margin: 0 0 35px;
    padding: 0;
    list-style: none;
}
.about-three__content__lists li {
    display: block;
    position: relative;
    padding-left: 36px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 18px;
    font-family: var(--kidearn-heading-font, "Fredoka", serif);
    color: var(--kidearn-black, #0B2038);
    text-align:left;
}
.about-three__content__lists li span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--kidearn-base, #f25334);
    line-height: inherit;
}
 .kidearn-btn {
    font-size: 16px;
    padding: 11px 50px;
}
.kidearn-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color:  #f25334;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family:  "DM Sans", sans-serif;
    padding: 9.25px 30px;
    transition: 800ms;
    letter-spacing: 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.kidearn-btn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}
.kidearn-btn:before, .kidearn-btn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #0B2038;
    border-radius: 50%;
}
.kidearn-btn:after {
    right: -20px;
    transform: translate(50%, -50%);
}
.kidearn-btn:hover {
  color:  #fff;
}
.kidearn-btn:hover:before {
  animation: criss-cross-left 0.8s both;
  animation-direction: alternate;
}
.kidearn-btn:hover:after {
  animation: criss-cross-right 0.8s both;
  animation-direction: alternate;
}
.kidearn-btn span {
  position: relative;
  color: inherit;
  z-index: 2;
  top: 1px;
}
.kidearn-btn--xl {
  padding: 13px 50px;
  font-size: 16px;
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@media (min-width: 768px) {
    .sec-title__tagline {
        font-size: 24px;
    }
}
.sec-title__tagline {
    margin: 0;
    color: #1acc8d;
    font-size: 28px;
    line-height: 1.2em;
    font-weight: 800;
    text-align:center;
}
.about-three {
    /* position: relative; */
    /* padding: 0 0 111px; */
    /* background-color: 
 color-mix(in srgb, #f25334, transparent 96%); */
    /* margin-top: 10px; */
    background-image: url(/../assets/img/explore-background.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
@media (min-width: 1200px) {
    .about-three__content {
        padding: 42px 12px 0 10px;
    }
}
.about-three__content {
    position: relative;
}
.about-three__content__text {
    line-height: 30px;
    margin: 0 0 24px;
}
@media (min-width: 1200px) {
    .about-one__image {
        padding: 35px 0 0 12px;
    }
}
.about-one__image {
    position: relative;
    z-index: 2;
}
.image-grid {
    flex: 1 1 55%;
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.large-tall {
    grid-row: span 2;
}
/* === Image Grid Styling === */
.image-grid {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Specific Image Layouts */
/* === Image Grid Styling === */
.image-grid {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Specific Image Layouts */
.large-tall {
  grid-row: span 2;
}

.large-wide {
  grid-column: span 2;
  height: 200px;
}

.small-top {
  height: 150px;
}

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

  .about-text,
  .image-grid {
    flex: 1 1 100%;
  }

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

  .large-wide {
    grid-column: auto;
  }

  .about-text h2 {
    font-size: 30px;
  }

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

.about-four__image__shape1 img {
    animation: treeMove 4s linear 0s infinite;
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

.about-four__image__one-bottom {
    position: absolute;
    right: -17px;
    bottom: 9px;
    width: 208px;
    height: 164px;
    background-color: var(--kidearn-secondary, #FFAA23);
    -webkit-mask: url(/Boot/assets/img/download.svg);
    mask: url(/Boot/assets/img/download.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    animation: zoomBig2 3s linear infinite;
}
@keyframes zoomBig2 {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.9, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}
.about-four__image__one {
    position: relative;
    display: inline-block;
    border-radius: 50%;
}
.about-four {
  position: relative;
  padding: 56px 0;
  
  
 
}
@media (max-width: 767px) {
  .about-four {
    padding: 80px 0;
  }
}
.about-four__image {
  position: relative;
  z-index: 2;
  padding-bottom: 49px;
}
@media (min-width: 1300px) {
  .about-four__image {
    margin-left: -58px;
  }
}
@media (max-width: 1199px) {
  .about-four__image {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .about-four__image {
    padding-left: 0;
  }
}
.about-four__image__shape1 {
  position: absolute;
  left: -15px;
  top: -21px;
}
@media (min-width: 1300px) {
  .about-four__image__shape1 {
    left: -60px;
  }
}
.about-four__image__shape1 img {
  animation: treeMove 4s linear 0s infinite;
}
.about-four__image__one {
  position: relative;
  display: inline-block;
  border-radius: 50%;
}
.about-four__image__one img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  shadow: 2px 2px #000 solid;
  box-shadow: -1px 1px 4px 6px #00000024;
}

@media (max-width: 767px) {
  .about-four__image__one-bottom {
    display: none;
  }
}
.about-four__image__two {
  max-width: 300px;
    border-radius: 50%;
    width: 100%;
    position: absolute;
    bottom: 7px;
    left: 0;
    overflow: hidden;
    border: 7px solid var(--kidearn-white, #fff);
}
@media (min-width: 1280px) {
  .about-four__image__two {
    left: -40px;
  }
}
@media (max-width: 767px) {
  .about-four__image__two {
    display: none;
  }
}
.about-four__image__two img {
  width: 100%;
}
.about-four__image__bg-shape {
  position: absolute;
  left: -15px;
  right: 10px;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 1300px) {
  .about-four__image__bg-shape {
    left: -55px;
  }
}
.about-four__image__bg-shape img {
    max-width: 100%;
    animation: wave 2s ease-in-out infinite alternate, spin 8s linear infinite;
}
 /* Gentle wave motion */
  @keyframes wave {
    0% { transform: scale(1) skewY(0deg); }
    50% { transform: scale(1.05) skewY(3deg); }
    100% { transform: scale(1) skewY(0deg); }
  }

  /* Smooth continuous rotation */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.about-four__content {
  position: relative;
}
@media (min-width: 1200px) {
  .about-four__content {
    padding: 0 12px 0 8px;
  }
}
@media (max-width: 1199px) {
  .about-four__content {
    padding: 45px 0 0;
  }
}
.about-four__content .sec-title__title {
  margin-top: 0;
}
.about-four__content .sec-title {
  padding-bottom: 21px;
}
.about-four__content__text {
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 25px;
}
.about-four__content .kidearn-btn {
  font-size: 16px;
  padding: 11px 50px;
}
.about-four__info {
  position: relative;
  min-height: 80px;
  padding: 0 0 29px 100px;
  margin-bottom: 35px;
  border-bottom: 1px solid #D2D2D2;
}
.about-four__info:last-of-type {
  border: none;
  margin-bottom: 12px;
}
.about-four__info:hover .about-four__info__icon span {
  transform: rotateY(180deg);
}
.about-four__info__icon {
  font-size: 80px;
  line-height: 80px;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 5px;
}
.about-four__info__icon span {
  display: block;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.about-four__info__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 10px;
}
.about-four__info__text {
  font-weight: 700;
  line-height: 30px;
  margin: 0;
}
.about-two {
    position: relative;
    padding: 135px 0 120px;
}
@media (min-width: 1200px) {
    .about-two__content {
        padding: 3px 60px 0 0;
    }
}
.about-two__content {
    position: relative;
}
.about-two__content .sec-title {
    padding-bottom: 26px;
}
.about-two__box {
  position: relative;
  margin: 0 0 30px;
}
.about-two__box--two .about-two__box__title span {
  color: var(--kidearn-secondary, #FFAA23);
}
.about-two__box__title {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 400;
    margin: 0 0 11px;
    font-weight: 600;
    color: #5c6461;
}
.about-two__box__title span {
  display: inline-block;
  font-size: 18px;
  margin-right: 16px;
  color: var(--kidearn-secondary2, #75C137);
}
.about-two__box__text {
  line-height: 30px;
  margin: 0;
}
.about-two__info-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 31px;
}
@media (max-width: 767px) {
  .about-two__info-wrapper {
    display: block;
  }
}
.about-two__box__text {
    line-height: 30px;
    margin: 0;
}
.price-one_pattern {
    position: absolute;
    left: -260px;
    top: 1503px;
    width: 475px;
    height: 460px;
    background-repeat: no-repeat;
}  
.price-one_pattern {
    animation-name: rotateme;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
@keyframes rotateme {
    0% {
        transform: rotate(0);
        opacity: 1
    }

    50% {
        transform: rotate(180deg)
    }

    to {
        transform: rotate(360deg);
        opacity: 1
    }
}
.leadership-one_icon-five {
    position: absolute;
    right: -80px;
    top: 5%;
    width: 50%;
    height: 100%;
    background-position: right top;
    background-repeat: no-repeat;
}
/* Online Workshops */
.et_pb_section_0 {
      position: relative;
      background-image: url(https://iskconkurukshetra.org/wp-content/uploads/2024/04/about-us-banner-1.jpg);
      background-size: cover;
      background-position: center;
      background-blend-mode: multiply;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 120px 20px 180px;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0; left: 0;
      z-index: 0;
    }

    .et_pb_row {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: auto;
    }

    .et_pb_row h5 {
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .et_pb_row h1 {
      font-size: 40px;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .et_pb_row h1 span.gold {
      color: #d1af67;
      font-weight: bold;
    }

    .info-boxes {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin: 30px 0;
    }

    .info-box {
      background: #fff;
      color: #000;
      padding: 14px 24px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      font-size: 16px;
      gap: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    .info-box i {
      color: #000;
    }

    .cta-btn {
      display: inline-block;
      background-color: #f3cd74;
      color: #000;
      padding: 14px 40px;
      font-size: 18px;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .cta-btn:hover {
      background-color: #e0b957;
    }

    .et_pb_bottom_inside_divider {
      background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDBsNjQuOCAzMC45NSA5MS4yLTIuNTQgOTUuNDYgMjcuODcgMTIwLjA0LjJMNDQzIDgzLjE1bDkwLjA5LTMuMTJMNjQwIDExMC4xMmwxMDIuMzktMjkuNzMgODUuNTUgOC41MSA4OC4xMS01Ljc1TDk5MiA1Mi4yMmw3My4yMSA0LjI2TDExMzIgMzguNzlsNzctLjMzTDEyODAgMHYxNDBIMFYweiIvPjxwYXRoIGQ9Ik0wIDBsNjQuOCAzOC42OSA5MS4yLTMuMTggOTUuNDYgMzQuODQgMTIwLjA0LjI0IDcxLjUgMzMuMzUgOTAuMDktMy45MUw2NDAgMTM3LjY1bDEwMi4zOS0zNy4xNyA4NS41NSAxMC42NSA4OC4xMS03LjE5TDk5MiA2NS4yOGw3My4yMSA1LjMxIDY2Ljc5LTIyLjEgNzctLjQxTDEyODAgMHYxNDBIMFYweiIvPjwvZz48L3N2Zz4=");
      background-size: 100% 100px;
      height: 100px;
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 1;
      pointer-events: none;
    }

    /* Scroll animation */
    [data-scroll] {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s ease, transform 1s ease;
    }

    [data-scroll].is-visible {
      opacity: 1;
      transform: translateY(0px);
    }

    @media (max-width: 768px) {
      .et_pb_row h1 {
        font-size: 28px;
      }
      .info-boxes {
        flex-direction: column;
        align-items: center;
      }
    }
    .section-pt-30 {
    padding-top: 30px;
}
.workshop-contents {
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}
@media (min-width: 1200px) {
    .banner-content-left {
        margin-top: 4rem;
    }
}
@media (min-width: 1200px) {
    .banner-content-left, .action-tags {
        margin-inline: 30px;
    }
}
.badge-banner {
    background: #feec04;
    padding: 4px 10px;
    color: #2f2e2e;
    display: inline-block;
    margin-bottom: 7px;
}
.badge-banner {
    background: #feec04;
    padding: 2px 10px;
    color: #2f2e2e;
    display: inline-block;
    margin-bottom: 7px;
    font-size: 14px;
}
.banner-content-left .banner-h5 {
    font-family: 'Black Qulaity' !important;
}
.banner-h5 {
    font-weight: 500;
    margin-bottom: 10px;
}
.banner-content-left .banner-h4 {
    font-size: 35px;
    font-weight: 500;
    font-family: 'Black Qulaity' !important;
}
.img-content-wrapper .banner-para {
    font-size: 16px;
    margin-bottom: 30px;
}
.banner-para {
    font-size: 12px;
    margin-top: 10px;
}
@media (min-width: 768px) {
    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}
@media (min-width: 1200px) {
    .banner-content-right {
        margin-inline: 30px;
    }
}
.banner-content-right img {
    border-radius: 50%;
}
/* --- Feature Section -- */
.bg-black {
    background: black;
}
.section-pt-60 {
    padding-top: 60px;
}
.section-pb-60 {
    padding-bottom: 60px;
}
.card-container-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 24px;
    display: grid
;
}
.col-card-wrap {
    grid-area: span 1 / span 1 / span 1 / span 1;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 7px;
    color: white;
    background: #262626;
}
.card-wrapper {
    display: flex
;
    align-items: center;
}
.card-wrap-content {
    width: calc(100% - 220px);
}
.card-wrap-content h5 {
    margin-bottom: 10px;
    font-size: 22px;
}
.font-semibold {
    font-weight: 600;
}
.text-transparent {
    color: transparent;
}
.bg-whiteblue-gradient {
    background-image: linear-gradient(356deg, #1f4a92 0.01%, #ffffff 100%);
    font-family: 'Black Qulaity' !important;
}
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}
.card-wrap-content p {
    font-weight: 300;
}
.card-wrap-icon {
    margin-right: 15px;
    min-width: 220px;
    width: 220px;
}
.icon-sm {
    height: 100%;
    border-radius: 10px;
    margin-left: 20px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.animated-footer {
  background: #112452;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left,
.footer-right {
  flex: 1 1 45%;
  min-width: 280px;
}

.footer-title {
  font-size: 22px;
    margin-bottom: 15px;
    animation: glowText 2s ease-in-out infinite alternate;
    color: #e5d8d8;
}

.footer-left p,
.footer-right p {
  line-height: 1.6;
  margin: 8px 0;
}

.footer-left a {
  color: #f9d423;
  text-decoration: none;
}

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

.social {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px currentColor;
}

.social.instagram:hover {
  color: #E1306C;
}
.social.facebook:hover {
  color: #3b5998;
}
.social.youtube:hover {
  color: #FF0000;
}
.social.telegram:hover {
  color: #0088cc;
}

.footer-bottom-container {
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 19px;
    border-top: 1px solid #ffffff;
    padding-top: 20px;
    color: #ccc;
    font-size: 14px;
}

.footer-bottom-left,
.footer-bottom-right {
  flex: 1 1 45%;
  min-width: 260px;
  text-align: center;
}

.footer-bottom-right a {
  color: #f9d423;
  text-decoration: none;
  margin: 0 8px;
}

@keyframes glowText {
  from { text-shadow: 0 0 5px #f9d423; }
  to { text-shadow: 0 0 15px #f9d423; }
}

@media (max-width: 768px) {
  .footer-container,
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}
.business-one_image-column {
    position: relative;
    margin-bottom: 30px;
}
.business-one_image-inner {
    position: relative;
    padding-bottom: 60px;
    padding-left: 40px;
}
.business-one_pattern-one {
    position: absolute;
    left: 0px;
    top: 50px;
    right: 0px;
    bottom: 0px;
    background-position: center center;
    background-repeat: no-repeat;
}
.business-one_image {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 0px 80px 0px 0px;
}
.business-one_image-two {
    position: absolute;
    left: 140px;
    bottom: 0px;
    right: -140px;
    border: 5px solid #fff;
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.news-three {
    position: relative;
    padding: 100px 0px 80px;
}
.sec-title {
    position: relative;
    /*margin-bottom: 40px;*/
}
.sec-title_title {
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgb(224,14,122);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.news-block_three
 {
    position: relative;
    margin-bottom: 30px;
}
.news-block_three-inner {
    position: relative;
}
.news-block_three-post {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 3;
    padding: 9px 15px 9px 7px;
    border-radius: 50px;
}
.news-block_three-post:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 40px;
    height: 42px;
    border-radius: 50px;
    background-color: #fff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.news-block_three-post-inner {
    position: relative;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding-left: 40px;
}
.news-block_three-post-image {
    position: absolute;
    left: 1px;
    top: 0px;
    width: 24px;
    height: 24px;
}
.news-block_three-post-image:before {
    position: absolute;
    content: '';
    left: -3px;
    top: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50px;
    border: 1px solid rgb(255,195,0);
}
.news-block_three-post-image img {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}
.news-block_three-post-inner span {
    color: rgb(255,195,0);
}
.news-block_three-image {
    position: relative;
    overflow: hidden;
}
.news-block_three-image img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.news-block_three-content {
    position: relative;
    z-index: 2;
    margin-top: -100px;
    padding: 25px 30px 25px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.09);
}
.news-block_three-meta {
    position: relative;
}
.news-block_three-meta li {
    position: relative;
    display: inline-block;
    font-size:14px;
    padding-left: 25px;
    margin-right: 20px;
    color: rgba(var(0 0 0), 0.80);
}
.news-block_three-meta li .icon {
    position: absolute;
    left: 0px;
    top: 4px;
    font-weight: 800;
}
.news-block_three-heading {
    font-weight: 700;
    line-height: 28px;
    margin-top: 15px;
}
.news-block_three-heading a {
    color: rgb(26,23,25);
}
.news-block_three-more {
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 15px;
    padding-right: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
}
.news-block_three-image img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-block_three-image img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.news-block_three-image {
    position: relative;
    overflow: hidden;
}
.news-block_three-image img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.news-block_three-image img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer-sticky-section {
    background-image: url(Boot/img/pattern.webp);
    z-index: 999;
    background-position: 0 0;
    background-size: cover;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding-left: 0;
    padding-right: 10px;
    display: flex
;
    bottom: 0;
    left: 0;
    position: relative;
    color: white;
    position: sticky;
    padding-block: 15px;
}
@media (min-width: 1200px) {
    .sticky-card-wrapper {
        display: block;
        margin-right: 20px;
    }
}
@media (min-width: 1200px) {
    .sticky-card-wrapper {
        display: block;
        margin-right: 20px;
    }
}
.position-relative {
    position: relative !important;
}
sup {
    top: -.5em;
}
sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
@media (min-width: 1200px) {
    .text-right-lg {
        text-align: right;
    }
}
a.btn.btn-sticky-href {
    color: #000;
    background-color: #ecd996;
    border-radius: 30px;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}
a.btn.btn-sticky-href {
    color: #000;
    background-color: #ecd996;
    border-radius: 30px;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}
 .header {
      background: linear-gradient(to right, #1e3c72, #000428); /* Blue gradient */
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 10px 40px;
      height: 90px;
      position: relative;
    }

    .logo {
      height: 60px;
      object-fit: contain;
    }

    .center-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      height: 70px;
    }

    @media (max-width: 768px) {
      .header {
        display: none;
      }
    }
    .about-two {
    position: relative;
    overflow: hidden;
    padding: 110px 0px 50px;
}
.about-two_pattern-one {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: left center;
    background-repeat: no-repeat;
}
.about-two.now-in-view .about-two_pattern-two {
    right: 0px;
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.about-two_pattern-two {
    position: absolute;
    right: -350px;
    top: 0px;
    width: 853px;
    height: 624px;
    opacity: 0;
    background-position: right top;
    background-repeat: no-repeat;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}
.about-two_pattern-three {
    position: absolute;
    right: 60px;
    bottom: 60px;
    width: 97px;
    height: 97px;
    background-position: right top;
    background-repeat: no-repeat;
}
.about-two_pattern-three::after {
    animation-name: rotateme;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
@keyframes rotateme {
    
     0% {
        transform: rotate(0deg);
        opacity: 1;
      }

    50% {
        transform: rotate(180deg);
      }
    100% {
        transform: rotate(360deg);
        opacity: 1;
      }
}
.bg-dot-line {
    background-image: url(../image/bg-dot-line.webp);
    background-position: 0;
    background-size: auto;
}
.home_features {
    font-size: 41px !important;
    font-family: 'Black Qulaity' !important;
    font-weight: 540 !important;
}
.card-container-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 24px;
    display: grid
;
}
.testimonals-card-wrapper .col-card-wrap {
    background: white;
    color: black;
}
.col-card-wrap {
    grid-area: span 1 / span 1 / span 1 / span 1;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 7px;
    color: white;
    background: #262626;
}
.card-wrapper {
    display: flex
;
    align-items: center;
}
.testimonals-card-wrapper .card-wrap-icon {
    margin-right: 15px;
    min-width: 60px;
    width: 60px;
}
.testimonals-card-wrapper .col-card-wrap {
    background: white;
    color: black;
}
.testimonals-card-wrapper .icon-md {
    width: 60px;
    min-width: 60px;
    height: 60px;
}
.testimonals-card-wrapper .card-wrap-content {
    width: calc(100% - 26px);
}
.card-wrap-content h5 {
    margin-bottom: 10px;
    font-size: 22px;
}
.testimonal-sub-title {
    color: #999;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
}
.pt-3, .py-3 {
    padding-top: 1rem !important;
}
.banner-img-card img {
    border-radius: 24px;
    width: 100%;
    height: auto;
}
.cta-one {
    padding: 83px;
    position: relative;
}
.cta-one__inner {
    position: relative;
    padding: 0;
    border-radius: 150px 150px 200px 150px;
    background-color:  #FAF5F2;
}
.cta-one__one {
    position: relative;
    z-index: 2;
    margin: -67px 0 0 13px;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.cta-one__one img {
    max-width: 456px;
    height: 600px;
    margin-top: -58px;
}
.cta-one__content {
    position: relative;
    padding: 30px 0 10px 0px;
}
.why-genrise-content {
    flex: 1;
    min-width: 300px;
}
.why-genrise-content {
    flex: 1;
    min-width: 300px;
    padding: 0 1.5rem;
}
@media (min-width: 768px) {
    .sec-title__tagline {
        font-size: 24px;
    }
}
.sec-title__tagline {
    margin: 0;
    /* font-family: var(--kidearn-special-font, "Schoolbell", cursive); */
    color: var(--kidearn-base, #F25334);
    font-size: 30px;
    line-height: 1.2em;
}
@media (min-width: 768px) {
    .sec-title__title {
        font-size: 26px;
    }
}

.sec-title__title {
    margin: 0;
    font-size: 21px;
    color: var(--kidearn-black, #0B2038);
    font-weight: bold;
    line-height: 1.25em;
    margin-top: 5px;
}
.why-genrise-content ul {
    list-style: none;
    padding: 0;
}
.why-genrise-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-genrise-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}
.why-genrise-content li {
    display: flex
;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.why-genrise-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff4e4e;
    font-weight: bold;
}
.why-genrise-content li::before {
    content: 'ðŸ”´';
    margin-right: 10px;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-top: 3px;
}
.about-image {
    position: relative;
    padding-top: 110px;
}
.about-img-1 {
    width: 390px;
}
.about-img-2 figure, .about-img-1 figure {
    display: block;
    border-radius: 0 0 100px 0;
}
.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    visibility: hidden;
    overflow: hidden;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
.about-img-1 img {
    aspect-ratio: 1 / 1.34;
    object-fit: cover;
    border-radius: 0 0 100px 0;
}
.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.about-img-2 {
    position: absolute;
    top: 0;
    right: 0;
}
.about-img-2 figure, .about-img-1 figure {
    display: block;
    border-radius: 0 0 100px 0;
}
.about-img-2 img {
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 0 0 100px 0;
}
    .deals-section {
      padding: 60px 20px;
    }

    .deals-left h5 {
      color: #6f42c1;
      font-weight: 600;
    }

    .deals-left h1 {
      font-size: 48px;
      font-weight: 800;
      margin: 20px 0;
    }

    .deals-left p {
      font-size: 16px;
      color: #333;
      margin-bottom: 30px;
    }

    .explore-btn {
      background-color: #5c27fe;
      color: white;
      border-radius: 50px;
      padding: 12px 30px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: none;
    }

    .swiper {
      padding-top: 30px;
    }

    .swiper-slide {
      background: #fff;
      border-radius: 25px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .deal-card-img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .deal-card-body {
      padding: 20px;
    }

    .deal-price {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .deal-price del {
      color: #999;
    }

    .deal-title {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .deal-info {
      font-size: 14px;
      color: #555;
    }

    .deal-info i {
      color: red;
      margin-right: 5px;
    }

    .swiper-pagination-bullets {
      bottom: -10px;
    }

    @media (max-width: 767px) {
      .deals-left h1 {
        font-size: 32px;
      }
    }
    

    h2 {
      color: #7c3aed;
      font-size: 28px;
      margin-bottom: 30px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .card:hover {
      background: #e3d9ff;
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
      background: white;
      max-width: 600px;
      margin: 5% auto;
      padding: 30px;
      border-radius: 16px;
      position: relative;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .close {
      position: absolute;
      right: 20px;
      top: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #999;
    }

    .close:hover {
      color: #333;
    }

    .modal-content h3 {
      font-size: 24px;
      color: #101828;
      margin-bottom: 24px;
      text-align: center;
    }

    .form-row {
      display: flex;
      gap: 16px;
      margin-bottom: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .form-group label {
      font-size: 14px;
      margin-bottom: 6px;
      color: #344054;
    }

    .form-group input,
    .form-group textarea {
      padding: 12px 14px;
      border: 1px solid #d0d5dd;
      border-radius: 10px;
      font-size: 14px;
      color: #344054;
      outline: none;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #7c3aed;
    }

    .input-with-icon {
      position: relative;
    }

    .input-with-icon i {
      position: absolute;
      top: 50%;
      left: 12px;
      transform: translateY(-50%);
      font-size: 16px;
      color: #98a2b3;
    }

    .input-with-icon input {
      padding-left: 34px;
    }

    .phone-input {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .phone-input img {
      width: 24px;
      height: auto;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .char-limit {
      font-size: 12px;
      color: #98a2b3;
      text-align: right;
      margin-top: 4px;
    }

    button {
      margin-top: 20px;
      background: #7c3aed;
      color: #fff;
      border: none;
      padding: 12px 20px;
      font-size: 15px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.3s ease;
      width: 100%;
    }

    button:hover {
      background: #5e26e0;
    }

    button::after {
      content: " →";
    }

    @media (max-width: 600px) {
      .form-row {
        flex-direction: column;
      }

      .modal-content {
        margin: 10% 15px;
      }
    }
    .years-off {
    margin-bottom: 24px;
    text-align: center;
}
.years-off h4 {
    background: #06AED4;
    padding: 52px 40px;
    border-radius: 100px 0 0 0;
}
.text-light {
    color: #E4EBF1 !important;
}
.discover-set-img-left img {
    border-radius: 0 0 0 100px;
}
.discover-set-img-right img {
    border-radius: 0 100px 100px 0;
}
.faq-secpath {
    background: #FEEDEB;
    position: relative;
    z-index: 1;
}
.bg-div .bg-3 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
  .schedule-section {
      max-width: 1000px;
      margin: auto;
    }

    .schedule-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .schedule-header h2 {
      font-size: 32px;
      color: #5a3e85;
      margin-bottom: 10px;
    }

    .schedule-header p {
      color: #666;
      font-size: 16px;
    }

    .timeline {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .timeline-card {
      background: #fff;
      padding: 25px 20px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
      display: flex;
      gap: 20px;
      align-items: flex-start;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 1s ease forwards;
    }

    .timeline-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .timeline-card:nth-child(3) {
      animation-delay: 0.4s;
    }

    .timeline-card:nth-child(4) {
      animation-delay: 0.6s;
    }

    .timeline-card:nth-child(5) {
      animation-delay: 0.8s;
    }

    .timeline-card:nth-child(6) {
      animation-delay: 1s;
    }

    .time-icon {
      font-size: 24px;
      color: #8a4eff;
    }

    .card-content h4 {
      margin: 0;
      font-size: 18px;
      color: #4b2971;
    }

    .card-content p {
      margin: 5px 0 0;
      color: #555;
      font-size: 15px;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 600px) {
      .timeline-card {
        flex-direction: column;
      }
    }
    .text-primary {
    color: #CF3425 !important;
    opacity: 1;
}
.fs-14 {
    font-size: 0.875rem !important;
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.fw-medium {
    font-weight: 500 !important;
}
.mb-2 {
    margin-bottom: .5rem !important;
}
.avatar img{
    width: 29px;
    height: 29px;
    margin-top: -30px;
}
.badge.badge-soft-primary {
    background: rgba(207, 52, 37, 0.1);
    color: #CF3425;
}
  
@media only screen and (max-width: 479px) {
    .business-one_image-two{
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .business-one_image-two {
        left: 15px;
    }
}
@media (max-width: 991px) {
      .cta-one {
        border-radius: 40px;
        padding: 30px 20px;
      }

      .cta-one__inner {
        flex-direction: column;
      }

      .cta-one__content {
        padding-left: 0;
        margin-top: 30px;
      }

      .sec-title__tagline {
        font-size: 22px;
        text-align: center;
      }

      .sec-title__title {
        text-align: center;
      }

      .cta-one__content p,
      .cta-one__content ul {
        text-align: left;
      }

      .kidearn-btn {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: auto;
      }
}
.about .right-shape {
    position: absolute;
    left: 6px;
   top: 37px;
    transform-box: fill-box;
    transform: scaleX(-1);
}
.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
}
.about-two .icon-line-1 {
    right: 0%;
    top: 15%;
}
.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
}
.icon-line-1 {
    width: 128px;
    height: 128px;
    background-image: url(/../assets/img/icon-line-1.png);
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}
.about-two .icon-circle-1 {
    left: -400px;
   top: -200px;
    opacity: .30;
}
.icon-circle-1 {
    width: 500px;
    height: 500px;
    background-image: url(/../assets/img/icon-circle-1.png);
    background-size: 100%;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.about-two  .icon-dots

 {
    right: 0%;
    bottom: 15%;
}
.icon-dots {
    width: 72px;
    height: 60px;
    background-image: url(https://expert-themes.com/html/eventrox/images/icons/icon-dots.png);
}

.main-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-banner-item {
  background-image: url(https://templates.envytheme.com/ketan/default/assets/img/main-banner/main-banner-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 700px;
}
.main-banner-item .container-fluid {
  padding-right: 0;
}
.main-banner-item.banner-item-two {
  background-image: unset;
  background-color: #f5edec;
}
.main-banner-item.banner-item-three {
  background-image: url(https://templates.envytheme.com/ketan/default/assets/img/main-banner/main-banner-bg-2.jpg);
  background-attachment: fixed;
}
.main-banner-item.banner-item-three .main-banner-content {
  max-width: 630px;
    margin: 63px 44px 48px 447px;
    text-align: center;
}
.main-banner-item.banner-item-three .main-banner-content span {
  color: #ffffff;
}
.main-banner-item.banner-item-three .main-banner-content h1 {
  color: #ffffff;
}
.main-banner-item.banner-item-three .main-banner-content p {
  color: #ffffff;
}
.main-banner-item.banner-item-four {
  background-image: unset;
  background-color: #73548f;
}
.main-banner-item.banner-item-four .main-banner-content h1 {
  margin-top: 0;
  color: #ffffff;
}
.main-banner-item.banner-item-four .main-banner-content p {
  color: #ffffff;
}

.main-banner-content {
  max-width: 630px;
  margin-left: auto;
}
.main-banner-content span {
  font-size: 16px;
  color: #ea512e;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.main-banner-content h1 {
  font-size: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.main-banner-content p {
  margin-bottom: 0;
}
.main-banner-content .banner-btn {
  margin-top: 25px;
}

.main-banner-image img {
  width: auto !important;
  margin: auto;
}

.main-banner-image-wrap {
  position: relative;
  text-align: center;
  z-index: 1;
}
.main-banner-image-wrap .banner-image-wrap-shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  left: 0;
  right: 0;
}
.main-banner-image-wrap img {
  width: auto !important;
  margin: auto;
}

.main-banner-shape .banner-bg-shape {
  position: absolute;
  bottom: -75px;
  left: 0;
  right: 0;
  z-index: 1;
}
.main-banner-shape .banner-bg-shape-2 {
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
  z-index: 1;
}
.main-banner-shape .shape-1 {
  position: absolute;
  top: 25px;
  transform: translateY(-25px);
  left: 25px;
  transform: translateX(-25px);
  z-index: 1;
  max-width: 100px;
  animation: moveLeftBounce 3s linear infinite;
}
.main-banner-shape .shape-2 {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 100px;
  animation: moveLeftBounce 3s linear infinite;
}
.main-banner-shape .shape-3 {
  position: absolute;
  bottom: 100px;
  left: 30px;
  z-index: 1;
  max-width: 100px;
  animation: moveLeftBounce 3s linear infinite;
}
.main-banner-shape .shape-4 {
  position: absolute;
  bottom: 30px;
  transform: translateY(-30px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 100px;
  animation: moveBounce 5s linear infinite;
}
.main-banner-shape .shape-5 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 210px;
}
.main-banner-shape .shape-6 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-width: 230px;
}

.banner-child .child-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  animation: moveBounce 5s linear infinite;
}
.banner-child .child-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: moveBounce 5s linear infinite;
}

@keyframes rotateMe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes moveScale {
  0% {
    transform: scale(0.6);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.6);
  }
}
@keyframes moveLeftBounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes moveBounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes border-transform-default {
  0%, to {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.d-table {
    display: table !important;
}
.who-we-are {
    position: relative;
    z-index: 1;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.who-we-are-content span {
    font-size: 20px;
    color: #ea512e;
    font-weight: 600;
    font-family: "Sacramento", cursive;
}
.who-we-are-content h3 {
    font-size: 45px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.who-we-are-content .who-we-are-list {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}
.who-we-are-content .who-we-are-list li {
    list-style-type: none;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #1b0238;
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 20px;
    padding-left: 40px;
    padding-top: 5px;
}
.who-we-are-content .who-we-are-list li span {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #ffffff;
    background-color: #ea512e;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.5s;
}
.activities-area {
    background-image: url(https://templates.envytheme.com/ketan/default/assets/img/activities-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-100 {
    padding-top: 100px;
}
.section-title {
    text-align: center;
    margin-bottom: 45px;
}
.section-title span {
    font-size: 20px;
    color: rgb(234, 81, 46);
    font-weight: 600;
    font-family: Sacramento, cursive;
}
.section-title h2 {
    font-size: 45px;
    margin-top: 15px;
    margin-bottom: 0px;
}
.single-activities {
    position: relative;
    margin-bottom: 30px;
}
.single-activities .number span {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 30px;
    color: rgb(27, 2, 56);
    background-color: rgb(234, 81, 46);
    text-align: center;
    position: absolute;
    left: 0px;
    top: 0px;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.5s;
}
.single-activities .number span::before {
    position: absolute;
    content: "";
    height: 70px;
    width: 70px;
    line-height: 70px;
    top: -5px;
    left: -5px;
    right: 0px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(234, 81, 46);
    border-image: initial;
    border-radius: 50px;
    transition: 0.5s;
}
.single-activities .activities-content

 {
    padding-left: 90px;
}
.single-activities .activities-content h3 {
    font-size: 25px;
    margin-bottom: 12px;
}
.single-activities .number .bg-2 {
    background-color: rgb(253, 190, 168);
}
.single-activities .number .bg-2::before {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(253, 190, 168);
    border-image: initial;
}
.single-activities .number .bg-3 {
    background-color: #b6fdd6;
}
.single-activities:hover .number span {
    background-color: #f5890d;
    color: #ffffff;
}
.single-activities .number .bg-4 {
    background-color: #fd91a8;
}
.single-activities .number .bg-5 {
    background-color: #fce0ad;
}
.single-activities .number .bg-6 {
    background-color: #cca0fe;
}
.class-area {
    position: relative;
    z-index: 1;
}
.section-title {
    text-align: center;
    margin-bottom: 45px;
}
.section-title span {
    font-size: 20px;
    color: #ea512e;
    font-weight: 600;
    font-family: "Sacramento", cursive;
}
.single-class {
    margin-bottom: 30px;
}
.single-class .class-image {
    overflow: hidden;
}
.single-class .class-image img {
    transition: 0.5s;
    border-radius: 5px 5px 0 0;
}
.single-class .class-content {
    background-color: #ffffff;
    padding: 45px 30px 30px;
    position: relative;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}
.single-class .class-content .price {
    position: absolute;
    display: inline-block;
    padding: 10px;
    background-color: #ea512e;
    right: 0;
    top: 0;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    border-radius: 0 0 0 10px;
    transition: 0.5s;
}
.single-class .class-content h3 {
    font-size: 25px;
    margin-bottom: 15px;
}
.single-class .class-content h3 a {
    color: #1b0238;
}
.single-class:hover .class-content h3 a {
    color: #ea512e;
}
.class-shape .shape-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.class-shape .shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.single-class .class-content .class-list {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ea512e;
}
.single-class:hover .class-image img {
    transform: rotate(2deg) scale(1.2);
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.facilities-area {
    position: relative;
    z-index: 1;
}
.single-facilities {
    position: relative;
    margin-bottom: 30px;
}
.single-facilities .number span {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 30px;
    color: #1b0238;
    background-color: #ea512e;
    border-radius: 50px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.5s;
    font-weight: bold;
}
.single-facilities .number span::before {
    position: absolute;
    content: "";
    height: 70px;
    width: 70px;
    line-height: 70px;
    border: 1px solid #ea512e;
    border-radius: 50px;
    top: -5px;
    left: -5px;
    right: 0;
    transition: 0.5s;
}
.single-facilities .facilities-content {
    padding-left: 88px;
}
.single-facilities .facilities-content h3 a {
    color: #1b0238;
}
.single-facilities {
    position: relative;
    margin-bottom: 30px;
}
.single-facilities .number .bg-2 {
    background-color: #fdbea8;
}
.single-facilities .number .bg-2::before {
    border: 1px solid #fdbea8;
}
.single-facilities .number .bg-3 {
    background-color: #b6fdd6;
}
.single-facilities:hover .number span {
    background-color: #f5890d;
    color: #ffffff;
}
.single-facilities .number .bg-4 {
    background-color: #fd91a8;
}
.single-facilities .number .bg-4::before {
    border: 1px solid #fd91a8;
}
.single-facilities .number .bg-5::before {
    border: 1px solid #fce0ad;
}
.single-facilities .number .bg-6::before {
    border: 1px solid #cca0fe;
}
.value-shape .shape-1 {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: -1;
}
.value-shape .shape-2 {
    position: absolute;
    left: 20px;
    z-index: -1;
    bottom: 30px;
}
.value-shape .shape-3 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
#contact .contact-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    margin-top: 40px;
    box-shadow: 0px 1px 15px #aeadad;
    margin-bottom: 40px;
}
#contact .contact-form h3 {
    margin-top: 0;
}
address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;
}
   /* Top Bar (Desktop) */
    .top-bar {
      background-color: #f2edfd;
      padding: 5px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }
    .top-bar .left a {
      margin-right: 10px;
      color: #000;
    }
    .top-bar .right {
      display: flex;
      align-items: center;
    }
    .top-bar .right a {
      margin-left: 10px;
      color: #000;
    }
    .darshan {
      font-weight: bold;
      margin-right: 10px;
    }

    /* Header */
    header {
      background-color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 15px;
      border-bottom: 1px solid #eee;
    }
    header .logo img {
      height: 50px;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    nav > a,
    nav > .dropdown > a {
      padding: 8px 10px;
      font-weight: 500;
      color: #333;
    }
    nav > a.active {
      color: #6b46c1;
    }
    .dropdown {
      position: relative;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: 1px solid #ddd;
      min-width: 150px;
      z-index: 1000;
    }
    .dropdown-content a {
      display: block;
      padding: 8px 12px;
      color: #333;
    }
    .dropdown:hover .dropdown-content {
      display: block;
    }
    .actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .actions button {
      background: #6b46c1;
      color: #fff;
      border: none;
      padding: 8px 12px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
    }
    .actions button i {
      margin-right: 4px;
    }
    .night-mode {
      background: #eee;
      color: #333;
    }

    /* Mobile Bottom Nav */
    .mobile-nav {
      display: none;
    }
    .mobile-dropdown {
      display: none;
      position: fixed;
      bottom: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      border-top: 1px solid #ddd;
      z-index: 999;
      padding: 10px;
    }
    .mobile-dropdown section {
      margin-bottom: 10px;
    }
    .mobile-dropdown .sub-links {
      margin-top: 5px;
    }
    .mobile-dropdown .sub-links a {
      display: block;
      padding: 5px 0;
      color: #333;
    }

    /* Responsive */
    @media (max-width: 767px) {
      
      header {
        justify-content: space-between;
      }
      nav {
        display: none;
      }
      .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #f2edfd;
        border-top: 1px solid #ccc;
        justify-content: space-around;
        padding: 5px 0;
        z-index: 999;
      }
      .mobile-nav button {
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        color: #000;
      }
      .mobile-nav button i {
        font-size: 20px;
        margin-bottom: 2px;
      }
      .mobile-nav button:focus,
      .mobile-nav button:hover {
        color: #6b46c1;
      }
      .actions button {
        padding: 6px 10px;
      }
      .actions button i {
        margin-right: 0;
      }
    }
    */-- Hearder Section --*/
    .awards-section .image-column {
    position: relative;
    margin-bottom: 50px;
}
.awards-section .image-column .image-box {
    position: relative;
    padding-left: 0px;
}
.awards-section .image-column .image {
    position: relative;
    margin-bottom: 0;
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
.awards-section .image-column .image:before {
    position: absolute;
    right: -10%;
    top: -10%;
    height: 120%;
    width: 120%;
    background-image: url(https://expert-themes.com/html/eventrox/images/icons/shape-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    -webkit-animation: dizzling 10s infinite;
    -moz-animation: dizzling 10s infinite;
    -ms-animation: dizzling 10s infinite;
    -o-animation: dizzling 10s infinite;
    animation: dizzling 10s infinite;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    content: "";
}
@keyframes dizzling{
0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
50% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
}
100% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
}
.awards-section .image-column .image-box img {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    border: 15px solid #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
}
.speaker-shap .shap2 {
    top: 200px;
    bottom: auto;
}
.speaker-shap img.shap2 {
    bottom: 0;
    left: auto;
    top: 35%;
    right: 0;
    margin: auto;
}
.speaker-shap img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100px;
}
 .speaker-shap .shap1 {
    top: auto;
    bottom: 25%;
}
.speaker-shap img.shap1 {
    top: 15%;
}
.imgs .col-lg-6:first-of-type .img:first-of-type {
    height: 270px;
}

.img-cover {
    display: block;
}
 .imgs .col-lg-6:first-of-type .img:last-of-type {
    height: 190px;
}
.img-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.imgs .col-lg-6:last-of-type .img:first-of-type {
    height: 160px;
}
.imgs .col-lg-6:last-of-type .img:last-of-type {
    height: 320px;
}
     .section-container {
      max-width: 1000px;
      margin: auto;
    }

    .title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .point {
      font-size: 16px;
      line-height: 1.6;
      margin: 8px 0;
      display: flex;
      align-items: flex-start;
    }

    .point span.icon {
      margin-right: 10px;
      font-size: 18px;
    }

    .divider {
      border-top: 1px solid #ddd;
      margin: 18px 0;
    }
     .form-container {
      max-width: 1000px;
      margin: auto;
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }

    form .row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 15px;
    }

    .field {
      flex: 1;
      min-width: 220px;
      display: flex;
      flex-direction: column;
    }

    label {
      margin-bottom: 5px;
      font-weight: bold;
      color: #444;
      font-size:14px;
    }

    input, select, textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    textarea {
      resize: vertical;
      min-height: 80px;
    }

    .phone-container {
      display: flex;
      align-items: center;
    }

    .phone-prefix {
      background: #eee;
      padding: 10px;
      border: 1px solid #ccc;
      border-right: none;
      border-radius: 6px 0 0 6px;
      font-size: 14px;
    }

    .phone-input {
      flex: 1;
      border-radius: 0 6px 6px 0;
    }

    button {
      background: #ff5722;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
      /*width: 100%;*/
    }

    button:hover {
      background: #e64a19;
    }

    /* Responsive */
    @media (max-width: 768px) {
      form .row {
        flex-direction: column;
      }
    }
       /* Disabled input styling */
    input[disabled] {
      background: #eee;
      cursor: not-allowed;
    }
    .slider-container {
      width: 100%;
      max-width: 1200px;
      margin: 50px auto;
      overflow: hidden;
      padding: 0 10px;
      position: relative;
    }

    .slider-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .slider-title {
      font-size: 22px;
      font-weight: bold;
      flex: 1;
    }

    .arrow-btn {
      font-size: 26px;
      cursor: pointer;
      user-select: none;
      padding: 5px 12px;
      border-radius: 50%;
      transition: 0.3s;
    }

    .arrow-btn:hover {
      background: #f0f0f0;
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
      margin-top: 20px;
    }

    .slide {
      min-width: 100%;
      background: #f4f4f4;
      margin: 0 10px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
      flex-shrink: 0;
    }

    .slide img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .slide-content {
      padding: 15px;
      text-align: center;
    }

    .slide-content h3 {
      font-size: 20px;
      margin: 5px 0;
    }

    .slide-content p {
      font-size: 16px;
      color: #444;
    }

    /* Tablet */
    @media (min-width: 601px) {
      .slide {
        min-width: calc(50% - 20px);
      }
    }

    /* Desktop */
    @media (min-width: 901px) {
      .slide {
        min-width: calc(33.33% - 20px);
      }
    }