/*--------------------------------------------------------------
# Common Variable
--------------------------------------------------------------*/
:root {
  --font-famaily: "Rubik", sans-serif;
  --white-color: #fff;
  --black-color: #000;
  --primary-color : #6B2C88;
  --assets-color : #1A1500;
  --highlight-color: #FFF176;
  --subtitle-color: #666666;
  --light-bg-color: #e5e6e6;
  --black-shadow: rgba(0, 0, 0, 0.2);  
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
  color: var(--black-color);
  background-color: var(--white-color);
  font-family: var(--font-famaily);
}
a {
  color: var(--primary-color);
  text-decoration: none !important;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--primary-color), transparent 25%);
  text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-famaily);
}
.primary-color {
  color: var(--primary-color) !important;
}
.primary-bg {
  background-color: var(--primary-color) !important;
}
.light-bg-color {
  background-color: var(--light-bg-color) !important;
}
.form-control,
.custom-select {
  border-radius: 8px !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  height: auto !important;
}
.form-control:focus,
.custom-select:focus {
  -webkit-box-shadow: 0 0 0 !important;
  box-shadow: 0 0 0 !important;
  border-color: var(--primary-color) !important;
}
.radio-group {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-bottom: 20px !important;
}
.radio-group .custom-control {
  padding-left: 0 !important;
  margin-right: 15px !important;
}
.radio-group .custom-control-label {
  margin-bottom: 0 !important;
  background: var(--white-color) !important;
  padding: 6px 23px 6px 33px !important;
  border-radius: 100px !important;
  font-size: 16px !important;
}
.radio-group .custom-control-label::before,
.radio-group .custom-control-label:after {
  border-radius: 50% !important;
  top: 10px !important;
  left: 10px !important;
}
.radio-group .custom-control-label:after {
  display: none !important;
}
.radio-group .custom-control-label::before {
  background: transparent !important;
  border: 3px solid #050B2C !important;
}
.radio-group .custom-control-input:checked~.custom-control-label {
  background: var(--primary-color) !important;
  color: var(--white-color) !important;
}
.radio-group .custom-control-input:checked~.custom-control-label::before {
  background: var(--primary-color) !important;
  border-color: var(--white-color) !important;
}
.custom-control .custom-control-label::before {
  background: transparent !important;
  border: 2px solid var(--primary-color) !important;
  border-radius: 3px !important;
}
.custom-control .custom-control-input:checked~.custom-control-label::after {
  border-radius: 3px !important;
  background-color: var(--primary-color) !important;
}
.custom-control.custom-radio .custom-control-label::before,
.custom-control.custom-radio .custom-control-label:after {
  border-radius: 50% !important;
}
.avatar-upload {
  position: relative;
  max-width: 205px;
}
.avatar-upload .avatar-preview {
  width: 150px;
  height: 150px;
  position: relative;
  border-radius: 10%;
}
.avatar-upload .avatar-preview>img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 10px;
}
.avatar-upload .avatar-preview>img:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .header-container {
  background: var(--assets-color);
  border-radius: 50px;
  padding: 5px 25px;
}
.scrolled .header .header-container {
  background: color-mix(in srgb, var(--assets-color), transparent 5%);
}
.header .logo {
  line-height: 1;
  padding-left: 5px;
}
.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none !important;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--assets-color);
  background: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--assets-color);
  background: color-mix(in srgb, var(--highlight-color), transparent 15%);
}
@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }
  .header .logo {
    order: 1;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }
  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--white-color);
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--highlight-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--assets-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--white-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(--highlight-color);
  }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--white-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; 
    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(--assets-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--white-color);
    padding: 10px 20px;
    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(--primary-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--primary-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--primary-color);
    border: 1px solid color-mix(in srgb, var(--assets-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: var(--assets-color);
  }
  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: var(--assets-color);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: var(--white-color);
    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: var(--assets-color);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--white-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--assets-color), transparent 20%);
}
.scroll-top:hover i {
  color: var(--primary-color) !important;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--assets-color);
  background-color: var(--white-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 55px;
  position: relative;
}
.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  position: relative;
}
.section-title p {
  color: var(--subtitle-color);
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 18px;
  font-weight: 500;
}
.highlight-title {
  background: var(--primary-color);
  color: var(--highlight-color);
  padding: 3px 6px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  background: var(--assets-color);
  color: var(--white-color);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  clip-path: ellipse(120% 80% at 50% 0%);
  opacity: 0.6;
  animation: wave1 4s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  clip-path: ellipse(130% 75% at 50% 0%);
  opacity: 0.4;
  animation: wave2 6s ease-in-out infinite alternate-reverse;
}
@keyframes wave1 {
  0%   { clip-path: ellipse(120% 80% at 50% 0%); }
  100% { clip-path: ellipse(125% 70% at 50% 5%); }
}
@keyframes wave2 {
  0%   { clip-path: ellipse(130% 75% at 50% 0%); }
  100% { clip-path: ellipse(135% 65% at 50% 6%); }
}
.hero .hero-content {
  position: relative;
  z-index: 1;
}
.hero .hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--highlight-color);
}
.hero .hero-content h1 .accent-text {
  color: var(--white-color);
}
.hero .hero-content p {
  font-size: 18px;
}
@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero .hero-content p {
    font-size: 14px;
  }
  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}
.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--assets-color), transparent 52%);
  border-radius: 50px;
  color: var(--white-color);
  font-weight: 600;
}
.hero .company-badge i {
  font-size: 1.25rem;
}
.hero .btn-default {
  background-color: var(--highlight-color);
  border: 2px solid var(--highlight-color);
  color: var(--primary-color);
  padding: 0.75rem 2.5rem;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.hero .btn-default:hover {
  background-color: transparent;
  border: 2px solid var(--highlight-color);
  color: var(--highlight-color);
}
.hero .btn-link {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  transition: all 0.3s ease;
}
.hero .btn-link:hover {
  color: var(--highlight-color);
}
.hero .btn-link i {
  font-size: 30px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}
.hero .btn-link i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-border 2s ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero .hero-image img {
  max-width: 100%;
  height: 500px;
}
.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--white-color);
  border-radius: 20px;
  padding-bottom: 2rem;
}
.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}
.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--assets-color);
  border-radius: 50px;
  transition: 0.3s;
}
.hero .stat-item .stat-icon i {
  font-size: 2rem;
  color: var(--highlight-color);
}
.hero .stat-item:hover .stat-icon {
  background-color: var(--primary-color);
}
.hero .stat-item:hover .stat-icon i {
  color: var(--highlight-color);
}
.hero .stat-item .stat-content {
  flex-grow: 1;
}
.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--assets-color);
}
.hero .stat-item .stat-content p {
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--assets-color), transparent 40%);
  margin: 0;
}
@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Technologies
--------------------------------------------------------------*/
.tech-section {
  background: linear-gradient(120deg, var(--primary-color) 2%, var(--assets-color) 100%);
  padding: 70px;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}
.tech-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.25) 2px, transparent 3px);
  background-size: 20px 20px;
  z-index: 0;
}
.tech-content {
  position: relative;
  z-index: 1;
}
.tech-box {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}
.tech-box p {
  font-weight: 500;
  font-size : 18px;
}
.tech-icon {
  width: 80px;
  height: 80px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}
.tech-icon img {
  width: 40px;
  height: 40px;
}
.tech-label {
  font-size: 20px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
}
.tech-store-icon {
  width: 100%;
  max-width: 160px;
  cursor: pointer;
  height: 55px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background-color: var(--white-color);
}
.feature-item {
  cursor: pointer;
  background-color: var(--white-color);
  border-left: 5px solid var(--primary-color);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-bottom: 16px;
}
.feature-item h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 16px;
  margin: 0;
}
.feature-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.feature-item.active {
  background: linear-gradient(135deg, var(--primary-color) 10%, var(--white-color) 70%);
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.app-screenshot-display {
  display: none;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.app-screenshot-display.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.app-screenshot-display img {
  max-width: 100%;
  height: 500px;
  max-height: 500px;
}

/*--------------------------------------------------------------
# How We Work
--------------------------------------------------------------*/
.how-we-work-section {
  padding: 44px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--light-bg-color) !important;            
  border-top: 8px solid;
  border-bottom: 8px solid;
  border-image: linear-gradient(90deg, var(--primary-color), var(--assets-color)) 1;
}
.how-we-work-section .process-container {
  max-width: 800px;
  margin: 0 auto;
}
.how-we-work-section .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}
.how-we-work-section .process-item:last-child {
  padding-bottom: 0;
}
.how-we-work-section .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--primary-color), transparent 70%), var(--white-color));
  border: 2px solid color-mix(in srgb, var(--primary-color), transparent 50%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-we-work-section .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}
.how-we-work-section .process-item .content:hover .step-icon {
  background: var(--primary-color);
  transform: rotate(10deg);
}
.how-we-work-section .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}
.how-we-work-section .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.how-we-work-section .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.how-we-work-section .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--primary-color), transparent 70%);
}
.how-we-work-section .process-item .step-icon i {
  font-size: 2rem;
  color: var(--white-color);
}
.how-we-work-section .process-item .step-content h3 {
  color: var(--assets-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.how-we-work-section .process-item .step-content p {
  color: var(--subtitle-color);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767.98px) {
  .how-we-work-section .process-container {
    padding: 1rem 0;
  }
  .how-we-work-section .process-item {
    padding-bottom: 2rem;
  }
  .how-we-work-section .process-item .content {
    border-width: 1px;
  }
  .how-we-work-section .process-item .content:hover {
    transform: translateY(-5px);
  }
  .how-we-work-section .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }
  .how-we-work-section .process-item .step-number:hover {
    transform: translateX(-50%);
  }
  .how-we-work-section .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .how-we-work-section .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  .how-we-work-section .process-item .step-icon i {
    font-size: 1.75rem;
  }
  .how-we-work-section .process-item .step-content h3 {
    font-size: 1.25rem;
  }
  .how-we-work-section .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services{
  overflow: hidden;
  padding: 44px 0;
  background: var(--light-bg-color);
  position: relative;
  border-top: 8px solid;
  border-bottom: 8px solid;
  border-image: linear-gradient(90deg, var(--primary-color), var(--assets-color)) 1;
}
.services .service-item {
  display: flex;
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}
.services .service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.services .service-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.services .service-item:hover::before {
  transform: scaleY(1);
}
.services .service-item:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: rotateY(180deg);
}
.services .service-item:hover .service-icon i {
  transform: rotateY(180deg);
}
.services .service-item:hover .service-link i {
  transform: translateX(5px);
}
.services .service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--primary-color), transparent 80%);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  transition: all 0.5s ease;
}
.services .service-icon i {
  font-size: 2rem;
  transition: transform 0.5s ease;
}
.services .service-content {
  flex-grow: 1;
}
.services .service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--assets-color);
}
.services .service-content p {
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--assets-color), transparent 20%);
}
.services .service-link {
  display: inline-flex;
  align-items: center;
  color: var(--subtitle-color);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.services .service-link span {
  margin-right: 0.5rem;
}
.services .service-link i {
  transition: transform 0.3s ease;
}
.services .service-link:hover {
  color: color-mix(in srgb, var(--assets-color), transparent 25%);
}
@media (max-width: 767.98px) {
  .services .service-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  .services .service-icon {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }
  .services .service-icon i {
    font-size: 1.5rem;
  }
  .services .service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  .services .service-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 575.98px) {
  .services .service-item {
    flex-direction: column;
    text-align: center;
  }
  .services .service-item::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .services .service-item:hover::before {
    transform: scaleX(1);
  }
  .services .service-icon {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
  .services .service-link {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# How Does Project Work
--------------------------------------------------------------*/
.work-tab {
  background-color: transparent;
  color: var(--assets-color);
  border: 2px solid var(--assets-color);
  margin: 0 10px;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.work-tab.active {
  background-color: var(--assets-color);
  color: var(--primary-color);
}
.work-tab:hover:not(.active) {
  background-color: var(--assets-color);
  color: var(--primary-color);
}
.tab-buttons {
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 992px) {
  .work-tab {
    font-size: 16px;
    padding: 6px 16px;
  }
}
@media (max-width: 576px) {
  .work-tab {
    font-size: 14px;
    padding: 5px 12px;
    margin: 5px 0;
    width: 100%;
    text-align: center;
  }
}
.tab-content .tab-pane {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.tab-content .tab-pane.active {
  display: block;
}
.flow-diagram-image {
  max-width: 90%; /* Adjust as needed */
  height: auto;
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Help & Support
--------------------------------------------------------------*/
.support-section {
  padding: 60px 0px;
}
.support-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.support-card {
  border-radius: 15px;
  cursor: pointer;
  position: relative;
}
.support-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
}
.support-card:hover img {
  opacity: 0.7;
}
.support-card:hover {
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}
.support-label {
  width: 80%;
  font-size: 22px;
  background: var(--white-color);
  border-radius: 10px;
  padding: 8px 15px;
  font-weight: 600;
  color: var(--assets-color);
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}
.support-card:hover .support-label {
  font-weight: 800;
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .support-card {
    margin: 25px;
  } 
  .support-card img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .support-card img {
    height: 180px;
  }
  .support-label {
    font-size: 16px;
    width: 90%;
  }
}
@media (max-width: 575px) {
  .support-card img {
    height: 160px;
  }
  .support-label {
    font-size: 14px;
    padding: 6px 8px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  object-fit:fill;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%; 
  color: var(--white-color);
  padding: 60px 0 20px;
  border-radius: 20px 20px 0px 0px;
}
.footer .footer-top {
  background: var(--assets-color);
  border-radius: 8px;
  padding: 40px;
}
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo span {
  color: var(--highlight-color);
}
.footer p {
  font-size: 16px;
  color: var(--white-color);
  margin-top: 30px;
}
.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white-color);
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 16px;
}
.footer ul li a:hover {
  color: var(--highlight-color);
}
.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30%;
  background: var(--white-color);
  margin-right: 10px;
  color: var(--assets-color);
  font-size: 16px;
  text-decoration: none;
}
.social-icons a:hover {
  background-color: var(--primary-color);
}
.footer-bottom {
  border-top: 1px solid var(--white-color);
  text-align: center;
}
.footer-bottom p {
  color: var(--white-color);
  font-weight: 500;  
  font-size: 20px;
}
.footer-bottom .text_effect {
  font-weight: 800;
}
.btn-support {
  background-color: var(--primary-color) !important;
  font-size: 18px;
  font-weight: 700 !important;
  color: var(--white-color) !important;
  border: 2px solid var(--primary-color) !important;
}
.btn-support:hover {
  background-color: transparent !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
}

/*--------------------------------------------------------------
# FAQs Section
--------------------------------------------------------------*/
.faqs {
  object-fit:cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%; 
  position: relative;
  padding-top: 160px;
  color: var(--white-color);
  overflow: hidden;
}
.faqs .faqs-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.faqs .faqs-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--assets-color);
}
.faqs .faqs-content h1 .accent-text {
  color: var(--white-color);
}
.faqs .faqs-content p {
  font-size: 26px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .faqs .faqs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .faqs .faqs-content h1 {
    font-size: 2.5rem;
  }
  .faqs .faqs-content p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .faqs .faqs-content h1 {
    font-size: 2rem;
  }
}
#accordion .panel {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 15px;
  position: relative;
}
#accordion .panel:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border: 1px dashed var(--assets-color);
  position: absolute;
  top: 25px;
  left: 18px;
}
#accordion .panel:last-child:before {
  display: none;
}
#accordion .panel-heading {
  padding: 0;
  border: none;
  border-radius: 0;
  position: relative;
}
#accordion .panel-title a {
  display: block;
  padding: 10px 30px 10px 60px;
  margin: 0;
  background: var(--white-color);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--black-color);
  border-radius: 0;
  position: relative;
}
#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  width: 40px;
  height: 100%;
  line-height: 40px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 3px;
  font-size: 17px;
  color: var(--white-color);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease 0s;
}
#accordion .panel-title a.collapsed:before {
  content: "\f105";
  background: var(--white-color);
  border: 1px solid var(--assets-color);
  color: var(--assets-color);
}
#accordion .panel-body {
  padding: 10px 30px 10px 30px;
  margin-left: 40px;
  background: var(--white-color);
  border-top: none;
  font-size: 16px;
  color: var(--black-color);
  line-height: 28px;
  letter-spacing: 1px;
}
.faq-section {
  border-bottom: 8px solid;
  border-image: linear-gradient(90deg, var(--primary-color), var(--assets-color)) 1;
}

/*--------------------------------------------------------------
# School List
--------------------------------------------------------------*/
.school-slider-section {
  background-color: var(--light-bg-color);
  border-bottom: 8px solid;
  border-image: linear-gradient(90deg, var(--primary-color), var(--assets-color)) 1;
}
.school-card {
  background-color: var(--white-color);
  padding: 12px;                
  border-radius: 15px;
  border: 2px solid transparent;
  min-height: 390px;
}
.school-card:hover {
  background-color: var(--white-color);
  border-radius: 12px;
  border: 2px solid var(--primary-color);
}
.school-image {
  position: relative;
  margin-bottom: 12px;
}
.school-img {
  width: 100%;
  height: 200px;
  object-fit: fill;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.school-content {
  margin-bottom: 12px;
}
.school-subtitle {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 12px;
  padding-left: 28px;
}
.school-subtitle::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--black-color);
  position: absolute;
  left: 0;
  top: 50%;
}
.school-title {
  font-size: 16px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.school-link {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 16px;
  font-weight: 500;
}
.school-address {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.school-link:hover,
.school-link:hover i {
  color: var(--primary-color);
}
@media screen and (min-width: 1150px) {
  .school-image {
    margin-bottom: 16px;
  }
  .school-buttons {
    right: 20px;
  }
}

/*--------------------------------------------------------------
# Event / Gallery
--------------------------------------------------------------*/
.campus-gallery-section {
  background: var(--white-color);
  border-bottom: 8px solid;
  border-image: linear-gradient(90deg, var(--primary-color), var(--assets-color)) 1;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 100%;
  box-shadow: 0 15px 40px var(--black-shadow);
  transition: all 0.4s ease;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gallery-overlay h4 {
  font-size: 24px;
  font-weight: 700;
}
.gallery-overlay h5 {
  font-size: 20px;
  font-weight: 600;
}
.gallery-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 0;
}
.large-card {
  height: 520px;
}
.medium-card {
  height: 240px;
}
.small-card {
  height: 240px;
}
@media (max-width: 991px) {
  .large-card,
  .medium-card,
  .small-card {
    height: 260px;
  }
}