/********** Template CSS **********/

@font-face {
  font-family: 'Lato';
  src: url('/static/fonts/Lato-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/static/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-primary: #B957FF;
  --color-primary-hover: #8f17e4;
  --color-secondary: #FF7F00;
  --color-secondary-hover: #ea5c04;
  --color-tertiary: #00FFCC;
  --accent-color: #007BFF;
  
  --color-error: #ED4646;
  --timeline-color: #20b2aa;
  --color-pure-white: #ffffff;
  --color-muted-white: #f5f5f5;
  --color-light-grey: #c7c7c7;

  --color-footer-text: #969696;
  --color-footer-line: #2d2d2d;

  --color-text-grey: #737373;
  --color-sub-text: #515151;
  --color-text-black: #1e1e1e;
  --color-black: #0e0e0e;
  

  --gradient-dark-bg: linear-gradient(135deg, #1a1148 0%, #2a1a5a 50%, #3a2a6a 100%);
  --gradient-primary: linear-gradient(135deg, #B957FF 0%, #8B5CF6 100%);
  --gradient-secondary: linear-gradient(135deg, #FFB84D 0%, #FF7F00 100%);
  --gradient-accent: linear-gradient(135deg, #B957FF, #4a90e2);

  --transition-all: all 0.3s ease;

  /** fonts */
  --default-font-family: "Lato", sans-serif;
  --header-font-family: "Poppins", sans-serif;

  --default-font-size: 18px;
  --default-line-height: 30px;

  --default-secondary-font-size: 16px;
  --default-secondary-line-height: 26px;

  --shadow-light: 0 5px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 10px 240px rgba(0,0,0,0.15);
  --shadow-heavy: 0 20px 30px rgba(0,0,0,0.2);
  
  --border-radius-small: 6px;
  --border-radius-medium: 10px;
  --border-radius-large: 20px;


  /* Fluid typography scale */
  --h1-min: 1.75rem;
  /* 38px */
  --h1-max: 2.375rem;
  /* 38px */

  --h2-min: 1.5rem;
  /* 34px */
  --h2-max: 2.125rem;
  /* 34px */

  --h3-min: 1.35rem;
  /* 28px */
  --h3-max: 1.75rem;
  /* 28px */

  --h4-min: 1.25rem;
  /* 24px */
  --h4-max: 1.5rem;
  /* 24px */

  --h5-min: 1rem;
  /* 20px */
  --h5-max: 1.25rem;
  /* 20px */

  --h6-min: 0.85rem;
  /* 16px */
  --h6-max: 1.125rem;
  /* 18px */

  --side-padding: 1rem;

}

/*--------------------------------------------------------------
# Mobile Landscape View (≥ 576px)
--------------------------------------------------------------*/
@media (min-width: 576px) {
  /* Small devices - landscape phones */
}

/*--------------------------------------------------------------
# Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {
  /* Medium devices - tablets */
  :root {
    --side-padding: 4rem;
  }
}

/*--------------------------------------------------------------
# Desktop View (≥ 992px)
--------------------------------------------------------------*/
@media (min-width: 992px) {
  /* Large devices - desktops */
}

/*--------------------------------------------------------------
# Large Desktop View (≥ 1200px)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  /* Extra large devices */
  :root {
    --side-padding: 6rem;
  }
}



* {
  box-sizing: border-box;
}

body,
html {
  font-family: var(--default-font-family);
  font-size: var(--default-font-size);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: var(--default-line-height);
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-text-black) !important;
  overflow-x: hidden;
}

/* Body padding for fixed navbar */
body {
  padding-top: 80px;
}


a,
a:hover {
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary) !important;
}


.sub-heading {
  font-weight: 400;
  font-size: 1rem;
}


.form-label {
  color: var(--color-text-grey);
  font-size: var(--default-secondary-font-size);
}


.section-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.counter {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.timer {
  --size: 110px;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-small);
  width: var(--size);
  height: var(--size);
  background-color: var(--color-primary);
  justify-content: center;
  align-items: center;
  color: var(--color-pure-white);
}

.fs-subtext {
  font-size: 16px !important;
  font-weight: 400;
  line-height: var(--default-secondary-line-height);
}


.info-box {
  display: inline-flex;
  flex-direction: column;
  padding: 1rem 2rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--border-radius-medium);
  color: var(--color-pure-white);
}



/*--------------------------------------------------------------
# Navbar Styles
--------------------------------------------------------------*/
.navbar-fixed {
  background-color: white;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-text,
.logo-text-mobile {
  color: var(--color-text-black);
  font-weight: 600;
  transition: color 0.3s ease;
}



.navbar-fixed .btn-primary:hover {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
}

.navbar-fixed .nav-link {
  color: var(--color-sub-text);
  transition: color 0.3s ease;
}

.navbar-fixed .nav-link:hover,
.navbar-fixed .nav-link.active {
  color: var(--color-secondary);
}

.navbar-toggler {
  color: var(--color-sub-text);
}



.navbar>.container {
  max-width: unset;
  padding: 0 var(--side-padding);
  margin: auto !important;
}

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/

.bg-bright-magenta {
  background-color: var(--color-primary);
}


.bg-light-grey {
  background-color: var(--color-light-grey);
}

.bg-muted-black {
  background-color: var(--color-black);
}

.text-white {
  color: var(--color-pure-white);
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}


.text-dark-grey {
  color: var(--color-text-grey);
}

/*--------------------------------------------------------------
# End Colors
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Headings
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header-font-family);
  font-weight: 500;
}

h1 {
  font-size: clamp(var(--h1-min), 1vw + 1rem, var(--h1-max));
  line-height: 1.2;
}

h2 {
  font-size: clamp(var(--h2-min), 1vw + 1rem, var(--h2-max));
  line-height: 1.25;
}

h3 {
  font-size: clamp(var(--h3-min), 1vw + 1rem, var(--h3-max));
  line-height: 1.3;
}

h4 {
  font-size: clamp(var(--h4-min), 1vw + 1rem, var(--h4-max));
  line-height: 1.35;
}

h5 {
  font-size: clamp(var(--h5-min), 1vw + 1rem, var(--h5-max));
  line-height: 1.4;
}

h6 {
  font-size: clamp(var(--h6-min), 1vw + 1rem, var(--h6-max));
  line-height: 1.5;
}


/*--------------------------------------------------------------
# End Headings
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Spinner
--------------------------------------------------------------*/

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# End Spinner
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.button {
  border-radius: var(--border-radius-small);
  padding: 0.35rem 1.5rem;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  font-family: var(--default-font-family);
  display: inline-block;
}


.btn-white,
a.btn-white {
  border: 1px solid var(--color-pure-white);
  background-color: var(--color-pure-white);
  color: var(--color-black) !important;
}

.btn-white:hover {
  background-color: var(--color-sub-text);
  border: 1px solid var(--color-sub-text);
  color: var(--color-pure-white) !important;
}

.btn-primary,
a.btn-primary {
  border: 1px solid var(--color-primary) !important;
  background-color: var(--color-primary) !important;
  color: var(--color-pure-white) !important;
}

.btn-primary:hover,
a.btn-primary:hover {
  background-color: var(--color-primary-hover) !important;
  border: 1px solid var(--color-primary-hover);
}

.btn-secondary,
a.btn-secondary {
  border: 1px solid var(--color-secondary) !important;
  background-color: var(--color-secondary) !important;
  color: var(--color-pure-white) !important;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  background-color: var(--color-secondary-hover) !important;
  border: 1px solid var(--color-secondary-hover);
}

button:active {
  opacity: 0.9;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.action-btn i {
  font-size: 1rem;
  transition: transform .4s;
}

.action-btn:hover i {
  transform: translateX(8px);
}

/*--------------------------------------------------------------
# End Buttons
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Custom Radio and Checkbox
--------------------------------------------------------------*/
@supports (-webkit-appearance: none) or (-moz-appearance: none) {

  input[type=checkbox],
  input[type=radio] {
    --active: var(--color-secondary);
    --active-inner: #fff;
    --focus: 2px #f3bc114d;
    --border: #BBC1E1;
    --border-hover: var(--color-secondary);
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    margin-right: 0.25rem;
  }

  input[type=checkbox]:after,
  input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }

  input[type=checkbox]:checked,
  input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }

  input[type=checkbox]:disabled,
  input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }

  input[type=checkbox]:disabled:checked,
  input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }

  input[type=checkbox]:disabled+label,
  input[type=radio]:disabled+label {
    cursor: not-allowed;
  }

  input[type=checkbox]:hover:not(:checked):not(:disabled),
  input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }

  input[type=checkbox]:focus,
  input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }

  input[type=checkbox]:not(.switch),
  input[type=radio]:not(.switch) {
    width: 21px;
  }

  input[type=checkbox]:not(.switch):after,
  input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }

  input[type=checkbox]:not(.switch):checked,
  input[type=radio]:not(.switch):checked {
    --o: 1;
  }

  input[type=checkbox]+label,
  input[type=radio]+label {
    font-size: var(--default-font-size);
    line-height: 21px;
    display: inline;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

  input[type=checkbox]:not(.switch) {
    border-radius: var(--border-radius-small);
  }

  input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }

  input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }

  input[type=checkbox].switch {
    width: 38px;
    border-radius: var(--border-radius-medium);
  }

  input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }

  input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }

  input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }

  input[type=radio] {
    border-radius: 50%;
  }

  input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }

  input[type=radio]:checked {
    --s: .5;
  }
}

/*--------------------------------------------------------------
# End Custom Radio and Checkbox
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Scrolling Text Section
--------------------------------------------------------------*/
.text-scroll-container {
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-secondary);
  white-space: nowrap;
  padding: 2rem 0 1rem 0;
  position: relative;
}

.text-scroll-container::before {
  display: none;
}

.text-scroll-container::after {
  display: none;
}


.text-scroll-container .text-scroll-title {
  padding: 1rem var(--side-padding);
}

.text-scroll-container .text-scroll-section div {
  display: flex;
  gap: 0.5rem;
}

.text-scroll-container .text-scroll-section p {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-pure-white);

  position: relative;
  z-index: 2;
}

.text-scroll-container .right-to-left {
  animation: RightToLeft 30s linear infinite;
  position: relative;
  z-index: 2;
}


@keyframes RightToLeft {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-400%);
  }
}

/*--------------------------------------------------------------
# End Scrolling Text Section
--------------------------------------------------------------*/



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

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

.scroll-top:hover {
  background: var(--color-primary);
  color: var(--color-pure-white);
}

.scroll-top:hover i {
  color: var(--color-pure-white);
}

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

/*--------------------------------------------------------------
# End Scroll Top Button
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background-color: var(--color-pure-white) !important;
  transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-pure-white);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Add padding to body when navbar is sticky to prevent content jump */
body.navbar-sticky {
  padding-top: 80px; /* Adjust based on navbar height */
}

.logo-container {
  display: none;
}

.logo-container img,
.logo-container-mobile img {
  height: 50px;
}

.logo-container-mobile {
  color: var(--color-pure-white) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container-mobile img {
  height: 1.25rem !important;
  margin-right: 1rem;
  width: 100%;
}

.logo-container-mobile h1 {
  font-size: 1.15rem;
  font-weight: 600;
  padding-top: 0.25rem;
  margin: 0;
}

.navbar.sticky .logo-container-mobile {
  color: var(--color-black) !important;
}

.navbar.sticky .logo-container img,
.navbar .offcanvas.show .offcanvas-header img,
.navbar.sticky .logo-container-mobile img {
  filter: unset;
  height: 40px;
}

.navbar .nav-item {
  cursor: pointer;
  font-weight: 400;
  padding: 0.5rem;
  font-family: var(--header-font-family);
  font-size: var(--default-font-size);
}

.navbar .offcanvas.show .nav-item {
  padding: 0;
}

.navbar.sticky .nav-item {
  padding: 0.25rem 0.5rem;
}


.navbar .nav-link {
  color: var(--color-text-black) !important;
}

.nav-link.active {
  font-weight: 600;
}

.navbar.sticky .nav-link,
.navbar .offcanvas.show .nav-link {
  color: var(--color-black) !important;
}

.nav-item .nav-link:hover,
.navbar.sticky .nav-link:hover,
.navbar .offcanvas.show .nav-link:hover {
  color: var(--color-secondary) !important;
}

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

.offcanvas.offcanvas-end {
  --bs-offcanvas-width: 320px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 1050;
}

/* Prevent body scroll when offcanvas is open */
body.offcanvas-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Offcanvas Header Styling */
.offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: white;
}

.offcanvas-header .d-flex {
  gap: 0.75rem;
}

.offcanvas-header h5 {
  margin: 0;
  font-weight: 600;
  color: var(--color-text-black);
  font-size: 1.1rem;
  font-family: var(--header-font-family);
}

.offcanvas-header .navbar-logo-mobile {
  height: 28px !important;
  width: auto;
}

/* Enhanced Close Button */
.offcanvas-header .btn-close {
  padding: 0.5rem;
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease;
  opacity: 0.7;
  background-size: 1.2em;
}

.offcanvas-header .btn-close:hover {
  opacity: 1;
  background-color: rgba(255, 127, 0, 0.1);
  transform: rotate(90deg);
}

/* Offcanvas Body Styling */
.offcanvas-body {
  padding: 0.5rem 1rem;
}

.offcanvas-body .navbar-nav {
  gap: 0.25rem;
}

/* Enhanced Nav Items in Offcanvas */
.offcanvas.show .nav-item {
  margin: 0;
  animation: slideInRight 0.3s ease forwards;
  opacity: 0;
}

.offcanvas.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
.offcanvas.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
.offcanvas.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
.offcanvas.show .nav-item:nth-child(4) { animation-delay: 0.25s; }
.offcanvas.show .nav-item:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Nav Links in Offcanvas */
.offcanvas.show .nav-link {
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.offcanvas.show .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--color-secondary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.offcanvas.show .nav-link:hover,
.offcanvas.show .nav-link.active {
  background-color: rgba(255, 127, 0, 0.08);
  padding-left: 1.25rem;
}

.offcanvas.show .nav-link:hover::before,
.offcanvas.show .nav-link.active::before {
  transform: scaleY(1);
}

.offcanvas.show .nav-link.active {
  font-weight: 600;
  color: var(--color-secondary) !important;
}

/* Enhanced Register Button in Offcanvas */
.offcanvas.show .nav-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  animation: slideInRight 0.3s ease forwards;
  animation-delay: 0.35s;
  opacity: 0;
}

.offcanvas.show .nav-btn-container a.button {
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.25);
  transition: all 0.3s ease;
}

.offcanvas.show .nav-btn-container a.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 127, 0, 0.35);
}

.offcanvas.show .nav-btn-container a.button:active {
  transform: translateY(0);
}


.navbar .navbar-toggler {
  left: 1rem;
  position: relative;
}

.navbar .navbar-toggler,
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:active,
.navbar .btn-close {
  border: none;
  outline: none;
  box-shadow: none
}


.navbar.sticky .navbar-toggler i {
  color: var(--color-black) !important;
}

/*--------------------------------------------------------------
# End Nav Bar
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Social Icons
--------------------------------------------------------------*/
.social-icon-container {
  --size: 2.5rem;
  width: var(--size);
  height: var(--size);
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon-container i {
  font-size: 1.25rem;
  color: var(--color-pure-white);
  transition: color 0.3s ease-in-out;
}

.social-icon-container:hover {
  cursor: pointer;
  background-color: var(--color-secondary) !important;
}

.social-icon-container:active,
.social-icon-container:active i {
  opacity: 0.8;
}

.contact-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-social {
  gap: 0.75rem;
}

.contact-social .social-icon-container {
  --size: 2.25rem;
  width: var(--size);
  height: var(--size);
}

.contact-social .social-icon-container i {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# End Social Icons
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Event Notification Banner
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Responsive Navbar - Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {
  .logo-container {
    display: flex;
    align-items: center;
  }

  .logo-container-mobile {
    display: none;

  }
  .logo-text {
    font-size: 1.5rem;
  }

}


/*--------------------------------------------------------------
# Responsive Utilities - Large Desktop View (≥ 1200px)
--------------------------------------------------------------*/
@media (min-width: 1200px) {

  .sub-heading {
    font-weight: 300;
    font-size: 1.15rem;
  }

  

  .text-scroll-container .right-to-left {
    animation: RightToLeft var(--time) linear infinite;

  }

  .counter {
    justify-content: start;
  }

  @keyframes RightToLeft {
    from {
      transform: translateX(0%);
    }


    to {
      transform: translateX(-150%);
    }
  }

  .contact-social {
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Common Utility Classes
--------------------------------------------------------------*/

/* Common Button Styles */
.btn-primary-unified {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transition: all 0.3s ease;
  border: 1px solid var(--color-primary);
}

.btn-primary-unified:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  color: white;
}

.btn-primary-unified:hover i {
  transform: translateX(3px);
}

/* Common Card Styles */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(185, 87, 255, 0.2);
}

/* Common Section Styles */
.section-padding {
  padding: 4rem 0;
}

.section-title-common {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle-common {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Common Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Common Gradient Backgrounds */
.gradient-primary {
  background: var(--gradient-primary);
}

.gradient-secondary {
  background: var(--gradient-secondary);
}

.gradient-dark-bg {
  background: var(--gradient-dark-bg);
}

.gradient-accent {
  background: var(--gradient-accent);
}

/* Common Border Radius - Consolidated */

/* Common Box Shadows - Consolidated */

/* Common Transition */
.transition-all {
  transition: all 0.3s ease;
}

/* Common Transform */
.transform-hover:hover {
  transform: translateY(-5px);
}

/* Common Color Classes */
.text-accent {
  color: var(--color-primary);
}

.bg-accent {
  background-color: var(--color-primary);
}

.border-accent {
  border-color: var(--color-primary);
}

/* Extended Utility Classes */

/* Common Transition Patterns */
.transition-transform {
  transition: transform 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.transition-filter {
  transition: filter 0.3s ease;
}

.transition-transform-shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-all-smooth {
  transition: all 0.5s ease-in-out;
}

/* Common Border Radius Patterns */
.rounded-sm {
  border-radius: var(--border-radius-small);
}

.rounded-md {
  border-radius: var(--border-radius-medium);
}

.rounded-lg {
  border-radius: var(--border-radius-large);
}

.rounded-xl {
  border-radius: var(--border-radius-large);
}

.rounded-2xl {
  border-radius: var(--border-radius-large);
}

.rounded-3xl {
  border-radius: 25px;
}

.rounded-full {
  border-radius: 50%;
}

/* Common Box Shadow Patterns */
.shadow-xs {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow-sm {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shadow-xl {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.shadow-2xl {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.shadow-primary {
  box-shadow: 0 4px 15px rgba(185, 87, 255, 0.2);
}

.shadow-primary-lg {
  box-shadow: 0 10px 30px rgba(185, 87, 255, 0.2);
}

.shadow-primary-xl {
  box-shadow: 0 15px 40px rgba(185, 87, 255, 0.3);
}

.shadow-secondary {
  box-shadow: 0 0 30px rgba(255, 127, 0, 0.5);
}

/* Common Padding Patterns */
.p-xs {
  padding: 0.25rem;
}

.p-sm {
  padding: 0.5rem;
}

.p-md {
  padding: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.p-2xl {
  padding: 3rem;
}

.p-3xl {
  padding: 4rem;
}

.p-4xl {
  padding: 6rem;
}

/* Common Margin Patterns */
.m-xs {
  margin: 0.25rem;
}

.m-sm {
  margin: 0.5rem;
}

.m-md {
  margin: 1rem;
}

.m-lg {
  margin: 1.5rem;
}

.m-xl {
  margin: 2rem;
}

.m-2xl {
  margin: 3rem;
}

.m-3xl {
  margin: 4rem;
}

.m-4xl {
  margin: 6rem;
}

/* Common Font Size Patterns */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.85rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.1rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.75rem;
}

.text-4xl {
  font-size: 2rem;
}

.text-5xl {
  font-size: 2.5rem;
}

.text-6xl {
  font-size: 3rem;
}

/* Common Flexbox Patterns */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

/* Common Gap Patterns */
.gap-xs {
  gap: 0.25rem;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.gap-xl {
  gap: 2rem;
}

.gap-2xl {
  gap: 3rem;
}

/* Common Animation Patterns */
.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Common Hover Effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 10px 30px rgba(185, 87, 255, 0.3);
}

/* Common Text Patterns */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

/* Common Position Patterns */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* Common Display Patterns */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

/* Common Overflow Patterns */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

/* Common Z-Index Patterns */
.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.z-100 {
  z-index: 100;
}

.z-1000 {
  z-index: 1000;
}

.z-5000 {
  z-index: 5000;
}

.z-10000 {
  z-index: 10000;
}



.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-black);
  margin-bottom: 1.5rem;
  font-family: var(--header-font-family);
}

/*--------------------------------------------------------------
# Section Title - Large Desktop View (≥ 1200px)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}