@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------
Typography & Global Styles
--------------------------------------------- */
body, p, span, a, input, button, select, textarea, li {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .logo-text {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Open Sans', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #afafaf;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Open Sans', sans-serif;
}

::selection {
  background: #5b03e4;
  color: #fff;
}

::-moz-selection {
  background: #5b03e4;
  color: #fff;
}

.templatemo-feature {
	max-width: 66px; border-radius: 50%;
}

.main-button a {
  font-size: 14px;
  color: #fff;
  background-color: #5b03e4;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button a:hover {
  background-color: #5b03e4;
  color: #fff;
  opacity: 0.8;
}

.second-button a {
  font-size: 14px;
  color: #fff;
  background-color: #c03afe;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.second-button a:hover {
  background-color: #c03afe;
  color: #fff;
  opacity: 0.8;
}

.section {
  padding-top: 30px;
  margin-top: 90px;
}


.section-heading {
  margin-bottom: 30px;
}

.section-heading .line-dec {
  width: 60px;
  height: 2px;
  margin-bottom: 20px;
  background: rgb(85,0,227);
  background: linear-gradient(90deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
}

.section-heading h2 {
  color: #2a2a2a;
  font-size: 30px;
  text-transform: capitalize;
  text-decoration: none;
  margin-bottom: 30px;
  line-height: 44px;
}

.section-heading h2 em {
  color: #5b03e4;
  font-style: normal;
}

.section-heading h2 span {
  color: #c03afe;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

/* Custom Corporate Preloader with Animated Logo */
.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0b0717 0%, #170d30 50%, #260747 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.preloader-logo-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-wrapper img {
  height: 65px;
  width: auto;
  z-index: 2;
  animation: logoPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(198, 61, 255, 0.7));
}

.preloader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #c63dff;
  border-right-color: #7012ce;
  animation: spinRing 1.2s linear infinite;
  z-index: 1;
}

@keyframes logoPulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(0.92); opacity: 0.85; }
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff, #c63dff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShimmer 2s linear infinite;
}

@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

/* 
---------------------------------------------
Header Style (Constant Deep Purple)
--------------------------------------------- 
*/

.header-area,
.background-header {
  position: sticky !important;
  top: 0 !important;
  background: rgba(43, 3, 80, 0.92) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  height: 80px !important;
  left: 0;
  right: 0;
  z-index: 1000 !important;
  box-shadow: 0 4px 25px rgba(112, 18, 206, 0.35) !important;
  transition: all 0.3s ease 0s;
}

/* Floating Quick Action Widget */
.floating-quick-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
}

.floating-action-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-action-btn.contact {
  background: linear-gradient(135deg, #7012ce, #c63dff);
}

.floating-action-btn:hover {
  transform: scale(1.12) translateY(-4px);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(112, 18, 206, 0.45);
}

.header-area .main-nav,
.background-header .main-nav {
  min-height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
}

.header-area .main-nav .logo,
.background-header .main-nav .logo {
  margin-top: 0 !important;
  flex: 0 0 auto !important;
  max-width: 260px;
  display: flex !important;
  align-items: center;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo span:first-child,
.background-header .main-nav .logo span:first-child {
  color: #ffffff !important;
}

.header-area .main-nav .logo span:last-child,
.background-header .main-nav .logo span:last-child {
  color: #decdfa !important;
}

@media (min-width: 992px) {
  .header-area .main-nav .nav,
  .background-header .main-nav .nav {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    height: 80px;
    margin-top: 0px;
    margin-right: 0px;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 999;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .header-area .main-nav .nav li,
  .background-header .main-nav .nav li {
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
}

@media (min-width: 992px) {
  .header-area .main-nav .nav li a,
  .background-header .main-nav .nav li a {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    color: #ffffff !important;
    transition: all 0.3s ease 0s;
    height: 80px !important;
    line-height: 80px !important;
    border: transparent;
    letter-spacing: 0.3px;
    opacity: 0.95;
    white-space: nowrap;
  }

  .header-area .main-nav .nav li.contact-nav-item a,
  .background-header .main-nav .nav li.contact-nav-item a,
  .header-area .main-nav .nav li a.nav-contact-btn,
  .background-header .main-nav .nav li a.nav-contact-btn {
    background: linear-gradient(135deg, #7012ce 0%, #9333ea 100%) !important;
    color: #ffffff !important;
    height: 36px !important;
    line-height: 36px !important;
    padding: 0 16px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px rgba(112, 18, 206, 0.4) !important;
    transition: all 0.25s ease !important;
    margin-left: 6px !important;
  }

  .header-area .main-nav .nav li:hover > a,
  .header-area .main-nav .nav li a.active,
  .background-header .main-nav .nav li:hover > a,
  .background-header .main-nav .nav li a.active {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }

  .header-area .main-nav .menu-trigger,
  .background-header .main-nav .menu-trigger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

.menu-trigger span {
  font-size: 0 !important;
  color: transparent !important;
  line-height: 0 !important;
}

@media (min-width: 993px) {
  .header-area .main-nav .menu-trigger,
  .background-header .main-nav .menu-trigger,
  .menu-trigger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
  }
}

.header-area .main-nav .nav li.has-sub,
.background-header .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 18px !important;
}

.header-area .main-nav .nav li.has-sub > a,
.background-header .main-nav .nav li.has-sub > a {
  padding-right: 16px !important;
  position: relative;
  display: inline-block;
}

.header-area .main-nav .nav li.has-sub:after,
.background-header .main-nav .nav li.has-sub:after {
  font-family: 'FontAwesome';
  content: "\f107";
  font-size: 11px;
  color: #decdfa;
  position: absolute;
  right: 2px;
  top: 34px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.header-area .main-nav .nav li.has-sub:hover:after,
.background-header .main-nav .nav li.has-sub:hover:after {
  transform: rotate(180deg);
  color: #c03afe;
}

/* Sub-Menu Dropdown Styling */
.header-area .main-nav .nav li.has-sub ul.sub-menu,
.background-header .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 250px;
  border-radius: 14px;
  background-color: #1e1242 !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(192, 58, 254, 0.25);
  overflow: hidden;
  padding: 8px 0;
  top: 75px;
  opacity: 0;
  transition: all .3s ease;
  transform: translateY(+10px);
  visibility: hidden;
  z-index: 1000;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li,
.background-header .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
  display: block;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a,
.background-header .main-nav .nav li.has-sub ul.sub-menu li a {
  display: block;
  background: transparent !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  height: auto !important;
  line-height: 1.4 !important;
  transition: all 0.25s ease 0s;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

.header-area .main-nav .nav li.has-sub ul li a:hover,
.background-header .main-nav .nav li.has-sub ul li a:hover {
  background: #2d1b63 !important;
  color: #c03afe !important;
  padding-left: 26px !important;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu,
.background-header .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------
FAQ Accordion Style
--------------------------------------------- */
.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-accordion .accordion-item {
  border: 1px solid #e0d0fb;
  border-radius: 16px !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(91, 3, 228, 0.05);
}

.faq-accordion .accordion-button {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 16px !important;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #5b03e4;
  background-color: #f7efff;
}

.faq-accordion .accordion-body {
  padding: 20px 25px;
  font-size: 14px;
  line-height: 24px;
  color: #555;
  background: #ffffff;
}

.header-area.header-sticky .nav li a.active {
  color: #fff;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 991px) {
  .header-area {
    background: #0f0a1e !important;
    padding: 0px 16px !important;
    height: 74px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
  }
  .header-area .container,
  .header-area .container-fluid {
    padding: 0 !important;
  }
  .header-area .main-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 74px !important;
    overflow: visible !important;
    position: relative !important;
  }
  .header-area .main-nav .logo {
    display: flex !important;
    align-items: center !important;
    position: static !important;
    float: none !important;
    margin: 0 !important;
  }
  .header-area .main-nav .logo img {
    height: 40px !important;
    width: auto !important;
    margin-right: 10px !important;
  }
  .header-area .main-nav .logo span:first-child {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
  }
  .header-area .main-nav .logo span:last-child {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #decdfa !important;
    letter-spacing: 1px !important;
  }

  /* Hamburger Toggle */
  .menu-trigger,
  .header-area .main-nav .menu-trigger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    cursor: pointer !important;
    z-index: 10001 !important;
  }
  .menu-trigger span,
  .menu-trigger span:before,
  .menu-trigger span:after {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #ffffff !important;
    width: 24px !important;
    height: 2.5px !important;
    border-radius: 2px !important;
    position: absolute !important;
    left: 10px !important;
    transition: all 0.3s ease !important;
  }
  .menu-trigger span {
    top: 21px !important;
  }
  .menu-trigger span:before {
    content: '' !important;
    top: -7px !important;
    left: 0 !important;
  }
  .menu-trigger span:after {
    content: '' !important;
    top: 7px !important;
    left: 0 !important;
  }
  .menu-trigger.active span {
    background-color: transparent !important;
  }
  .menu-trigger.active span:before {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .menu-trigger.active span:after {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  /* Dark mode button hidden from header on mobile to prevent clutter */
  #darkModeToggle {
    display: none !important;
  }

  /* Mobile Dropdown Menu Drawer */
  .header-area .main-nav .nav {
    display: none;
    position: absolute !important;
    top: 74px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #0d081f !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 2px solid #7012ce !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
    padding: 12px 18px 24px !important;
    max-height: calc(100vh - 84px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 9999 !important;
    margin: 0 !important;
    flex-direction: column !important;
    height: auto !important;
    float: none !important;
  }
  .header-area .main-nav .nav li {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    height: auto !important;
    background: transparent !important;
  }
  .header-area .main-nav .nav li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 48px !important;
    line-height: 48px !important;
    color: #f1f5f9 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 0 8px !important;
    background: transparent !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: 0.2px !important;
  }
  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    color: #c084fc !important;
  }

  /* Submenus on Mobile */
  .header-area .main-nav .nav li.has-sub {
    padding-right: 0 !important;
  }
  .header-area .main-nav .nav li.has-sub:after {
    display: none !important;
  }
  .header-area .main-nav .nav li.has-sub > a:after {
    content: "\f078" !important;
    font-family: 'FontAwesome' !important;
    font-size: 11px !important;
    color: #decdfa !important;
    transition: transform 0.2s ease !important;
    margin-left: auto !important;
  }
  .header-area .main-nav .nav li.has-sub.open > a:after {
    transform: rotate(180deg) !important;
    color: #c084fc !important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    display: none;
    position: static !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
    padding: 6px 0 !important;
    margin: 4px 0 10px !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu li {
    border: none !important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu li a {
    height: 40px !important;
    line-height: 40px !important;
    font-size: 13.5px !important;
    padding: 0 16px !important;
    color: #cbd5e1 !important;
    font-weight: 500 !important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu li a:hover {
    color: #ffffff !important;
    background: rgba(112, 18, 206, 0.25) !important;
  }

  /* Contact Button inside Mobile Drawer */
  .header-area .main-nav .nav li.contact-nav-item {
    margin-top: 14px !important;
    border-bottom: none !important;
    padding: 0 !important;
  }
  .header-area .main-nav .nav li a.nav-contact-btn {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    line-height: 48px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #7012ce 0%, #9333ea 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(112, 18, 206, 0.45) !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
  }
}

.pre-header {
  background-color: #fff;
  padding: 15px 0px;
}

.pre-header ul li {
  display: inline-block;
}

.pre-header .left-info ul li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}

.pre-header .left-info ul li {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #dfb6ff;
}

.pre-header .left-info ul li a {
  font-size: 14px;
}

.pre-header .left-info ul li a i {
  font-size: 18px;
  margin-right: 10px;
}

.pre-header ul li a {
  color: #a586bc;
  transition: all .4s;
}

.pre-header .social-icons {
  text-align: right;
}


.pre-header .social-icons ul li {
  margin-left: 10px;
}

.pre-header .social-icons ul li a {
  font-size: 18px;
}

.pre-header ul li a:hover {
  color: #c03afe;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  position: relative;
  padding: 80px 0px 80px 0px !important;
}

.main-banner:after {
  display: none !important;
}

.main-banner h6 {
  font-size: 20px;
  color: #5b03e4;
  text-transform: uppercase;
  font-weight: 700;
}

.main-banner .line-dec {
  margin: 30px 0px 20px 0px;
  width: 210px;
  height: 2px;
  background-color: #decdfa;
}

.main-banner h4 {
  font-size: 52px;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 20px;
}

.main-banner h4 em {
  font-style: normal;
  color: #5b03e4;
}

.main-banner h4 span {
  color: #c03afe;
}

.main-banner p {
  padding-right: 25%;
  margin-bottom: 30px;
}

.main-banner .main-button {
  display: inline-block;
}

.main-banner span {
  display: inline-block;
  margin: 0px 10px 0px 10px;
  color: #7a7a7a;
}

.main-banner .second-button {
  display: inline-block;
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services {
  position: relative;
  overflow: hidden;
}

.services .section-heading h2 {
  padding-right: 30px;
}

.services::before {
  content: url(../images/services-left.jpg);
  top: 120px;
  left: 0;
  position: absolute;
  width: 844px;
  height: 714px;
  z-index: -1;
}

.services::after {
  content: url(../images/contact-left.jpg);
  bottom: -150px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.services .service-item {
  border: 1px solid #f3d7ff;
  border-radius: 23px;
  padding: 30px;
  background-color: #fff;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  animation: serviceCardFadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.services .service-item h4 {
  font-size: 20px;
  color: #2a2a2a;
  margin-top: 20px;
  line-height: 30px;
  transition: all 0.35s ease;
}

.services .service-item:hover {
  border-color: #e0d0fb;
  box-shadow: 0 12px 35px rgba(91, 3, 228, 0.14);
  transform: translateY(-8px);
}

.services .service-item:hover h4 {
  color: #5b03e4;
}

/* 
---------------------------------------------
Projects Style
--------------------------------------------- 
*/

.projects .section-heading {
  margin-bottom: 80px;
}

.projects .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

.projects .item {
  border-radius: 23px;
  overflow: hidden;
}

.projects .item .down-content {
  background-color: #fff;
  border: 1px solid #f3d7ff;
  border-radius: 0px 0px 23px 23px;
  padding: 30px;
  position: relative;
}

.projects .item .down-content h4 {
  font-size: 20px;
  color: #2a2a2a;
  line-height: 30px;
  width: 75%;
}

.projects .item .down-content a {
  width: 46px;
  height: 46px;
  display: inline-block;
  line-height: 46px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  color: #5b03e4;
  transform: translateY(-23px);
}

.projects .owl-nav {
  position: absolute;
  max-width: 1320px;
  top: -126px;
  right: 16%;
  text-align: right;
}

.projects .owl-nav .owl-prev span,
.projects .owl-nav .owl-next span {
  width: 46px;
  height: 46px;
  line-height: 42px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: #5b03e4;
  border-radius: 50%;
  opacity: 0.5;
  transition: all .3s;
}

.projects .owl-nav .owl-next span {
  margin-left: 15px;
}

.projects .owl-nav .owl-prev span:hover,
.projects .owl-nav .owl-next span:hover {
  opacity: 1;
}

/* 
---------------------------------------------
Infos Style
--------------------------------------------- 
*/

.infos {
  background-image: url(../images/infos-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 120px 0px;
  margin-top: 120px;
}

.infos .main-content {
  overflow: hidden;
  background-color: #fff;
  border-radius: 23px;
}

.infos .main-content .left-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 23px 0 0 23px;
}

.infos .main-content .left-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 23px 0 0 23px !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .infos .main-content .left-image {
    min-height: 320px;
    border-radius: 23px 23px 0 0;
  }
  .infos .main-content .left-image img {
    border-radius: 23px 23px 0 0 !important;
  }
}

.infos .main-content .section-heading {
  padding: 60px 60px 30px 60px;
}

.infos .main-content .skills {
  padding: 0px 60px;
}

.infos .main-content .skill-slide {
  position: relative;
  width: 100%;
  background-color: #f9ebff;
  height: 10px;
  border-radius: 5px;
  margin-bottom: 60px;
}

.infos .main-content .skill-slide .fill {
  height: 10px;
  background-color: #5b03e4;
  border-radius: 5px;
}

.infos .main-content .skill-slide h6 {
  position: absolute;
  color: #5b03e4;
  font-size: 15px;
  left: 0;
  top: -25px;
}

.infos .main-content .skill-slide span {
  position: absolute;
  color: #5b03e4;
  font-size: 15px;
  font-weight: 700;
  top: -25px;
}

.infos .main-content .marketing .fill {
  width: 90%;
}

.infos .main-content .digital .fill {
  width: 80%;
}

.infos .main-content .media .fill {
  width: 95%;
}

.infos .main-content .marketing span {
  right: 10%;
}

.infos .main-content .digital span {
  right: 20%;
}

.infos .main-content .media span {
  right: 5%;
}

.infos .main-content p.more-info {
  margin-top: -15px;
  padding: 0px 60px 60px 60px;
}

/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  position: relative;
}

.contact-us::before {
  content: url(../images/contact-left.jpg);
  top: -60px;
  left: 0;
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.contact-us::after {
  content: url(../images/contact-left.jpg);
  bottom: -90px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.contact-us .contact-us-content {
  border-radius: 23px;
  padding: 60px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

.contact-us .contact-us-content #contact-form {
  padding: 60px;
  border-radius: 23px 23px 0px 0px;
  border: 1px solid #f3d7ff;
}

#contact-form .section-heading {
  text-align: center;
}

#contact-form input {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  background-color: #f9ebff;
  border: none;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact-form input::placeholder {
  color: #2a2a2a;
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 23px;
  background-color: #f9ebff;
  border: none;
  outline: none;
  padding: 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact-form textarea::placeholder {
  color: #2a2a2a;
}

#contact-form button {
  border: none;
  height: 46px;
  background-color: #5b03e4;
  width: 100%;
  border-radius: 23px;
  color: #fff;
  transition: all .4s;
}

#contact-form button:hover {
  opacity: 0.8;
}

.contact-us-content .more-info {
  text-align: center;
  background: rgb(85,0,227);
  background: linear-gradient(90deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
  border-radius: 0px 0px 23px 23px;
  padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer p {
  text-align: center;
  padding: 30px 0px;
  color: #2a2a2a;
  font-weight: 500;
}

footer p a {
  color: #2a2a2a;
  transition: all .3s;
}

footer p a:hover {
  color: #5b03e4;
}

/* 
---------------------------------------------
Page Heading Style
--------------------------------------------- 
*/

.page-heading {
  position: relative;
  padding: 145px 0px 30px 0px !important;
  margin-top: 0px;
}

.page-heading::before {
  content: none;
  display: none;
}

.page-heading h6 {
  font-size: 16px;
  color: #5b03e4;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.page-heading .line-dec {
  margin: 20px 0px 20px 0px;
  width: 160px;
  height: 2px;
  background-color: #decdfa;
}

.page-heading h4 {
  font-size: 42px;
  color: #2a2a2a;
  font-weight: 800;
  line-height: 54px;
  margin-bottom: 20px;
}

.page-heading h4 em {
  font-style: normal;
  color: #5b03e4;
}

.page-heading h4 span {
  color: #c03afe;
}

.page-heading p {
  padding-right: 0px;
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin-bottom: 30px;
}

.page-heading .main-button {
  display: inline-block;
}

.page-heading span {
  display: inline-block;
  margin: 0px 10px 0px 10px;
  color: #7a7a7a;
}

.page-heading .second-button {
  display: inline-block;
}

/* 
---------------------------------------------
Infos Style
--------------------------------------------- 
*/

.video-info {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-bottom: 60px;
}

.video-info .video-thumb {
  position: relative;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
  margin-top: -60px;
}

.video-info .video-thumb a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-23px, -23px);
  background-color: #fff;
  border-radius: 50%;
  color: #5b03e4;
  display: inline-block;
  text-align: center;
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.video-info .section-heading {
  padding: 60px 15px 30px 15px;
}

.video-info .section-heading h2 {
  color: #fff;
  padding-right: 30px;
}

.video-info .section-heading .line-dec {
  background: #fff;
}

.video-info .section-heading p {
  color: #fff;
}

.video-info .skills {
  padding: 0px 15px;
}

.video-info .skill-slide {
  position: relative;
  width: 100%;
  background-color: rgba(249, 235, 255, 0.1);
  height: 10px;
  border-radius: 5px;
  margin-bottom: 60px;
}

.video-info .skill-slide .fill {
  height: 10px;
  background-color: #5b03e4;
  border-radius: 5px;
}

.video-info .skill-slide h6 {
  position: absolute;
  color: #fff;
  font-size: 15px;
  left: 0;
  top: -25px;
}

.video-info .skill-slide span {
  position: absolute;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  top: -25px;
}

.video-info .marketing .fill {
  width: 90%;
}

.video-info .digital .fill {
  width: 80%;
}

.video-info .media .fill {
  width: 95%;
}

.video-info .marketing span {
  right: 10%;
}

.video-info .digital span {
  right: 20%;
}

.video-info .media span {
  right: 5%;
}

/*
---------------------------------------------
Happy Clients Style
---------------------------------------------
*/

.happy-clients {
  position: relative;
}

.happy-clients::before {
  content: url(../images/contact-left.jpg);
  top: -60px;
  left: 0;
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.happy-clients::after {
  content: url(../images/contact-left.jpg);
  bottom: -90px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.happy-clients .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.happy-clients .section-heading .line-dec {
  margin: 0 auto 20px auto;
}

.happy-clients .naccs {
  position: relative;
  overflow: hidden;
}

.happy-clients .naccs .menu {
  border: 1px solid #e0e0e0;
  background-color: #fff;
  padding: 25px 0px;
  border-radius: 23px;
  margin-bottom: 60px;
}

.happy-clients .naccs .menu div {
  border-right: 1px solid #e0e0e0;
  width: 24.6%;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  cursor: pointer;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.happy-clients .naccs .menu div.last-item {
  border-right: none;
}

.happy-clients .naccs .menu div.active {
  color: #5b03e4;
}

.happy-clients ul.nacc {
  position: relative;
  min-height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.happy-clients ul.nacc li {
  overflow: hidden;
  opacity: 0;
  transform: translateX(50px);
  position: absolute;
  list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.happy-clients ul.nacc li img {
  padding-left: 45px;
}

.happy-clients ul.nacc li h4 {
  font-size: 30px;
  color: #2a2a2a;
  margin-bottom: 25px;
}

.happy-clients ul.nacc li .line-dec {
  background-color: #5b03e4;
  width: 60px;
  height: 2px;
  margin-bottom: 25px;
}

.happy-clients ul.nacc li .info {
  margin-top: 30px;
}

.happy-clients ul.nacc li .info span {
  display: inline-block;
  background-color: #5b03e4;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  padding: 0px 20px;
  margin-right: 20px;
  margin-bottom: 30px;
}

.happy-clients ul.nacc li .info span.last-span {
  margin-right: 0px;
}

.happy-clients ul.nacc li.active {
  position: relative;
  transition-delay: 0.3s;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
}

/*
---------------------------------------------
CTA Style
---------------------------------------------
*/

.cta {
  background-image: url(../images/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 80px 0px;
  position: relative;
  z-index: 15;
  margin-top: 120px;
}

.cta h4 {
  font-size: 30px;
  color: #fff;
  line-height: 44px;
}

.cta .main-button {
  text-align: right;
}

.cta .main-button a {
  background-color: #fff;
  color: #5b03e4;
  margin-top: 30px;
}

/*
---------------------------------------------
Happy Steps Style
---------------------------------------------
*/

.happy-steps {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 80px 0px;
}

.happy-steps h2 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

.happy-steps .steps {
  background-color: rgba(250, 250, 250, 0.2);
  padding: 30px;
  border-radius: 23px;
}

.happy-steps .steps .item {
  text-align: center;
  border-right: 1px solid rgba(250, 250, 250, 0.2);
  margin-right: -15px;
}

.happy-steps .steps .last-item {
  border-right: none;
  margin-right: 0px;
}

.happy-steps .steps .item h4 {
  font-size: 20px;
  color: #fff;
  margin-top: 15px;
}

/* 
---------------------------------------------
Most Asked Style
--------------------------------------------- 
*/

.most-asked {
  position: relative;
}

.most-asked::before {
  content: url(../images/contact-left.jpg);
  top: -60px;
  left: 0;
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.most-asked::after {
  content: url(../images/contact-left.jpg);
  bottom: -90px;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  width: 103px;
  height: 464px;
  z-index: -1;
}

.most-asked .section-heading {
  margin-bottom: 80px;
}

.most-asked .accordions .accordion {
  border-bottom: 1px solid #eee;
}

.most-asked .accordions .last-accordion {
  border-bottom: none;
}

.most-asked .accordion-head {
  padding: 35px 0px !important;  
  font-size: 22px;
  font-weight: 700;
  color: #2a2a2a;
  cursor: pointer;
  transition: color 200ms ease-in-out;
  
}

@media screen and (min-width: 768px) {
  .most-asked .accordion-head {
    padding: 1rem;
    font-size: 1.2rem;
  }
}

.most-asked .accordion-head .icon {
  float: right;
  transition: transform 200ms ease-in-out;
}

.most-asked .accordion-head.is-open {
  color: #5b03e4;
  border-bottom: none;
}

.most-asked .accordion-head.is-open .icon {
  transform: rotate(45deg);
}

.most-asked .accordion-body {
  padding: 0px;
  overflow: hidden;
  height: 0;
  transition: height 300ms ease-in-out;
  border-bottom: 1px solid #fff;
}

.most-asked .accordion-body > .content p {
  padding: 0px 0px 30px 0px;
  padding-top: 0;
}

.most-asked #free-quote {
  border-radius: 23px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
  padding: 60px;
  margin-left: 45px;
  background-color: #fff;
}

#free-quote .section-heading {
  margin-bottom: 40px;
}

#free-quote input {
  width: 100%;
  height: 46px;
  border-radius: 23px;
  background-color: #f9ebff;
  border: none;
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 15px;
}

#free-quote input::placeholder {
  color: #2a2a2a;
}

#free-quote button {
  border: none;
  height: 46px;
  background-color: #5b03e4;
  width: 100%;
  border-radius: 23px;
  color: #fff;
  transition: all .4s;
}

#free-quote button:hover {
  opacity: 0.8;
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .pre-header {
    display: none;
  }
  .header-area {
    top: 0px;
  }
  .main-banner {
    margin-top: 100px;
  }
  .header-area .main-nav .nav li:nth-child(4) {
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li {
    background: #f7f7f7;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    display: none;
  }
  .main-banner  {
    padding: 185px 0px;
  }
  .main-banner h4 {
    font-size: 36px;
    line-height: 44px;
  }
  .main-banner span {
    margin: 0px 3px 0px 3px;
  }
  .main-banner .main-button a,
  .main-banner .second-button a {
    padding: 12px 20px;
  }
  .projects .item .down-content {
    padding: 25px 15px 15px 15px;
  }
  .projects .item .down-content h4 {
    text-align: center;
    width: 100%;
    font-size: 18px;
  }
  .projects .item .down-content a {
    top: 0;
    right: auto;
    left: 50%;
    transform: translate(-23px, -23px);
  }
}

@media (max-width: 992px) {
  .pre-header .left-info ul li {
    padding-right: 10px;
    margin-right: 10px;
  }
  .pre-header .left-info ul li a {
    font-size: 13px;
  }
  .main-banner .caption {
    padding: 30px !important;
    text-align: center;
  }
  .main-banner p {
    padding-right: 0%;
  }
  .main-banner .line-dec {
    margin: 30px auto 20px auto;
  }
  .projects .owl-nav {
    text-align: center;
    right: auto;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
  }
  .projects .section-heading {
    text-align: center;
  }
  .projects .section-heading .line-dec {
    margin: 0px auto 20px auto;
  }
  .infos .main-content .left-image img {
    display: inline-block;
  }
  .contact-us .contact-us-content,
  .contact-us .contact-us-content #contact-form {
    padding: 30px;
  }
  .contact-us #map {
    margin-bottom: 30px;
  }
  .contact-us-content .more-info .info-item {
    margin-bottom: 45px;
  }
  .page-heading img {
    margin-top: 45px;
  }
  .video-info .section-heading {
    padding: 60px 0px 30px 0px;
  }
  .video-info .skills {
    padding: 0px;
  }
  .happy-clients .naccs .menu div {
    width: 100% !important;
    margin: 15px 0px;
  }
  .happy-clients .naccs .menu {
    padding: 15px;
  }
  .happy-clients ul.nacc li img {
    padding-left: 0px;
    margin-top: 45px;
  }
  .cta h4,
  .cta .main-button {
    text-align: center;
  }
  .happy-steps .steps .item {
    margin-right: 0px;
    border-right: none;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.2);;
  }
  .happy-steps .steps .last-item {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .most-asked #free-quote {
    margin-left: 0px;
    margin-top: 45px;
    padding: 30px;
  }
}

@media (max-width: 1000px) {
  .happy-clients .naccs .menu div {
    width: 24.5%;
    font-size: 15px;
    border-right: none;
  }
}

@media (max-width: 1200px) {
  .services::before {
    top: 60%;
    transform: translateY(-50%);
  }
}

@media (max-width: 1400px) {
  .main-banner .caption {
    background-color: rgba(250, 250, 250, 0.95);
    padding: 60px;
    border-radius: 23px;
  }
}

/* 
---------------------------------------------
New Sections - Sports Tech Redesign
--------------------------------------------- 
*/

/* Service Icons */
.service-item .service-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.service-item:hover .service-icon {
  transform: scale(1.12) rotateZ(5deg);
  box-shadow: 0 8px 25px rgba(91, 3, 228, 0.35);
}

.service-item .service-icon i {
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon i {
  transform: scale(1.15);
}

.service-item p {
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.service-item .learn-more {
  font-size: 14px;
  color: #5b03e4;
  font-weight: 600;
  transition: all .3s;
}

.service-item .learn-more:hover {
  color: #c03afe;
}

.service-item .learn-more i {
  margin-left: 5px;
  font-size: 12px;
  transition: all .3s;
}

.service-item .learn-more:hover i {
  margin-left: 10px;
}

/* Services Full Width Override */
.services-fullwidth {
  position: relative;
  overflow: hidden;
}

.services-fullwidth .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.services-fullwidth .section-heading .line-dec {
  margin: 0 auto 20px auto;
}

/* Sports Management Section */
.sports-management {
  padding: 120px 0px;
  position: relative;
  background-color: #faf5ff;
}

.sports-management .section-heading {
  margin-bottom: 50px;
}

.sports-management .audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.sports-management .audience-list span {
  display: inline-block;
  background-color: #5b03e4;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  padding: 0px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
}

.sports-management .audience-list span:hover {
  background-color: #c03afe;
}

.sports-management .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.sports-management .feature-grid .feature-item {
  background-color: #fff;
  border: 1px solid #f3d7ff;
  border-radius: 15px;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  transition: all .3s;
}

.sports-management .feature-grid .feature-item:hover {
  border-color: #5b03e4;
  color: #5b03e4;
  box-shadow: 0px 0px 15px rgba(91, 3, 228, 0.1);
}

.sports-management .feature-grid .feature-item i {
  display: block;
  font-size: 20px;
  color: #5b03e4;
  margin-bottom: 8px;
}

/* Dashboard Showcase Section */
.dashboard-showcase {
  background-image: url(../images/infos-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 120px 0px;
}

.dashboard-showcase .showcase-content {
  background-color: #fff;
  border-radius: 23px;
  padding: 60px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
}

.dashboard-showcase .showcase-content .section-heading {
  margin-bottom: 30px;
}

.dashboard-showcase .dashboard-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.dashboard-showcase .dashboard-features span {
  display: inline-block;
  background: linear-gradient(135deg, rgba(85,0,227,0.1) 0%, rgba(198,61,255,0.1) 100%);
  border: 1px solid #f3d7ff;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  color: #5b03e4;
  padding: 0px 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all .3s;
}

.dashboard-showcase .dashboard-features span:hover {
  background: linear-gradient(135deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
  color: #fff;
  border-color: transparent;
}

.dashboard-showcase .dashboard-mockup {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 10px 40px rgba(91, 3, 228, 0.15);
  border: 2px solid #f3d7ff;
}

.dashboard-showcase .dashboard-mockup img {
  width: 100%;
  display: block;
}

/* Development Section */
.development-section {
  padding: 120px 0px;
  position: relative;
}

.development-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.development-section .section-heading .line-dec {
  margin: 0 auto 20px auto;
}

/* Digital Marketing Section */
.digital-marketing {
  background-color: #faf5ff;
  padding: 120px 0px;
  position: relative;
}

.digital-marketing .section-heading {
  margin-bottom: 40px;
}

.digital-marketing .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.digital-marketing .service-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f3d7ff;
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.digital-marketing .service-list li:last-child {
  border-bottom: none;
}

.digital-marketing .service-list li i {
  color: #5b03e4;
  margin-right: 12px;
  font-size: 14px;
}

.digital-marketing .metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.digital-marketing .metric-card {
  background-color: #fff;
  border: 1px solid #f3d7ff;
  border-radius: 23px;
  padding: 25px;
  text-align: center;
  transition: all .3s;
}

.digital-marketing .metric-card:hover {
  box-shadow: 0px 0px 15px rgba(91, 3, 228, 0.1);
  border-color: #5b03e4;
}

.digital-marketing .metric-card i {
  font-size: 28px;
  color: #5b03e4;
  margin-bottom: 10px;
}

.digital-marketing .metric-card h5 {
  font-size: 16px;
  color: #2a2a2a;
  margin-top: 5px;
}

/* Why Choose Us Section */
.why-choose {
  padding: 120px 0px;
  position: relative;
}

.why-choose .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose .section-heading .line-dec {
  margin: 0 auto 20px auto;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(90deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
  padding: 80px 0px;
  position: relative;
  z-index: 15;
}

.stats-section .stat-item {
  text-align: center;
  padding: 20px;
}

.stats-section .stat-item .counter {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
}

.stats-section .stat-item .counter-suffix {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.stats-section .stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
}

/* Main CTA Section */
.main-cta {
  background-image: url(../images/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px;
  position: relative;
  z-index: 15;
}

.main-cta h4 {
  font-size: 36px;
  color: #fff;
  line-height: 50px;
  margin-bottom: 20px;
}

.main-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.main-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.main-cta .cta-buttons a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all .3s;
}

.main-cta .cta-buttons a.btn-white {
  background-color: #fff;
  color: #5b03e4;
}

.main-cta .cta-buttons a.btn-white:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.main-cta .cta-buttons a.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.main-cta .cta-buttons a.btn-outline:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

/* Expanded Footer */
.footer-main {
  background-color: #0f172a;
  padding: 70px 0px 30px 0px;
}

.footer-main p {
  padding: 0 !important;
  margin-bottom: 10px !important;
  text-align: left;
}

.footer-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 0 0 !important;
}

.footer-contact-list li {
  margin-bottom: 8px !important;
  color: #cbd5e1 !important;
  font-size: 13.5px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  line-height: 20px !important;
}

.footer-contact-list li i {
  color: #a78bfa !important;
  font-size: 14px !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

.footer-main h5 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-main ul {
  list-style: none;
  padding: 0;
}

.footer-main ul li {
  margin-bottom: 10px;
}

.footer-main ul li a {
  color: #94a3b8;
  font-size: 14px;
  transition: all .3s;
}

.footer-main ul li a:hover {
  color: #c63dff;
  padding-left: 5px;
}

.footer-main .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
}

.footer-main .footer-bottom p {
  color: #64748b;
  text-align: center !important;
  font-size: 13px;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.footer-main .footer-bottom p a {
  color: #94a3b8;
  transition: all .3s;
}

.footer-main .footer-bottom p a:hover {
  color: #c63dff;
}

/* Process Section */
.process-section {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 100px 0px;
}

.process-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.process-section .process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.process-section .process-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 23px;
  padding: 35px 15px 30px 15px;
  transition: all .3s;
  height: 100%;
}

.process-section .process-item:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.process-section .process-item .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  color: #5b03e4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-section .process-item h6 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.process-section .process-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 20px;
  margin: 0;
}

/* Courses Page */
.course-grid {
  margin-top: 30px;
}

.course-card {
  background-color: #fff;
  border: 1px solid #f3d7ff;
  border-radius: 23px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all .4s;
}

.course-card:hover {
  border-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.course-card .course-level {
  display: inline-block;
  background: linear-gradient(135deg, rgba(85,0,227,0.1) 0%, rgba(198,61,255,0.1) 100%);
  color: #5b03e4;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.course-card h4 {
  font-size: 20px;
  color: #2a2a2a;
  margin-bottom: 15px;
  line-height: 28px;
}

.course-card .course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3d7ff;
}

.course-card .course-meta span {
  font-size: 13px;
  color: #afafaf;
  display: flex;
  align-items: center;
}

.course-card .course-meta span i {
  margin-right: 6px;
  color: #5b03e4;
  font-size: 14px;
}

.course-card .enroll-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #5b03e4;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
  width: 100%;
  text-align: center;
}

.course-card .enroll-btn:hover {
  background-color: #c03afe;
  transform: translateY(-2px);
}

/* Internship Section */
.internship-domains {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.internship-domain-card {
  background-color: #fff;
  border: 1px solid #f3d7ff;
  border-radius: 23px;
  padding: 25px;
  text-align: center;
  transition: all .3s;
}

.internship-domain-card:hover {
  border-color: #5b03e4;
  box-shadow: 0px 0px 15px rgba(91, 3, 228, 0.1);
  transform: translateY(-3px);
}

.internship-domain-card i {
  font-size: 28px;
  color: #5b03e4;
  margin-bottom: 12px;
}

.internship-domain-card h6 {
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 700;
}

.internship-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.internship-highlight {
  text-align: center;
  padding: 25px;
  background-color: #fff;
  border-radius: 23px;
  border: 1px solid #f3d7ff;
}

.internship-highlight i {
  font-size: 28px;
  color: #5b03e4;
  margin-bottom: 10px;
}

.internship-highlight h6 {
  font-size: 16px;
  color: #2a2a2a;
  margin-bottom: 5px;
}

.internship-highlight p {
  font-size: 13px;
  margin: 0;
}

/* New Section Responsive */
@media (max-width: 992px) {
  .sports-management .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-section .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard-showcase .showcase-content {
    padding: 30px;
  }
  .main-cta h4 {
    font-size: 28px;
    line-height: 40px;
  }
  .main-cta .cta-buttons {
    justify-content: center;
  }
  .footer-main .col-lg-2 {
    margin-bottom: 30px;
  }
  .internship-domains {
    grid-template-columns: repeat(3, 1fr);
  }
  .internship-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sports-management {
    padding: 80px 0px;
  }
  .sports-management .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .process-section .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-showcase {
    padding: 80px 0px;
  }
  .development-section,
  .digital-marketing,
  .why-choose {
    padding: 80px 0px;
  }
  .digital-marketing .metrics-grid {
    grid-template-columns: 1fr;
  }
  .stats-section .stat-item {
    margin-bottom: 20px;
  }
  .main-cta {
    padding: 60px 0px;
    text-align: center;
  }
  .main-cta .cta-buttons {
    justify-content: center;
  }
  .footer-main {
    padding: 50px 0px 20px 0px;
  }
  .internship-domains {
    grid-template-columns: repeat(2, 1fr);
  }
  .internship-highlights {
    grid-template-columns: 1fr;
  }
  .course-card {
    margin-bottom: 20px;
  }
}

/* ---------------------------------------------
IIITIHAS UNIVERSAL BRANDING & EXTENSIONS
--------------------------------------------- */
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 25px;
  line-height: 1.2;
}

.logo-text span {
  color: #ffe600;
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
}

.background-header .logo-text {
  color: #5b03e4;
  margin-top: 15px;
}

.background-header .logo-text span {
  color: #c03afe;
}

.header-area .main-nav .header-btn {
  margin-top: 25px;
  margin-left: 15px;
}

.header-area .main-nav .header-btn a {
  background: #fff;
  color: #5b03e4;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
}

.header-area .main-nav .header-btn a:hover {
  background: #c03afe;
  color: #fff;
}

.background-header .main-nav .header-btn {
  margin-top: 15px;
}

.background-header .main-nav .header-btn a {
  background: #5b03e4;
  color: #fff;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  width: 250px;
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.interactive-card {
  background: #fff;
  border: 2px solid #f3d7ff;
  border-radius: 23px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none !important;
  display: block;
}

.interactive-card:hover {
  transform: translateY(-5px);
  border-color: #5b03e4;
  box-shadow: 0 10px 25px rgba(91, 3, 228, 0.15);
}

.interactive-card i {
  font-size: 32px;
  color: #5b03e4;
  margin-bottom: 15px;
  display: block;
}

.interactive-card h5 {
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 700;
  margin-bottom: 10px;
}

.interactive-card p {
  font-size: 13px;
  color: #7a7a7a;
  line-height: 20px;
  margin: 0;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.tech-item {
  background: #fff;
  border: 1px solid #f3d7ff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  color: #5b03e4;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: all 0.3s;
}

.tech-item:hover {
  background: #5b03e4;
  color: #fff;
  border-color: #5b03e4;
  transform: translateY(-3px);
}

.portfolio-filters {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-filters ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.portfolio-filters ul li {
  padding: 8px 22px;
  background: #fff;
  border: 1px solid #f3d7ff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  cursor: pointer;
  transition: all 0.3s;
}

.portfolio-filters ul li.active,
.portfolio-filters ul li:hover {
  background: #5b03e4;
  color: #fff;
  border-color: #5b03e4;
}

.career-card {
  background: #fff;
  border: 1px solid #f3d7ff;
  border-radius: 23px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s;
}

.career-card:hover {
  border-color: #5b03e4;
  box-shadow: 0 10px 25px rgba(91,3,228,0.1);
}

.career-card h4 {
  font-size: 20px;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.career-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .interactive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .interactive-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =============================================
   Service Box Animations
   ============================================= */

/* Entrance: Fade-up on load */
@keyframes serviceCardFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered delay classes for service cards */
.service-item:nth-child(1) { animation-delay: 0.05s; }
.service-item:nth-child(2) { animation-delay: 0.15s; }
.service-item:nth-child(3) { animation-delay: 0.25s; }
.service-item:nth-child(4) { animation-delay: 0.35s; }
.service-item:nth-child(5) { animation-delay: 0.45s; }
.service-item:nth-child(6) { animation-delay: 0.55s; }
.service-item:nth-child(7) { animation-delay: 0.65s; }
.service-item:nth-child(8) { animation-delay: 0.75s; }
.service-item:nth-child(9) { animation-delay: 0.85s; }

/* General .service-item hover animation (all pages) */
.service-item {
  opacity: 0;
  transform: translateY(30px);
  animation: serviceCardFadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(91, 3, 228, 0.15) !important;
  border-color: #e0d0fb !important;
}

/* Subtle purple glow ring on hover */
.service-item::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(91, 3, 228, 0.1), rgba(198, 61, 255, 0.1));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.service-item:hover::after {
  opacity: 1;
}

/* Live Admin Vacancies and Courses Cards Styling */
#adminPublishedInternshipsList > div > div,
#adminPublishedCoursesList > div > div {
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid #f0e6ff !important;
  box-shadow: 0 10px 35px rgba(112, 18, 206, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#adminPublishedInternshipsList > div > div:hover,
#adminPublishedCoursesList > div > div:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 45px rgba(112, 18, 206, 0.18) !important;
  border-color: #c03afe !important;
}

.tech-item:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(91, 3, 228, 0.12);
}

/* Normal Clean Corporate Image Shape */
.img-normal-shape,
.img-blob-shape-1,
.img-blob-shape-2,
.img-blob-shape-3,
.img-blob-shape-4 {
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  object-fit: cover !important;
  display: block !important;
  width: 100% !important;
}

.img-normal-shape:hover,
.img-blob-shape-1:hover,
.img-blob-shape-2:hover,
.img-blob-shape-3:hover,
.img-blob-shape-4:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 45px rgba(112, 18, 206, 0.25) !important;
  border-radius: 20px !important;
}