/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

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

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

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


.dark-background {
  position: relative;
  background-color: #000;
  /* or image */
}

.dark-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* darkness level */
  z-index: 0;
}

.dark-background .container {
  position: relative;
  z-index: 1;
}

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

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  width: 150px;
  margin-right: 8px;
  padding: 10px;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .btn-getstarted1 {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #00ffb3;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 180px;
  background: linear-gradient(135deg, #000000cd, #000000b8);
  background-repeat: no-repeat;
  background-size: cover;
  background: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000000b0, #000200bb);
  pointer-events: none;
  z-index: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h4 {
    font-size: 1.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h4 {
    font-size: 1.15rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 800px;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# MONSOON CYBER SUNDOWN - LIGHT ABOUT SECTION
--------------------------------------------------------------*/

.about {
  position: relative;
  overflow: hidden;
  padding: 120px 0;

  background:
    radial-gradient(circle at top left,
      rgba(0, 255, 170, 0.08),
      transparent 28%),
    radial-gradient(circle at bottom right,
      rgba(0, 140, 255, 0.08),
      transparent 35%),
    linear-gradient(180deg,
      #f4fbff 0%,
      #eef7ff 45%,
      #f8fcff 100%);
}

/* Cyber Rain Grid */
.about::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 180, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 255, 0.05) 1px, transparent 1px);

  background-size: 55px 55px;

  mask-image: radial-gradient(circle at center,
      rgba(0, 0, 0, 1) 30%,
      transparent 90%);

  pointer-events: none;
  opacity: 0.8;
}

/* Rain Glow Orb */
.about::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(0, 212, 255, 0.18),
      rgba(0, 255, 170, 0.08),
      transparent 70%);

  top: -220px;
  right: -120px;

  filter: blur(35px);

  animation: monsoonGlow 8s ease-in-out infinite;
}

@keyframes monsoonGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.about .container {
  position: relative;
  z-index: 5;
}

/*--------------------------------------------------------------
# Floating Rain Lines
--------------------------------------------------------------*/

.about-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.about-rain span {
  position: absolute;
  width: 2px;
  height: 120px;

  background:
    linear-gradient(to bottom,
      transparent,
      rgba(0, 212, 255, 0.45),
      transparent);

  animation: rainFall linear infinite;
}

.about-rain span:nth-child(1) {
  left: 10%;
  animation-duration: 6s;
}

.about-rain span:nth-child(2) {
  left: 22%;
  animation-duration: 8s;
  animation-delay: 1s;
}

.about-rain span:nth-child(3) {
  left: 38%;
  animation-duration: 7s;
}

.about-rain span:nth-child(4) {
  left: 55%;
  animation-duration: 9s;
  animation-delay: 2s;
}

.about-rain span:nth-child(5) {
  left: 72%;
  animation-duration: 6s;
}

.about-rain span:nth-child(6) {
  left: 88%;
  animation-duration: 8s;
  animation-delay: 1s;
}

@keyframes rainFall {
  0% {
    transform: translateY(-150px);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(1200px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.about .about-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 22px;
  border-radius: 60px;

  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.14);

  color: #008cff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 24px;

  box-shadow:
    0 0 20px rgba(0, 140, 255, 0.08);
}

.about .about-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;

  margin-bottom: 24px;
  text-transform: uppercase;

  background:
    linear-gradient(90deg,
      #07111f,
      #008cff,
      #00b894);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about .about-subtitle {
  max-width: 780px;
  margin: auto;

  color: rgba(7, 17, 31, 0.75);

  font-size: 1.05rem;
  line-height: 1.9;
}

/*--------------------------------------------------------------
# Main Glass Card
--------------------------------------------------------------*/

.about-content-box {
  position: relative;
  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.68);

  backdrop-filter: blur(18px);

  padding: 55px;
  border-radius: 30px;

  border: 1px solid rgba(0, 212, 255, 0.12);

  box-shadow:
    0 10px 50px rgba(0, 0, 0, 0.06),
    0 0 40px rgba(0, 212, 255, 0.04);
}

/* Animated Border */
.about-content-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;

  background:
    linear-gradient(135deg,
      rgba(0, 212, 255, 0.5),
      rgba(0, 255, 170, 0.2),
      transparent 70%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* Moving Rain Reflection */
.about-content-box::after {
  content: "";
  position: absolute;

  width: 220px;
  height: 500px;

  background:
    linear-gradient(to bottom,
      transparent,
      rgba(255, 255, 255, 0.28),
      transparent);

  top: -40%;
  left: -20%;

  transform: rotate(25deg);

  animation: rainReflection 8s linear infinite;
}

@keyframes rainReflection {
  0% {
    transform: translateX(-180%) rotate(25deg);
  }

  100% {
    transform: translateX(700%) rotate(25deg);
  }
}

/*--------------------------------------------------------------
# Paragraphs
--------------------------------------------------------------*/

.about-content-box p {
  font-size: 1rem;
  line-height: 2;

  color: rgba(7, 17, 31, 0.75);

  margin-bottom: 24px;
}

/*--------------------------------------------------------------
# Highlights
--------------------------------------------------------------*/

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 45px 0;
}

.highlight-item {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 22px 24px;
  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(0, 140, 255, 0.08);

  transition: all 0.4s ease;

  backdrop-filter: blur(10px);
}

.highlight-item:hover {
  transform: translateY(-8px);

  border-color: rgba(0, 212, 255, 0.25);

  background:
    linear-gradient(145deg,
      rgba(0, 212, 255, 0.08),
      rgba(0, 255, 170, 0.05));

  box-shadow:
    0 12px 30px rgba(0, 140, 255, 0.08);
}

/* Side Accent */
.highlight-item::before {
  content: "";
  position: absolute;

  left: 0;
  top: 18%;

  width: 4px;
  height: 64%;

  border-radius: 20px;

  background:
    linear-gradient(to bottom,
      #00b894,
      #008cff);
}

.highlight-item i {
  font-size: 1.3rem;
  color: #008cff;

  width: 50px;
  height: 50px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(0, 140, 255, 0.08);

  border: 1px solid rgba(0, 140, 255, 0.10);
}

.highlight-item span {
  font-weight: 700;
  color: #07111f;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Footer Text
--------------------------------------------------------------*/

.about-footer-text {
  position: relative;

  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 600;

  color: #07111f;

  padding: 24px 28px;
  margin-top: 35px;

  border-radius: 18px;

  background:
    linear-gradient(145deg,
      rgba(0, 212, 255, 0.06),
      rgba(0, 255, 170, 0.04));

  border: 1px solid rgba(0, 140, 255, 0.10);
}

.about-footer-text::before {
  content: "";
  position: absolute;

  left: 0;
  top: 20%;

  width: 5px;
  height: 60%;

  border-radius: 20px;

  background:
    linear-gradient(to bottom,
      #00b894,
      #008cff);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 992px) {

  .about {
    padding: 100px 0;
  }

  .about .about-title {
    font-size: 2.5rem;
  }

  .about-content-box {
    padding: 38px;
  }
}

@media (max-width: 768px) {

  .about {
    padding: 85px 0;
  }

  .about .about-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .about .about-subtitle {
    font-size: 0.98rem;
  }

  .about-content-box {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-item {
    padding: 18px;
  }

  .highlight-item span {
    font-size: 14px;
  }

  .about-footer-text {
    padding: 20px;
    font-size: 0.96rem;
  }
}

/* =======================================================
   CYBER INDUSTRIES SECTION - PREMIUM LIGHT THEME
======================================================= */

#cyber-industries {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(180deg,
      #f4f9ff 0%,
      #edf4fb 100%);

  overflow: hidden;
}

/* =======================================================
   BACKGROUND EFFECTS
======================================================= */

#cyber-industries::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -180px;
  right: -150px;

  background: radial-gradient(circle,
      rgba(0, 153, 255, 0.12),
      transparent 70%);

  z-index: 0;
}

#cyber-industries::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  bottom: -180px;
  left: -150px;

  background: radial-gradient(circle,
      rgba(0, 255, 255, 0.10),
      transparent 70%);

  z-index: 0;
}

/* =======================================================
   SECTION TITLE
======================================================= */

.cyber-industries-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 75px;
}

.cyber-industries-title .cyber-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 20px;
  border-radius: 50px;

  background: rgba(0, 140, 255, 0.08);
  border: 1px solid rgba(0, 140, 255, 0.15);

  color: #008cff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.cyber-industries-title .cyber-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c3ff;
  box-shadow: 0 0 10px #00c3ff;
}

.cyber-industries-title h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: #081120;

  margin-bottom: 20px;
}

.cyber-industries-title h2 span {
  color: #008cff;
}

.cyber-industries-title p {
  max-width: 760px;
  margin: auto;

  color: #617181;
  font-size: 17px;
  line-height: 1.8;
}

/* =======================================================
   INDUSTRY CARD
======================================================= */

.cyber-industry-card {
  position: relative;

  height: 100%;

  padding: 34px 30px;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid rgba(0, 119, 255, 0.08);

  border-radius: 24px;

  overflow: hidden;

  transition: all 0.4s ease;

  backdrop-filter: blur(10px);

  box-shadow:
    0 10px 30px rgba(12, 31, 53, 0.05);
}

/* TOP GLOW LINE */

.cyber-industry-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      #00c3ff,
      #2563eb);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s ease;
}

.cyber-industry-card:hover::before {
  transform: scaleX(1);
}

.cyber-industry-card:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 140, 255, 0.18);

  box-shadow:
    0 20px 45px rgba(0, 102, 255, 0.10);
}

/* =======================================================
   ICON BOX
======================================================= */

.cyber-icon {
  width: 72px;
  height: 72px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;

  background:
    linear-gradient(135deg,
      #00bfff,
      #2563eb);

  position: relative;

  box-shadow:
    0 10px 25px rgba(37, 99, 235, 0.22);
}

.cyber-icon::after {
  content: "";

  position: absolute;
  inset: 2px;

  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cyber-icon i {
  font-size: 30px;
  color: #fff;
}

/* =======================================================
   CONTENT
======================================================= */

.cyber-content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;

  color: #081120;

  margin-bottom: 14px;
}

.cyber-content span {
  display: inline-block;

  padding: 7px 14px;
  border-radius: 30px;

  background: rgba(0, 140, 255, 0.08);

  color: #008cff;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =======================================================
   RESPONSIVE
======================================================= */

@media (max-width: 991px) {

  .cyber-industries-title h2 {
    font-size: 42px;
  }

}

@media (max-width: 767px) {

  #cyber-industries {
    padding: 80px 0;
  }

  .cyber-industries-title {
    margin-bottom: 50px;
  }

  .cyber-industries-title h2 {
    font-size: 32px;
  }

  .cyber-industries-title p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cyber-industry-card {
    padding: 28px 24px;
  }

  .cyber-content h3 {
    font-size: 19px;
  }

}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

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

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

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

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

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

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

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

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

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


#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  z-index: -1;
  /* filter: blur(2px); */
  /* filter: contrast(130%); */
}


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

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

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

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

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

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

/* awards */

:root {
  --space: 1rem;
  --bg: #09090b;
  --fg: #e3e3e3;
  --surface-1: #101012;
  --surface-2: #27272a;
  --surface-3: #52525b;
  --ease-out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

.awards {
  background: linear-gradient(0deg, #000000b1, #000000b1), url(/assets/img/award-bg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.awards h2 {
  background-image: linear-gradient(to right, #c1bb84 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #c1bb84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 600;
  text-align: center;
  /* filter: drop-shadow(0 0 3px #000000); */
  font-size: 48px;
  /* text-transform: uppercase; */
  z-index: 2;
  position: relative;
  padding-bottom: 0px;
  filter: brightness(130%);
}

.awards p {
  background-image: linear-gradient(to right, #c1bb84 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #c1bb84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  /* font-weight: 700; */
  text-align: center;
  /* filter: drop-shadow(0 0 3px #000000); */
  font-size: 16px;
  /* text-transform: uppercase; */
  z-index: 2;
  position: relative;
  padding-bottom: 0px;
  filter: brightness(130%);
}

.frborder {
  width: 240px;
  height: 210px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff7ad;
  position: relative;
  margin-bottom: 40px;
}

.boxescolor n {
  width: 50px;
  height: 50px;
  border-left: 3px solid #fff7ad;
  border-top: 3px solid #fff7ad;
  position: absolute;
  display: block;
  z-index: 9;
  top: 0;
  left: 0;
  transition: all ease-in-out 1s;
}

.boxescolor m {
  width: 50px;
  height: 50px;
  border-right: 3px solid #fff7ad;
  border-bottom: 3px solid #fff7ad;
  position: absolute;
  display: block;
  float: right;
  top: 160px;
  left: 190px;
  z-index: 9;
  transition: all ease-in-out 1s;
}

.frborder:hover .boxescolor n {
  width: 20px;
  height: 20px;
  top: 40px;
  left: 40px;
  transition: all ease-in-out 1s;
  transition-delay: 1s;
}

.frborder:hover .boxescolor m {
  width: 20px;
  height: 20px;
  top: 150px;
  left: 180px;
  transition: all ease-in-out 1s;
  transition-delay: 1s;
}

.frankfir {
  width: 230px;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.frimg {
  width: 230px;
  height: 100%;
  background: linear-gradient(0deg, #0a193895, #0a193895), url(/assets/images/awards/trophy.jpg) center;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all ease-in-out 1.5s;
  transition-delay: .4s;
  background-repeat: no-repeat;
  background-size: cover;
}

.frborder:hover .frimg {
  margin-top: -220px;
  transition: all ease-in-out 1.5s;
}

.frankfir frback1 {
  width: 230px;
  height: 0px;
  background-color: #000;
  background: url(https://64.media.tumblr.com/209f7281639b11f05a2e34f78fd6322c/tumblr_p1zylkTNuO1wtj4p6o1_500.gif);
  opacity: 0.7;
  position: absolute;
  z-index: 4;
  top: 0px;
  left: 0px;
  transition: all ease-in-out 1.5s;
  transition-delay: .4s;
}

.frborder:hover .frankfir frback1 {
  height: 200px;
  transition: all ease-in-out 1s;
  transition-delay: .5s;
}

.frankfir txt1 {
  width: 225px;
  font-family: fira code;
  font-size: 7px;
  text-transform: uppercase;
  font-weight: normal;
  color: #bbb;
  font-style: italic;
  padding: 2px;
  line-height: 10px;
  letter-spacing: 2px;
  position: relative;
  /* top: 150px;
  left: 5px; */
  text-align: center;
  z-index: 7;
  transition: all ease-in-out 1s;
  transition-delay: 1s;
}

.frankfir txt1 n {
  font-family: Fortuner;
  font-style: normal;
  display: block;
  font-size: 18px;
  color: #fff7ad;
  margin-top: -20px;
  line-height: 30px;
  position: relative;
  z-index: 6;
}

.frankfir txt1 t {
  position: relative;
  z-index: 7;
}

.frborder:hover .frankfir txt1 {
  filter: blur(5px);
  opacity: 0;
  transition: all ease-in-out 1s;
}

.frankfir txt2 {
  font-family: fira code;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #bbb;
  position: relative;
  /* top: 0; */
  /* left: 0; */
  width: 90%;
  text-align: center;
  display: flex;
  justify-content: center;
  top: 100px;
  left: 12px;
  z-index: 7;
  filter: blur(5px);
  opacity: 0;
  transition: all ease-in-out 1s;
}

.frankfir txt2 b {
  animation-name: color;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes color {
  0% {
    color: #222;
  }

  50% {
    color: rgb(125, 54, 54);
  }

  100% {
    color: #222;
  }
}

.frborder:hover .frankfir txt2 {
  opacity: 1;
  filter: blur(0px);
  transition: all ease-in-out 1s;
  transition-delay: 1s;
}

.venue-img {
  background: #152d5e;
  padding: 30px;
}

/*--------------------------------------------------------------
# Speakers Section - Executive Cyber Theme
--------------------------------------------------------------*/

#speakers {
  position: relative;
  padding: 110px 0;
  background: #07111f;
  overflow: hidden;
}

/* Subtle Grid Pattern */

#speakers::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 50px 50px;

  opacity: 0.25;
}

/* Gradient Overlay */

#speakers::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(0, 180, 255, 0.12),
      transparent 30%),

    radial-gradient(circle at bottom left,
      rgba(0, 255, 170, 0.08),
      transparent 30%);
}

/* Container */

#speakers .container {
  position: relative;
  z-index: 2;
}

/* Section Title */

#speakers .section-title {
  text-align: center;
  margin-bottom: 70px;
}

#speakers .section-tag {
  display: inline-block;

  padding: 8px 18px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.03);

  border-radius: 40px;

  color: #00ffb3;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 22px;
}

#speakers .section-title h2 {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

#speakers .section-title p {
  max-width: 760px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.68);

  font-size: 1rem;
  line-height: 1.9;
}

/* Speaker Cards */

.speaker-card {
  position: relative;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  overflow: hidden;

  transition: all 0.35s ease;

  height: 100%;
}

.speaker-card:hover {
  transform: translateY(-8px);

  border-color: rgba(0, 212, 255, 0.35);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.28);
}

/* Image */

.speaker-image {
  position: relative;
  overflow: hidden;
  height: 290px;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-image img {
  transform: scale(1.05);
}

/* Content */

.speaker-content {
  padding: 24px;
}

.speaker-tag {
  display: inline-block;

  color: #00ffb3;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.speaker-content h3 {
  color: #ffffff;

  font-size: 1.2rem;
  font-weight: 700;

  line-height: 1.5;

  margin-bottom: 12px;
}

.speaker-role {
  color: rgba(255, 255, 255, 0.72);

  font-size: 0.92rem;
  line-height: 1.7;

  margin-bottom: 16px;

  min-height: 50px;
}

.speaker-company {
  color: #ffffff;

  font-size: 0.9rem;
  font-weight: 600;

  padding-top: 16px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */

@media (max-width: 992px) {

  #speakers {
    padding: 85px 0;
  }

  #speakers .section-title h2 {
    font-size: 2.5rem;
  }

  .speaker-image {
    height: 260px;
  }
}

@media (max-width: 576px) {

  #speakers {
    padding: 70px 0;
  }

  #speakers .section-title {
    margin-bottom: 50px;
  }

  #speakers .section-title h2 {
    font-size: 2rem;
  }

  #speakers .section-title p {
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 0 10px;
  }

  .speaker-image {
    height: 240px;
  }

  .speaker-content {
    padding: 20px;
  }

  .speaker-content h3 {
    font-size: 1.05rem;
  }

  .speaker-role {
    min-height: auto;
    font-size: 0.85rem;
  }
}

/* ==================================================
   CYBER SPEAKER BUTTON
================================================== */

.cyber-speaker-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cyber-speaker-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #ffffff;
  background: rgba(8, 20, 32, 0.88);

  border: 1px solid rgba(0, 255, 255, 0.25);

  overflow: hidden;
  transition: all 0.35s ease;

  box-shadow:
    0 0 18px rgba(0, 255, 255, 0.08),
    inset 0 0 15px rgba(0, 255, 255, 0.03);

  backdrop-filter: blur(10px);
}

.cyber-speaker-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(0, 255, 255, 0.12),
      transparent);
  transform: translateX(-100%);
  transition: 0.6s ease;
}

.cyber-speaker-btn:hover::before {
  transform: translateX(100%);
}

.cyber-speaker-btn:hover {
  transform: translateY(-4px);

  border-color: rgba(0, 255, 255, 0.6);

  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.2),
    0 0 50px rgba(0, 255, 255, 0.08);

  color: #00ffff;
}

.cyber-speaker-btn .arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 255, 255, 0.08);

  border: 1px solid rgba(0, 255, 255, 0.2);

  transition: all 0.35s ease;
}

.cyber-speaker-btn:hover .arrow {
  transform: translateX(4px);
  background: rgba(0, 255, 255, 0.18);
}

.cyber-speaker-btn i {
  font-size: 15px;
}

/* register button  */

.btn-getstarted1 {
  padding: 12px 24px;
  background-color: #03e7a2;

  color: #fff;
  /* border: 2px solid rgb(0, 3, 3); */
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;

}

.btn-getstarted1:hover {
  box-shadow: 0 0 20px #767465;
  background-color: #008cff;
  color: #ffffff;
}

#contact-submit {
  padding: 12px 24px;
  background-color: #60deda;
  color: #fff;
  border-color: white;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contact-submit:hover {
  box-shadow: 0 0 20px #8bc146;
  background-color: #8bc146;
  color: #ffffff;
}




.pricing-head {
  color: #000000;
}

.pricing-card {
  background: #111;
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  border: 1px solid #333;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #f5b041;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: bold;
  color: #f5b041;
}

.highlighted {
  background: linear-gradient(135deg, #202020, #2c2c2c);
  border: 2px solid #f5b041 !important;
}

/* ===============================
   MOBILE RESPONSIVE LAYOUTS
   =============================== */
@media (max-width: 768px) {

  /* SPEAKER CARDS – 2 or 3 per row */
  .speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  @media (max-width: 480px) {
    .speakers-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* INDUSTRY FOCUS – 3 per row */
  .industry-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  /* WHO SHOULD ATTEND – 2 columns */
  .who-attend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* WHO SHOULD SPONSOR – 2 per row */
  .who-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* WHY SHOULD YOU SPONSOR – 2 per row */
  .why-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* REGISTRATION PRICE – ALL CARDS IN SINGLE ROW (HORIZONTAL SCROLL) */
  .registration-price-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .registration-price-grid .price-card {
    min-width: 260px;
    flex-shrink: 0;
  }

  /* AWARDS – 3 per row */
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* =========================================================
   MOBILE RESPONSIVE OVERRIDES (BOOTSTRAP SAFE)
   Add this at the VERY END of your CSS file
   ========================================================= */

@media (max-width: 767px) {

  /* -----------------------------
     Common Bootstrap Reset
     ----------------------------- */
  .row {
    --bs-gutter-x: 12px;
  }

  .row>[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* =====================================================
     SPEAKERS – 2 CARDS PER ROW
     ===================================================== */
  .speakers .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* =====================================================
     INDUSTRY FOCUS – 3 IN A ROW
     ===================================================== */
  #features .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .features-item h3 {
    font-size: 13px;
    line-height: 1.3;
  }


  /* =====================================================
     WHO SHOULD SPONSOR / WHY SPONSOR – 2 PER ROW
     ===================================================== */
  #features-cards .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }


}

/* whatsapp-floating  */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  /* distance from bottom */
  left: 20px;
  /*  moved to left */
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa00;
  /* WhatsApp green */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.whatsapp-float a img {
  width: 45px;
  height: 45px;
}

/* Hover Effect */
.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20b358;
}

/* Optional: Glow Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float a {
  animation: pulse 2s infinite;
}


/* ===============================
/* ===============================
   HERO LOGO SIZING ADJUSTMENT
=================================*/

/* CTRLS Partner Logo (Increase Size) */
.ctrl-logo {
  max-height: 280px;
  /* Increase this if needed */
  width: auto;
}

/* Manufacturing Main Logo (Reduce Slightly) */
#hero .hero-image img:not(.ctrl-logo) {
  max-height: 300px;
  /* Reduce from current size */
  width: auto;
}

/* Responsive Adjustments */
@media (max-width: 991px) {

  .ctrl-logo {
    max-height: 90px;
  }

  #hero .hero-image img:not(.ctrl-logo) {
    max-height: 90px;
  }

}




/* SECTION */
.partner {
  background: #f8fafc;
  padding: 90px 0;
}

/* TITLE */
.section-title h2 {
  font-weight: 700;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 70px;
  letter-spacing: 1px;
}

/* HEAD TAG (LIKE IMAGE LABELS) */
.head {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* GROUP SPACING */
.partner-group {
  margin-bottom: 60px;
}

/* LOGO BOX BASE */
.logo-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

/* GLASS HOVER EFFECT */
.logo-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  opacity: 0;
  transition: 0.4s;
}

.logo-box:hover::before {
  opacity: 1;
}

/* IMAGE */
.logo-box img {
  max-height: 60px;
  width: auto;
  transition: 0.3s ease;
}

/* LINK FULL CLICK */
.logo-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

/* HOVER BASE */
.logo-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* SIZE VARIANTS */
.large {
  height: 160px;
  max-width: 340px;
}

.medium {
  height: 130px;
}

.small {
  height: 110px;
}

/* 🔥 TIER-BASED HOVER COLORS */
.partner-group:nth-child(2) .logo-box:hover {
  /* Diamond */
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

.partner-group:nth-child(3) .logo-box:hover {
  /* Gold */
  box-shadow: 0 20px 50px rgba(234, 179, 8, 0.3);
}

.partner-group:nth-child(4) .logo-box:hover {
  /* Silver */
  box-shadow: 0 20px 40px rgba(148, 163, 184, 0.35);
}

.partner-group:nth-child(5) .logo-box:hover {
  /* Exhibit */
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.3);
}

.partner-group:nth-child(6) .logo-box:hover {
  /* Media */
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .partner {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .logo-box {
    padding: 20px;
  }
}

/* Fix Exhibit width */
.exhibit-box {
  max-width: 260px;
  width: 100%;
}

.hero-headline {
  position: relative;
  z-index: 2;
}

.main-headline {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.main-headline span {
  color: #00d4ff;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 992px) {
  .main-headline {
    font-size: 1.35rem;
    padding: 0 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .main-headline {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding: 0 15px;
  }
}


/* partner page css  */
/* =======================================================
CYBER PARTNERS SECTION
======================================================= */

.cyber-allies-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 170, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0, 140, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #071018 0%, #0b1620 50%, #050b12 100%);
  overflow: hidden;
}

/* GRID OVERLAY */

.cyber-allies-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.25;
  pointer-events: none;
}

/* HEADER */

.cyber-allies-header {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  z-index: 2;
}

.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(0, 255, 170, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.25);
  color: #00ffb3;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.cyber-allies-header h2 {
  color: #ffffff;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cyber-allies-header p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 780px;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
}

/* PARTNER CARD */

.cyber-partner-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 45px;
  padding: 45px;
  border-radius: 28px;

  background:
    linear-gradient(145deg,
      rgba(12, 24, 35, 0.96),
      rgba(8, 16, 24, 0.96));

  border: 1px solid rgba(0, 255, 170, 0.08);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  overflow: hidden;
  transition: all 0.45s ease;
  z-index: 2;
}

/* GLOW */

.cyber-partner-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(0, 255, 170, 0.08);
  filter: blur(90px);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  transition: 0.5s ease;
}

.cyber-partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 170, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(0, 255, 170, 0.08);
}

.cyber-partner-card:hover::before {
  transform: scale(1.3);
}

/* LEFT */

.cyber-partner-brand {
  min-width: 280px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cyber-partner-brand img {
  max-width: 220px;
  width: 100%;
  object-fit: contain;
  filter: brightness(1.1);
  transition: all 0.4s ease;
}

.cyber-partner-card:hover .cyber-partner-brand img {
  transform: scale(1.04);
}

/* TIER */

.partner-tier {
  display: inline-block;
  margin-bottom: 28px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tier-diamond {
  color: #7cecff;
  background: rgba(124, 236, 255, 0.08);
  border: 1px solid rgba(124, 236, 255, 0.2);
}

.tier-gold {
  color: #ffd36b;
  background: rgba(255, 211, 107, 0.08);
  border: 1px solid rgba(255, 211, 107, 0.2);
}

.tier-silver {
  color: #d2d7df;
  background: rgba(210, 215, 223, 0.08);
  border: 1px solid rgba(210, 215, 223, 0.2);
}

.tier-associate {
  color: #00ffb3;
  background: rgba(0, 255, 179, 0.08);
  border: 1px solid rgba(0, 255, 179, 0.2);
}

/* CONTENT */

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

.cyber-partner-content h3 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cyber-partner-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* BUTTON */

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00ffb3;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.partner-link:hover {
  gap: 16px;
  color: #ffffff;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .cyber-partner-card {
    flex-direction: column;
    text-align: center;
    gap: 35px;
    padding: 35px;
  }

  .cyber-partner-brand {
    min-width: 100%;
  }

  .cyber-allies-header h2 {
    font-size: 40px;
  }
}

@media(max-width:767px) {

  .cyber-allies-section {
    padding: 90px 0;
  }

  .cyber-allies-header h2 {
    font-size: 32px;
  }

  .cyber-allies-header p {
    font-size: 15px;
  }

  .cyber-partner-card {
    padding: 28px;
    border-radius: 24px;
  }

  .cyber-partner-content h3 {
    font-size: 26px;
  }

  .cyber-partner-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .cyber-partner-brand img {
    max-width: 170px;
  }
}



/* COMING SOON CARD */

.cyber-coming-soon-card {
  position: relative;
  text-align: center;
  padding: 90px 40px;
  border-radius: 30px;

  background:
    linear-gradient(145deg,
      rgba(12, 24, 35, 0.95),
      rgba(7, 14, 20, 0.98));

  border: 1px solid rgba(0, 255, 170, 0.12);

  overflow: hidden;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 255, 170, 0.05);
}

.cyber-coming-soon-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(0, 255, 170, 0.08);
  filter: blur(120px);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.coming-icon {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  margin: auto auto 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(145deg,
      rgba(0, 255, 170, 0.15),
      rgba(0, 140, 255, 0.12));

  border: 1px solid rgba(0, 255, 170, 0.2);
}

.coming-icon i {
  font-size: 42px;
  color: #00ffb3;
}

.cyber-coming-soon-card h3 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cyber-coming-soon-card p {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.9;
}

@media(max-width:767px) {

  .cyber-coming-soon-card {
    padding: 65px 24px;
  }

  .cyber-coming-soon-card h3 {
    font-size: 28px;
  }

  .cyber-coming-soon-card p {
    font-size: 15px;
  }

}


/*================================================
  CYBER ATTENDEES SECTION
================================================*/

.cyber-attendees-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 170, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0, 140, 255, 0.08), transparent 35%),
    #07111f;
}

/* Animated Grid Background */
.cyber-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 170, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
  pointer-events: none;
}

/* Section Header */
.cyber-section-header {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 170, 0.25);
  background: rgba(0, 255, 170, 0.06);
  color: #00ffb3;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.cyber-section-header h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.cyber-section-header p {
  max-width: 760px;
  margin: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

/* Main Card */
.cyber-attendee-card {
  position: relative;
  background: rgba(10, 18, 35, 0.92);
  border: 1px solid rgba(0, 255, 170, 0.12);
  border-radius: 28px;
  padding: 45px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 30px rgba(0, 255, 170, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Glow Border */
.cyber-attendee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(0, 255, 170, 0.4),
      rgba(0, 140, 255, 0.15),
      transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.cyber-role-header h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  padding-left: 18px;
}

.cyber-role-header h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 34px;
  border-radius: 20px;
  background: linear-gradient(to bottom, #00ffb3, #008cff);
}

/* Role Items */
.cyber-role-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 18px;
  margin-bottom: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.35s ease;
}

.cyber-role-item:hover {
  transform: translateY(-4px);
  background: rgba(0, 255, 170, 0.08);
  border-color: rgba(0, 255, 170, 0.25);
}

.cyber-role-item i {
  font-size: 20px;
  color: #00ffb3;
  margin-top: 2px;
}

.cyber-role-item span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

/* Right Visual Box */
.cyber-visual-box {
  position: relative;
  padding: 70px 40px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg,
      rgba(0, 255, 170, 0.08),
      rgba(0, 140, 255, 0.08));
  border: 1px solid rgba(0, 255, 170, 0.15);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cyber-core {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffb3, #008cff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  box-shadow:
    0 0 40px rgba(0, 255, 170, 0.45);
}

.cyber-core i {
  color: #07111f;
  font-size: 52px;
}

.cyber-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 170, 0.12);
}

.cyber-ring-1 {
  width: 260px;
  height: 260px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.cyber-ring-2 {
  width: 360px;
  height: 360px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.cyber-visual-box h4 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 20px;
}

.cyber-visual-box p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  max-width: 360px;
  margin: auto;
}

/* Responsive */
@media (max-width: 991px) {

  .cyber-section-header h2 {
    font-size: 38px;
  }

  .cyber-attendee-card {
    padding: 30px;
  }

  .cyber-visual-box {
    min-height: auto;
    margin-top: 20px;
    padding: 60px 30px;
  }

}

@media (max-width: 767px) {

  .cyber-attendees-section {
    padding: 90px 0;
  }

  .cyber-section-header h2 {
    font-size: 30px;
  }

  .cyber-role-header h3 {
    font-size: 22px;
  }

  .cyber-role-item {
    padding: 14px;
  }

  .cyber-visual-box h4 {
    font-size: 28px;
  }

}

/* =========================================
   CYBER SPONSOR SECTION
========================================= */

.cyber-sponsor-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left,
      rgba(0, 255, 170, 0.06),
      transparent 30%),
    radial-gradient(circle at bottom right,
      rgba(0, 140, 255, 0.06),
      transparent 35%),
    #f4f8fc;
}

/* Grid Background */
.cyber-sponsor-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 140, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Header */
.cyber-sponsor-header {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.cyber-sponsor-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(0, 140, 255, 0.08);
  border: 1px solid rgba(0, 140, 255, 0.18);
  color: #0077ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.cyber-sponsor-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #081120;
  margin-bottom: 18px;
}

.cyber-sponsor-header p {
  max-width: 720px;
  margin: auto;
  color: #5e6b7a;
  font-size: 17px;
  line-height: 1.8;
}

/* Sponsor Cards */
.cyber-sponsor-card {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 140, 255, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04);
}

/* Top Glow Border */
.cyber-sponsor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 80px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(to right, #00ffb3, #0077ff);
}

.cyber-sponsor-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 170, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 30px rgba(0, 255, 170, 0.08);
}

/* Icon */
.cyber-sponsor-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background:
    linear-gradient(135deg,
      rgba(0, 255, 170, 0.12),
      rgba(0, 140, 255, 0.12));
  border: 1px solid rgba(0, 255, 170, 0.15);
}

.cyber-sponsor-icon i {
  font-size: 34px;
  color: #0077ff;
}

/* Card Title */
.cyber-sponsor-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #081120;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* Card Text */
.cyber-sponsor-card p {
  color: #5d6775;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {

  .cyber-sponsor-section {
    padding: 90px 0;
  }

  .cyber-sponsor-header h2 {
    font-size: 38px;
  }

}

@media (max-width: 767px) {

  .cyber-sponsor-header h2 {
    font-size: 30px;
  }

  .cyber-sponsor-card {
    padding: 32px 24px;
  }

  .cyber-sponsor-card h4 {
    font-size: 20px;
  }

}

/* ============================
CYBER ATTEND SECTION
============================ */

.cyber-attend {
  position: relative;
  padding: 110px 0;
  background: #05070d;
  color: #e6f1ff;
  overflow: hidden;
}

/* GRID BG */
.cyber-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  pointer-events: none;
}

/* HEADER */
.cyber-section-header {
  margin-bottom: 70px;
}

.cyber-section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.cyber-section-header p {
  margin-top: 12px;
  color: rgba(230, 241, 255, 0.7);
  font-size: 15px;
}

/* CARD */
.cyber-card {
  background: rgba(10, 18, 35, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 16px;
  padding: 24px 22px;
  margin-bottom: 18px;
  transition: 0.3s ease;
  position: relative;
}

/* hover glow */
.cyber-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.12);
}

/* TITLE */
.cyber-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #00e5ff;
  margin-bottom: 8px;
}

/* TEXT */
.cyber-card p {
  font-size: 14px;
  color: rgba(230, 241, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* SPECIAL CARD */
.cyber-card.highlight {
  border: 1px solid rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .cyber-section-header h2 {
    font-size: 30px;
  }

  .cyber-card {
    padding: 20px;
  }

}

/* =========================================
   CYBER AWARDS SECTION
========================================= */

.cyber-awards-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left,
      rgba(0, 255, 170, 0.08),
      transparent 30%),
    radial-gradient(circle at bottom right,
      rgba(0, 140, 255, 0.08),
      transparent 35%),
    #050816;
}

/* animated grid */

.cyber-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 255, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 170, 0.04) 1px, transparent 1px);

  background-size: 45px 45px;

  opacity: 0.4;

  pointer-events: none;
}

/* =========================================
   HEADER
========================================= */

.cyber-awards-header {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.cyber-awards-badge {
  display: inline-block;

  padding: 10px 22px;

  border-radius: 50px;

  background: rgba(0, 255, 170, 0.08);

  border: 1px solid rgba(0, 255, 170, 0.2);

  color: #00ffb3;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 30px;
}

.cyber-awards-header h2 {
  color: #ffffff;

  font-size: 54px;
  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 24px;
}

.cyber-awards-header p {
  color: rgba(255, 255, 255, 0.72);

  font-size: 17px;
  line-height: 1.8;

  max-width: 760px;

  margin: auto;
}

/* =========================================
   CATEGORY TITLE
========================================= */

.award-category-title {
  margin: 70px 0 35px;
}

.award-category-title h3 {
  color: #ffffff;

  font-size: 34px;
  font-weight: 700;

  margin-bottom: 10px;
}

.award-category-title span {
  color: #00ffb3;

  font-size: 14px;

  letter-spacing: 1px;
}

/* =========================================
   CARD
========================================= */

.matrix-award-card {
  position: relative;

  height: 100%;
  min-height: 320px;

  padding: 38px 28px;

  overflow: hidden;

  border-radius: 28px;

  backdrop-filter: blur(18px);

  background:
    linear-gradient(145deg,
      rgba(10, 18, 35, 0.96),
      rgba(5, 10, 20, 0.96));

  border: 1px solid rgba(0, 255, 170, 0.08);

  transition: 0.45s ease;

  display: flex;
  align-items: flex-end;
}

.matrix-award-card:hover {
  transform: translateY(-12px);

  border-color: rgba(0, 255, 170, 0.25);

  box-shadow:
    0 0 30px rgba(0, 255, 170, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.55);
}

/* =========================================
   BORDERS
========================================= */

.matrix-border {
  position: absolute;

  background: linear-gradient(90deg,
      transparent,
      #00ffb3,
      transparent);

  opacity: 0;

  transition: 0.5s ease;
}

.border-top,
.border-bottom {
  width: 100%;
  height: 1px;
}

.border-left,
.border-right {
  width: 1px;
  height: 100%;
}

.border-top {
  top: 0;
  left: -100%;
}

.border-right {
  top: -100%;
  right: 0;
}

.border-bottom {
  bottom: 0;
  right: -100%;
}

.border-left {
  bottom: -100%;
  left: 0;
}

.matrix-award-card:hover .border-top {
  left: 0;
  opacity: 1;
}

.matrix-award-card:hover .border-right {
  top: 0;
  opacity: 1;
}

.matrix-award-card:hover .border-bottom {
  right: 0;
  opacity: 1;
}

.matrix-award-card:hover .border-left {
  bottom: 0;
  opacity: 1;
}

/* =========================================
   BIG NUMBER
========================================= */

.matrix-number {
  position: absolute;

  top: 18px;
  right: 22px;

  font-size: 90px;
  font-weight: 800;

  line-height: 1;

  color: rgba(255, 255, 255, 0.04);

  transition: 0.4s ease;
}

.matrix-award-card:hover .matrix-number {
  color: rgba(0, 255, 170, 0.08);
}

/* =========================================
   CONTENT
========================================= */

.matrix-award-content {
  position: relative;
  z-index: 3;
}

.matrix-tag {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 50px;

  background: rgba(0, 255, 170, 0.08);

  border: 1px solid rgba(0, 255, 170, 0.15);

  color: #00ffb3;

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

  letter-spacing: 1px;

  margin-bottom: 22px;
}

.matrix-award-content h3 {
  color: #ffffff;

  font-size: 28px;
  font-weight: 700;

  line-height: 1.35;

  margin-bottom: 18px;
}

.matrix-award-content p {
  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;
  line-height: 1.8;

  margin: 0;
}

/* =========================================
   HOVER LIGHT
========================================= */

.matrix-hover-light {
  position: absolute;

  width: 240px;
  height: 240px;

  top: -120px;
  right: -120px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(0, 255, 170, 0.22),
      transparent 70%);

  opacity: 0;

  transition: 0.5s ease;
}

.matrix-award-card:hover .matrix-hover-light {
  opacity: 1;
  transform: scale(1.15);
}

/* =========================================
   CORPORATE CARDS
========================================= */

.corporate-card {
  background:
    linear-gradient(145deg,
      rgba(8, 20, 40, 0.98),
      rgba(3, 10, 22, 0.98));
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

  .cyber-awards-header h2 {
    font-size: 42px;
  }

  .matrix-award-card {
    min-height: 290px;
  }

}

@media (max-width: 767px) {

  .cyber-awards-section {
    padding: 90px 0;
  }

  .cyber-awards-header {
    margin-bottom: 55px;
  }

  .cyber-awards-header h2 {
    font-size: 30px;
  }

  .cyber-awards-header p {
    font-size: 15px;
  }

  .award-category-title h3 {
    font-size: 24px;
  }

  .matrix-award-card {
    min-height: auto;

    padding: 30px 22px;

    border-radius: 22px;
  }

  .matrix-award-content h3 {
    font-size: 22px;
  }

  .matrix-award-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .matrix-number {
    font-size: 70px;
  }

}

/* =========================================
   CYBER VENUE SECTION
========================================= */

.cyber-venue-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left,
      rgba(0, 255, 170, 0.08),
      transparent 28%),

    radial-gradient(circle at bottom right,
      rgba(0, 140, 255, 0.08),
      transparent 32%),

    #07111f;
}

/* Animated Grid */
.cyber-venue-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg,
      rgba(0, 255, 170, 0.04) 1px,
      transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  opacity: 0.45;
}

/* Header */
.cyber-venue-header {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}

.cyber-venue-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 170, 0.2);
  background: rgba(0, 255, 170, 0.06);
  color: #00ffb3;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 25px;
}

.cyber-venue-header h2 {
  color: #ffffff;
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cyber-venue-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 760px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
}

/* Map */
.cyber-map-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 170, 0.14);
  box-shadow:
    0 0 40px rgba(0, 255, 170, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.45);
  min-height: 560px;
}

.cyber-map-wrapper iframe {
  width: 100%;
  height: 560px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

.cyber-map-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(7, 17, 31, 0.2),
      transparent);
  pointer-events: none;
}

/* Venue Card */
.cyber-venue-card {
  position: relative;
  background: rgba(10, 18, 35, 0.92);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 170, 0.12);
  backdrop-filter: blur(12px);

  box-shadow:
    0 0 35px rgba(0, 255, 170, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.4);

  transition: 0.4s ease;
}

.cyber-venue-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 170, 0.25);
}

/* Glow Border */
.cyber-venue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 30px;

  background:
    linear-gradient(135deg,
      rgba(0, 255, 170, 0.35),
      rgba(0, 140, 255, 0.15),
      transparent);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Image */
.venue-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.cyber-venue-card:hover .venue-image img {
  transform: scale(1.08);
}

/* Content */
.venue-content {
  padding: 35px;
}

.venue-label {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 40px;
  background: rgba(0, 255, 170, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.15);
  color: #00ffb3;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 22px;
}

.venue-content h3 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.venue-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Venue Info */
.venue-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.venue-info-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.05);

  color: rgba(255, 255, 255, 0.88);

  transition: 0.3s ease;
}

.venue-info-item:hover {
  background: rgba(0, 255, 170, 0.08);
  border-color: rgba(0, 255, 170, 0.22);
  transform: translateX(5px);
}

.info-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ffb3;
  box-shadow: 0 0 12px #00ffb3;
  flex-shrink: 0;
}

/* Button */
.cyber-location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 34px;
  border-radius: 60px;

  background: linear-gradient(135deg,
      #00ffb3,
      #008cff);

  color: #07111f;
  font-weight: 700;
  text-decoration: none;
  transition: 0.35s ease;
}

.cyber-location-btn:hover {
  transform: translateY(-4px);
  color: #07111f;
  box-shadow:
    0 10px 30px rgba(0, 255, 170, 0.35);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .cyber-venue-section {
    padding: 90px 0;
  }

  .cyber-venue-header h2 {
    font-size: 40px;
  }

  .cyber-map-wrapper,
  .cyber-map-wrapper iframe {
    min-height: 420px;
    height: 420px;
  }

  .cyber-venue-card {
    margin-top: 10px;
  }

}

@media (max-width: 767px) {

  .cyber-venue-header h2 {
    font-size: 30px;
  }

  .cyber-venue-header p {
    font-size: 15px;
  }

  .cyber-map-wrapper,
  .cyber-map-wrapper iframe {
    min-height: 320px;
    height: 320px;
  }

  .venue-image {
    height: 220px;
  }

  .venue-content {
    padding: 25px;
  }

  .venue-content h3 {
    font-size: 26px;
  }

  .venue-info-item {
    padding: 12px 14px;
    font-size: 14px;
  }

  .cyber-location-btn {
    width: 100%;
  }

}

/* =========================================
   CYBER CONTACT SECTION
========================================= */

.cyber-contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left,
      rgba(0, 255, 170, 0.08),
      transparent 30%),
    radial-gradient(circle at bottom right,
      rgba(0, 140, 255, 0.08),
      transparent 35%),
    #07111f;
}

/* Animated Grid */
.cyber-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 170, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  opacity: 0.5;
  pointer-events: none;
}

/* Section Header */
.cyber-contact-badge {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 170, 0.25);
  background: rgba(0, 255, 170, 0.06);
  color: #00ffb3;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.cyber-contact-section .section-title h2 {
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cyber-contact-section .section-title p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
  font-size: 16px;
}

/* Map Box */
.cyber-map-box {
  position: relative;
  height: 100%;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 170, 0.12);
  background: rgba(10, 18, 35, 0.92);
  box-shadow:
    0 0 30px rgba(0, 255, 170, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.35);
}

.cyber-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(1) invert(92%) contrast(90%);
}

/* Venue Overlay */
.venue-overlay {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 170, 0.15);
}

.venue-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #00ffb3;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

.venue-overlay h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.venue-overlay p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* Contact Box */
.cyber-contact-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
}

/* Contact Card */
.cyber-contact-card {
  position: relative;
  flex: 1;
  padding: 38px;
  border-radius: 28px;
  background: rgba(10, 18, 35, 0.92);
  border: 1px solid rgba(0, 255, 170, 0.12);
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow:
    0 0 30px rgba(0, 255, 170, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.35);
}

.cyber-contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 170, 0.35);
}

/* Glow */
.cyber-contact-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -60px;
  right: -60px;
  border-radius: 50%;
  background: rgba(0, 255, 170, 0.08);
}

/* Top */
.contact-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-line {
  width: 45px;
  height: 2px;
  background: linear-gradient(to right, #00ffb3, #008cff);
}

.contact-top span {
  color: #00ffb3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Name */
.cyber-contact-card h3 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.designation {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Contact Details */
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: 0.3s ease;
}

.contact-detail:hover {
  background: rgba(0, 255, 170, 0.08);
  border-color: rgba(0, 255, 170, 0.18);
  transform: translateX(6px);
}

.contact-detail i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 255, 170, 0.12);
  color: #00ffb3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}

.contact-detail a:hover {
  color: #00ffb3;
}

/* Responsive */
@media (max-width: 991px) {

  .cyber-contact-section {
    padding: 90px 0;
  }

  .cyber-contact-section .section-title h2 {
    font-size: 40px;
  }

  .cyber-map-box,
  .cyber-map-box iframe {
    min-height: 450px;
  }

  .cyber-contact-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {

  .cyber-contact-section .section-title h2 {
    font-size: 30px;
  }

  .cyber-contact-section .section-title p {
    font-size: 14px;
  }

  .cyber-map-box,
  .cyber-map-box iframe {
    min-height: 380px;
  }

  .venue-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 18px;
  }

  .venue-overlay h3 {
    font-size: 22px;
  }

  .cyber-contact-card {
    padding: 24px;
  }

  .cyber-contact-card h3 {
    font-size: 24px;
  }

  .contact-detail {
    padding: 14px;
  }

  .contact-detail a {
    font-size: 14px;
  }
}

/* =========================================
   CYBER REGISTER SECTION
========================================= */

.cyber-register-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left,
      rgba(0, 255, 170, 0.08),
      transparent 30%),
    radial-gradient(circle at bottom right,
      rgba(0, 140, 255, 0.08),
      transparent 35%),
    #07111f;
}

/* GRID BACKGROUND */

.cyber-register-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg,
      rgba(0, 255, 170, 0.04) 1px,
      transparent 1px);

  background-size: 50px 50px;

  mask-image:
    radial-gradient(circle at center,
      black 30%,
      transparent 90%);

  pointer-events: none;
}

/* GLOWS */

.cyber-register-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.cyber-glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(0, 255, 170, 0.12);
  top: -80px;
  left: -100px;
}

.cyber-glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(0, 140, 255, 0.12);
  bottom: -100px;
  right: -100px;
}

/* SECTION TITLE */

.cyber-register-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 170, 0.25);
  background: rgba(0, 255, 170, 0.06);
  color: #00ffb3;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.cyber-register-badge span {
  width: 8px;
  height: 8px;
  background: #00ffb3;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ffb3;
}

.cyber-register-section h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cyber-register-section .section-title p {
  max-width: 760px;
  margin: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

/* FORM WRAPPER */

.cyber-form-wrapper {
  position: relative;
  z-index: 2;
  padding: 50px;
  border-radius: 30px;
  background:
    rgba(10, 18, 35, 0.92);

  border: 1px solid rgba(0, 255, 170, 0.12);

  backdrop-filter: blur(16px);

  box-shadow:
    0 0 40px rgba(0, 255, 170, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.35);

  overflow: hidden;
}

.cyber-form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;

  background:
    linear-gradient(135deg,
      rgba(0, 255, 170, 0.45),
      rgba(0, 140, 255, 0.18),
      transparent);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* TOP LINE */

.cyber-top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background:
    linear-gradient(90deg,
      transparent,
      #00ffb3,
      #008cff,
      transparent);

  animation: cyberline 5s linear infinite;
}

@keyframes cyberline {
  0% {
    transform: translateX(-40%);
  }

  100% {
    transform: translateX(40%);
  }
}

/* HEADER */

.cyber-form-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.cyber-form-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;

  background:
    linear-gradient(135deg,
      #00ffb3,
      #008cff);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 0 30px rgba(0, 255, 170, 0.35);
}

.cyber-form-icon i {
  font-size: 30px;
  color: #07111f;
}

.cyber-form-header h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cyber-form-header p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

/* LABELS */

.cyber-contact-form label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.important {
  color: #00ffb3 !important;
}

/* INPUT BOX */

.cyber-input-box {
  position: relative;
}

.cyber-input-box i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #00ffb3;
  font-size: 16px;
  z-index: 2;
}

.cyber-textarea-box i {
  top: 26px;
  transform: none;
}

/* INPUTS */

.cyber-contact-form .form-control {
  width: 100%;
  height: 60px;

  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  background:
    rgba(255, 255, 255, 0.03);

  padding-left: 52px;
  padding-right: 18px;

  color: #fff;
  font-size: 15px;

  transition: 0.35s ease;

  box-shadow: none;
}

.cyber-contact-form textarea.form-control {
  height: auto;
  padding-top: 22px;
}

.cyber-contact-form .form-control:focus {
  border-color: rgba(0, 255, 170, 0.45);

  background:
    rgba(0, 255, 170, 0.05);

  box-shadow:
    0 0 25px rgba(0, 255, 170, 0.10);

  color: #fff;
}

.cyber-contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* SELECT */

.cyber-contact-form select option {
  background: #07111f;
  color: #fff;
}

/* BUTTON */

.cyber-submit-btn {
  position: relative;
  overflow: hidden;

  border: none;
  outline: none;

  padding: 18px 38px;
  border-radius: 18px;

  background:
    linear-gradient(135deg,
      #00ffb3,
      #008cff);

  color: #07111f;
  font-size: 15px;
  font-weight: 700;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  transition: 0.35s ease;

  box-shadow:
    0 15px 40px rgba(0, 255, 170, 0.25);
}

.cyber-submit-btn:hover {
  transform: translateY(-4px);

  box-shadow:
    0 20px 50px rgba(0, 255, 170, 0.35);
}

.cyber-submit-btn i {
  transition: 0.35s ease;
}

.cyber-submit-btn:hover i {
  transform: translateX(4px);
}

/* MOBILE */

@media (max-width: 991px) {

  .cyber-form-wrapper {
    padding: 35px;
  }

  .cyber-register-section h2 {
    font-size: 40px;
  }

}

@media (max-width: 767px) {

  .cyber-register-section {
    padding: 90px 0;
  }

  .cyber-form-wrapper {
    padding: 24px;
    border-radius: 24px;
  }

  .cyber-form-header {
    flex-direction: column;
    text-align: center;
  }

  .cyber-register-section h2 {
    font-size: 32px;
  }

  .cyber-form-header h3 {
    font-size: 24px;
  }

  .cyber-contact-form .form-control {
    height: 56px;
    font-size: 14px;
  }

  .cyber-submit-btn {
    width: 100%;
    justify-content: center;
  }

}

/* =========================================
   CYBER THANK YOU SECTION
========================================= */

.cyber-thankyou-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at top left,
      rgba(0, 255, 170, 0.08),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(0, 140, 255, 0.08),
      transparent 35%),

    #07111f;
}

/* GRID */

.cyber-thankyou-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 255, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg,
      rgba(0, 255, 170, 0.04) 1px,
      transparent 1px);

  background-size: 50px 50px;

  mask-image:
    radial-gradient(circle at center,
      black 30%,
      transparent 90%);
}

/* GLOWS */

.cyber-thankyou-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-one {
  width: 320px;
  height: 320px;
  background: rgba(0, 255, 170, 0.14);
  top: -120px;
  left: -120px;
}

.glow-two {
  width: 320px;
  height: 320px;
  background: rgba(0, 140, 255, 0.14);
  bottom: -120px;
  right: -120px;
}

/* HEADER */

.cyber-thankyou-header {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}

.cyber-thankyou-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 22px;

  border-radius: 50px;

  border: 1px solid rgba(0, 255, 170, 0.25);

  background: rgba(0, 255, 170, 0.06);

  color: #00ffb3;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 25px;
}

.cyber-thankyou-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ffb3;

  box-shadow: 0 0 12px #00ffb3;
}

.cyber-thankyou-header h2 {
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cyber-thankyou-header p {
  max-width: 760px;
  margin: auto;

  color: rgba(255, 255, 255, 0.72);

  font-size: 17px;
  line-height: 1.8;
}

/* CARD */

.cyber-thankyou-card {
  position: relative;
  z-index: 2;

  padding: 70px 50px;

  border-radius: 32px;

  background:
    rgba(10, 18, 35, 0.92);

  border: 1px solid rgba(0, 255, 170, 0.12);

  backdrop-filter: blur(16px);

  overflow: hidden;

  text-align: center;

  box-shadow:
    0 0 40px rgba(0, 255, 170, 0.08),
    0 25px 70px rgba(0, 0, 0, 0.45);
}

/* BORDER EFFECT */

.cyber-thankyou-card::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: 32px;
  padding: 1px;

  background:
    linear-gradient(135deg,
      rgba(0, 255, 170, 0.45),
      rgba(0, 140, 255, 0.18),
      transparent);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* SUCCESS ICON */

.cyber-success-wrapper {
  position: relative;

  width: 180px;
  height: 180px;

  margin: auto auto 40px;
}

.cyber-success-icon {
  position: absolute;
  inset: 50% auto auto 50%;

  transform: translate(-50%, -50%);

  width: 110px;
  height: 110px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      #00ffb3,
      #008cff);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 0 45px rgba(0, 255, 170, 0.45);

  z-index: 3;
}

.cyber-success-icon i {
  color: #07111f;
  font-size: 50px;
  font-weight: bold;
}

/* RINGS */

.cyber-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 170, 0.15);
}

.cyber-ring-1 {
  width: 150px;
  height: 150px;

  top: 15px;
  left: 15px;

  animation: rotateRing 10s linear infinite;
}

.cyber-ring-2 {
  width: 180px;
  height: 180px;

  top: 0;
  left: 0;

  animation: rotateRingReverse 14s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateRingReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* CONTENT */

.cyber-thankyou-content h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cyber-thankyou-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;

  max-width: 700px;
  margin: auto auto 35px;
}

/* INFO BOX */

.cyber-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin-bottom: 40px;
}

.cyber-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 16px 20px;

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.05);

  color: rgba(255, 255, 255, 0.85);

  transition: 0.35s ease;
}

.cyber-info-item:hover {
  transform: translateY(-4px);

  background:
    rgba(0, 255, 170, 0.06);

  border-color:
    rgba(0, 255, 170, 0.18);
}

.cyber-info-item .dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #00ffb3;

  box-shadow:
    0 0 12px #00ffb3;
}

/* BUTTONS */

.cyber-thankyou-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cyber-btn-primary,
.cyber-btn-secondary {
  padding: 16px 32px;
  border-radius: 16px;

  text-decoration: none;

  font-weight: 600;
  transition: 0.35s ease;
}

.cyber-btn-primary {
  background:
    linear-gradient(135deg,
      #00ffb3,
      #008cff);

  color: #07111f;

  box-shadow:
    0 15px 35px rgba(0, 255, 170, 0.22);
}

.cyber-btn-primary:hover {
  transform: translateY(-4px);
  color: #07111f;
}

.cyber-btn-secondary {
  border: 1px solid rgba(0, 255, 170, 0.2);

  background:
    rgba(255, 255, 255, 0.03);

  color: #fff;
}

.cyber-btn-secondary:hover {
  transform: translateY(-4px);

  background:
    rgba(0, 255, 170, 0.08);

  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 991px) {

  .cyber-thankyou-card {
    padding: 50px 35px;
  }

  .cyber-thankyou-header h2 {
    font-size: 44px;
  }

}

@media (max-width: 767px) {

  .cyber-thankyou-section {
    padding: 100px 0;
  }

  .cyber-thankyou-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .cyber-thankyou-header h2 {
    font-size: 34px;
  }

  .cyber-thankyou-content h3 {
    font-size: 26px;
  }

  .cyber-info-item {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .cyber-thankyou-buttons {
    flex-direction: column;
  }

  .cyber-btn-primary,
  .cyber-btn-secondary {
    width: 100%;
  }

}