@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Style+Script&display=swap');

:root {
  --primary-blue: #000C14;
  --accent-blue: #ffffff;
  --neon-blue: #4dfff3;
  --dark-blue: #020c1b;
  --medium-blue: #00141d;
  --light-blue: #06718b;
  --text-primary: #e6f1ff;
  --text-secondary: #8892b0;
  --glow: 0 0 10px rgba(77, 249, 255, 0.7);
}

/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.carousel-wrapper {
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-dot-active {
  background-color: #007bff;
}

a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.863);
}
.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer.visible {
  max-height: 500px;
}

.dropdown .nav-link {
  transition: color 0.3s ease;
}

.dropdown.open .nav-link {
  color: #007bff;
}

body {
    background-color: #000c14;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

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

.flag-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 5px;
  vertical-align: middle;
}

.lang {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin: 5px;
}



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

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* Scrollbar styling */
::-webkit-scrollbar {
width: 16px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
background: #000c14; /* Dark blue track color */
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #007bff, #00bfff);
border-radius: 10px;
border: 2px solid #000c14;
cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #0056b3, #0080ff);
}




h1, h2, h4 {
  font-family: 'Chakra Petch', sans-serif;
	font-size: 20px;
	color: #00c3ff;
	text-align: center;
	margin-top: 100px;
}
h5 {
  font-family: 'Chakra Petch', sans-serif;
	font-size: 30px;
	color: fff;
	text-align: left;
}

.own-the-flag span {
  font-weight: 800;
  background: linear-gradient(90deg, #a3fcff, #a6ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s infinite linear;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

:root {
  --container-1160: 1160px;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}


/* Main section */
.main-section {
  width: 100vw;
  height: 100vh;
background: url('../images/mainbg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-section img {
  width: 700px;
  max-width: 100%;
  height: auto;
  margin: 0 60px 0 50px;
}

.main-section .section-content {
    text-align: left;
}

.main-section .section-content h2 {
    font-size: 36px;
    font-weight: bold;
}

.main-section .section-content p {
    font-size: 22px;
    margin-bottom: 20px;
}

.main-section .section-content p {
    font-size: 22px;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .main-section {
      flex-direction: column;
      padding: 50px 20px;
      margin-top: 40px;
  }

  .main-section img {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px;
  }

  .main-section .section-content h2 {
      font-size: 28px;
  }

  .main-section .section-content p {
      font-size: 24px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .main-section {
      padding: 80px 30px;
      margin-top: 60px;
  }

  .main-section img {
      width: 100%;
      margin-right: 10px;
  }

  .main-section .section-content h2 {
      font-size: 32px;
  }

  .main-section .section-content p {
      font-size: 28px;
  }
}



.voltage-button {
    position: relative;
    display: inline-block; /* Ensure the button only takes as much space as it needs */
}

.voltage-button button {
    color: white;
    background: #001d27;
    padding: 1rem 3rem;
    border-radius: 5rem;
    border: 5px solid #00475E;
    font-size: 1rem;
    line-height: 1em;
    letter-spacing: 0.075em;
    transition: background 0.3s;
    position: relative; /* Reference for absolute positioning of the SVG */
    overflow: hidden; /* Ensure no overflow outside button bounds */
}

.voltage-button button:hover {
    cursor: pointer;
    background: rgb(1, 37, 58);
}

.voltage-button button:hover + svg, 
.voltage-button button:hover + svg + .dotts {
    opacity: 1;
}

.voltage-button svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
    transition-delay: 0.1s;
    object-fit: contain; /* Ensure the SVG scales correctly */
}

.voltage-button svg path {
    stroke-dasharray: 50;
    filter: url("#glow");
}

.voltage-button svg path.line-1 {
    stroke: #f6de8d;
    stroke-dashoffset: 0;
    animation: spark-1 3s linear infinite;
}

.voltage-button svg path.line-2 {
    stroke: #6bfeff;
    stroke-dashoffset: 500;
    animation: spark-2 3s linear infinite;
}

.voltage-button .dotts {
    opacity: 0;
    transition: opacity 0.3s;
    transition-delay: 0.4s;
}

.voltage-button .dotts .dot {
    width: 1rem;
    height: 1rem;
    background: white;
    border-radius: 100%;
    position: absolute;
    opacity: 0;
}

.voltage-button .dotts .dot-1 {
    top: 0;
    left: 20%;
    animation: fly-up 3s linear infinite;
}

.voltage-button .dotts .dot-2 {
    top: 0;
    left: 55%;
    animation: fly-up 3s linear infinite;
    animation-delay: 0.5s;
}

.voltage-button .dotts .dot-3 {
    top: 0;
    left: 80%;
    animation: fly-up 3s linear infinite;
    animation-delay: 1s;
}

.voltage-button .dotts .dot-4 {
    bottom: 0;
    left: 30%;
    animation: fly-down 3s linear infinite;
    animation-delay: 2.5s;
}

.voltage-button .dotts .dot-5 {
    bottom: 0;
    left: 65%;
    animation: fly-down 3s linear infinite;
    animation-delay: 1.5s;
}

@keyframes spark-1 {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes spark-2 {
    to {
        stroke-dashoffset: -500;
    }
}

@keyframes fly-up {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.2);
    }

    5% {
        opacity: 1;
        transform: translateY(-1.5rem) scale(0.4);
    }

    10%, 100% {
        opacity: 0;
        transform: translateY(-3rem) scale(0.2);
    }
}

@keyframes fly-down {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.2);
    }

    5% {
        opacity: 1;
        transform: translateY(1.5rem) scale(0.4);
    }

    10%, 100% {
        opacity: 0;
        transform: translateY(3rem) scale(0.2);
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
  .main-section {
      padding: 90px 40px;
      margin-top: 70px;
  }

  .main-section img {
      width: 700px; /* Adjust image size for 1366px screens */
      margin-right: 80px;
      margin-left: 40px;
  }

  .main-section .section-content h2 {
      font-size: 29px; /* Slightly smaller heading for 1366px */
  }

  .main-section .section-content p {
      font-size: 18px; /* Slightly smaller text for 1366px */
  }
}

@media screen and (min-width: 1920px) {
  .main-section {
      padding: 120px 60px; /* Increase padding for larger screens */
      margin-top: 100px;
  }

  .main-section img {
      width: 1080px; /* Larger image for 1920px screens */
      margin-right: 120px;
      margin-left: 60px;
  }

  .main-section .section-content h2 {
      font-size: 34px; /* Larger heading for 1920px */
  }

  .main-section .section-content p {
      font-size: 25px; /* Larger text for 1920px */
  }
}
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .main-section {
        flex-direction: column-reverse; /* Reverse the order on smaller screens */
    }

    .main-section img {
        margin-right: 0;
        margin-bottom: 20px; /* Add spacing between image and text on smaller screens */
        display: none;
    }

    .main-section .section-content {
        text-align: center; /* Center align text on smaller screens */
    }
}

@media screen and (min-width: 1080px) and (max-width: 1100px) and (min-height: 600px) and (max-height: 620px) {
  .main-section {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 60px 30px;
      margin-top: 70px;
  }

  .main-section img {
      width: 800px;
      margin-right: 50px;
      margin-left: 30px;
  }

  .main-section .section-content h2 {
      font-size: 34px;
  }

  .main-section .section-content p {
      font-size: 22px;
  }

  .voltage-button button {
      font-size: 1.1rem;
      padding: 0.8rem 2.5rem;
  }

  .voltage-button svg path {
      stroke-dasharray: 60;
  }
}

/* About Us Section */
#about-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px; 
  margin: 40px auto; 
  max-width: 1080px;
  box-sizing: border-box;
}

.glass-background {
  display: flex;
  gap: 40px;
  align-items: center;
  border-radius: 24px;
  padding: 50px;

  backdrop-filter: blur(12px);
  background: linear-gradient(145deg, rgba(1, 30, 44, 0.4), rgba(1, 30, 44, 0.2));
  width: 100%;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.image-container img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.image-container img:hover {
  transform: scale(1.03);
}

.text-content {
  flex: 2;
  color: #e5e7eb;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

#about-us h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-align: left;
}

#about-us h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00FFF7, #00A3FF);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 255, 247, 0.5);
}

#typewriter {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #d1d5db;
  overflow-wrap: break-word;
  white-space: pre-line;
  text-align: justify;
  min-height: 150px;
  margin-top: 10px;
  
}

.blinking-cursor {
  display: inline-block;
  margin-left: 3px;
  width: 3px;
  height: 20px;
  background-color: #ffffff;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  #about-us {
    max-width: 90%;
    padding: 30px 15px; /* Reduced padding */
  }
  
  .glass-background {
    padding: 40px 30px;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .glass-background {
    flex-direction: column-reverse;
    padding: 35px 25px;
    gap: 30px;
  }
  
  .text-content {
    padding-right: 0;
  }
  
  .image-container {
    width: 100%;
  }
  
  #about-us h2 {
    font-size: 30px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    text-align: center;
    width: 100%;
  }
  
  #about-us h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  #typewriter {
    font-size: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  #about-us {
    max-width: 95%;
    margin: 30px auto; /* Further reduced margin */
    padding: 20px 15px; /* Further reduced padding */
  }
  
  .glass-background {
    padding: 25px 20px;
  }
  
  #about-us h2 {
    font-size: 26px;
  }
  
  #typewriter {
    font-size: 15px;
    line-height: 1.6;
  }
}


/* General section styling */
.facts-section {
  max-width: 1700px;
  margin: 0 auto;
  padding: 60px 30px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}

/* Header styling */
.facts-section h5 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
}

/* Increased card size and spacing */
.outer {
  width: 460px;
  height: 380px;
  border-radius: 20px;
  padding: 5px;
  background: radial-gradient(circle 230px at 0% 0%, #0f2a47, #0a1d30);
  position: relative;
  margin: 20px; /* Adjust margin if needed */
  display: flex; /* Change to flex for proper alignment */
  flex: 0 1 auto; /* Prevent cards from growing but allow them to shrink */
  transition: transform 0.3s ease-in-out;
}


/* Dot and animation */
.dot {
  width: 8px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #5aa3db;
  box-shadow: 0 0 10px #5aa3db;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

/* Adjusted dot animation */
@keyframes moveDot {
  0%, 100% {
      top: 10%;
      right: 10%;
  }
  25% {
      top: 10%;
      right: calc(100% - 45px);
  }
  50% {
      top: calc(100% - 35px);
      right: calc(100% - 45px);
  }
  75% {
      top: calc(100% - 35px);
      right: 10%;
  }
}

/* Larger card */
.card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: solid 2px #0c2438;
  background: radial-gradient(circle 280px at 0% 0%, #1a3d5d, #0a1d30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  position: absolute;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.ray {
  width: 260px;
  height: 55px;
  border-radius: 100px;
  position: absolute;
  background-color: #5aa3db;
  opacity: 0.4;
  box-shadow: 0 0 50px #5aa3db;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

/* Enlarged statistic text */
.card .text {
  font-weight: bolder;
  font-size: 5rem;
  background: linear-gradient(45deg, #03b6ec 4%, #bae1ff, #000);
  background-clip: text;
  color: transparent;
}

/* Larger description */
.description {
  margin-top: 10px;
  font-size: 1.5rem;
  color: #b0d4f1;
  text-align: center;
  line-height: 1.5;
  padding: 0 10px;
}

/* Line animations */
.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #1d394f;
}

.topl {
  top: 10%;
  background: linear-gradient(90deg, #5aa3db 30%, #1d394f 70%);
}

.bottoml {
  bottom: 10%;
}

.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #5aa3db 30%, #1d394f 70%);
}

.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
}


/* Fact Item Styling */
.fact-item {
  background: rgba(1, 30, 44, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(0, 132, 184, 0.2);
  margin: 1rem;
  padding: 2rem;
  text-align: center;
  width: 100%;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  opacity: 0;
  margin-bottom: 100px;
}

.fact-item h2 {
  font-size: 7rem;
  margin-bottom: 0.5rem;
  font-weight: 1000;
  background: linear-gradient(to right, #66ddf2, #8dcaf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientMove 3s linear infinite;
  position: relative; /* Add this to position the span correctly */
}

.fact-item h2 span {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  color: #e0e0e0; /* Adjust color as needed */
}

/* Fact Item Paragraph */
.fact-item p {
  font-size: 1rem;
  color: #e0e0e0;
  text-align: left;
}

/* Animation for the fact items */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* When in view, apply animation */
.fact-item.in-view {
  opacity: 1;
  animation: fadeInUp 0.5s forwards;
}




/* Carousel Section */
.carousel-section {
    margin-top: 200px;
    position: relative;
    max-width: 100%;
    margin: auto;
    padding: 50px 0;
}

.carousel-container {
    position: relative;
    max-width: 90%;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 5px 600px  #00a2ff25;
    border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.575)) 1;
}

/* Wrapper for smooth transition */
.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

/* Slide Card */
.carousel-slide {
    flex: 0 0 33.333%;
    box-sizing: border-box;
    padding: 10px;
}

/* CTF-styled Cards with glowing animations */
.carousel-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0px 40px;
    backdrop-filter: blur(14.5px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.5s ease;
    
    /* Glowing border animation */
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: glowBorder 2s infinite alternate;
}

@keyframes glowBorder {
    from {
        border-color: rgba(0, 255, 255, 0.5);
    }
    to {
        border-color: rgba(0, 255, 255, 0.9);
    }
}

.carousel-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.carousel-card-image {
    height: 200px;
    background-position: center;
    background-size: cover;
    border-bottom: 3px solid #00d4ff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    animation: matrixEffect 5s infinite;
}

@keyframes matrixEffect {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

.carousel-card-content {
    padding: 20px;
    color: #ffffff;
    text-align: left;
}

.carousel-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'poppins', sans-serif;
}

.carousel-card-content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.carousel-prev, .carousel-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-next {
    right: 10px;
}

.carousel-prev {
    left: 10px;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-dots {
    text-align: center;
    padding: 20px;
}

.carousel-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.carousel-dot-active, .carousel-dot:hover {
    background-color: #00d4ff;
}


/* Responsive Design for Facts Section */
@media (max-width: 1366px) {
  .outer {
    width: 350px; /* Smaller card width */
    height: 300px; /* Smaller card height */
    margin: 15px;
  }

  .facts-section h5 {
    font-size: 2rem; /* Smaller heading */
  }

  .card .text {
    font-size: 4rem; /* Smaller statistic text */
  }

  .description {
    font-size: 1.2rem; /* Smaller description */
  }
}

@media (max-width: 992px) {
  .outer {
    width: 300px; /* Even smaller card width */
    height: 260px; /* Even smaller card height */
    margin: 10px;
  }

  .facts-section h5 {
    font-size: 1.8rem; /* Smaller heading */
  }

  .card .text {
    font-size: 3.5rem; /* Smaller statistic text */
  }

  .description {
    font-size: 1.1rem; /* Smaller description */
  }
}

@media (max-width: 768px) {
  .outer {
    width: 100%; /* Full width for single column */
    height: 240px; /* Smaller card height */
    margin: 10px 0;
  }

  .facts-section {
    flex-direction: column; /* Stack cards vertically */
    padding: 20px 10px;
  }

  .facts-section h5 {
    font-size: 1.6rem; /* Smaller heading */
  }

  .card .text {
    font-size: 3rem; /* Smaller statistic text */
  }

  .description {
    font-size: 1rem; /* Smaller description */
  }
}

@media (max-width: 576px) {
  .outer {
    height: 220px; /* Even smaller card height */
  }

  .facts-section h5 {
    font-size: 1.4rem; /* Smaller heading */
  }

  .card .text {
    font-size: 2.5rem; /* Smaller statistic text */
  }

  .description {
    font-size: 0.9rem; /* Smaller description */
  }
}

/* Responsive Design for Carousel Section */
@media (max-width: 1366px) {
  .carousel-slide {
    flex: 0 0 33.333%; /* 3 cards per row */
  }
}

@media (max-width: 992px) {
  .carousel-slide {
    flex: 0 0 50%; /* 2 cards per row */
  }

  .carousel-card-content h3 {
    font-size: 1.5rem; /* Smaller heading */
  }

  .carousel-card-content p {
    font-size: 0.9rem; /* Smaller paragraph */
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%; /* 2 cards per row */
  }

  .carousel-card-content h3 {
    font-size: 1.4rem; /* Smaller heading */
  }

  .carousel-card-content p {
    font-size: 0.85rem; /* Smaller paragraph */
  }
}

@media (max-width: 576px) {
  .carousel-slide {
    flex: 0 0 100%; /* 1 card per row */
  }

  .carousel-card-content h3 {
    font-size: 1.2rem; /* Smaller heading */
  }

  .carousel-card-content p {
    font-size: 0.8rem; /* Smaller paragraph */
  }
}

/* Features Section with Glassy Design */
.features-section {
  padding: 3rem;
  text-align: left;
  color: white;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}
.cta-heading-features {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0.5em 0;
  margin-left: 60px;
  text-align: left;
  color: white;
}
.cta-description-features {
  font-size: 1.2em;
  margin-left: 60px;
  margin-top: 1em;
  margin-bottom: 1%;
  line-height: 1.6;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: 50px;
}

/* Feature Item Image */
.feature-item img {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
  user-select: none;
}

/* Glassy Feature Item */
.feature-item {
  background: rgba(1, 30, 44, 0.3);
  border-radius: 8px;
  padding: 1rem;
  width: 30%;
  min-width: 450px;
  margin: 0.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.feature-item h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-item p {
  font-size: 1rem;
  color: #e0e0e0;
}



.Launch-now-btn {
  display: flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  margin-left: 60px;
  margin-bottom: 50px;
  font-weight: 500;
  font-size: 17px;
  padding: 0.8em 1.3em 0.8em 0.9em;
  color: white;
  background: #ad5389;
  background: linear-gradient(to right, #0c1929, #004c63, #24243e);
  border: none;
  letter-spacing: 0.05em;
  border-radius: 16px;
}

.Launch-now-btn svg {
  margin-right: 3px;
  transform: rotate(30deg);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.Launch-now-btn span {
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.Launch-now-btn:hover svg {
  transform: translateX(5px) rotate(90deg);
}

.Launch-now-btn:hover span {
  transform: translateX(7px);
}


@media (max-width: 1366px) {
  .facts-section {
    padding: 40px 20px;
  }

  .facts-section h5 {
    font-size: 2rem;
  }

  .outer {
    width: 400px;
    height: 340px;
    margin: 15px;
  }

  .card .text {
    font-size: 4rem;
  }

  .description {
    font-size: 1.3rem;
  }

  .fact-item {
    padding: 1.5rem;
  }

  .fact-item h2 {
    font-size: 6rem;
  }

  .fact-item p {
    font-size: 0.9rem;
  }

  .carousel-section {
    padding: 40px 0;
  }

  .carousel-container {
    padding: 40px;
  }

  .carousel-card-content h3 {
    font-size: 1.6rem;
  }

  .carousel-card-content p {
    font-size: 0.9rem;
  }

  .features-section {
    padding: 2rem;
  }

  .features-section h2,
  .cta-heading-features {
    font-size: 2rem;
    margin-left: 40px;
  }

  .cta-description-features {
    font-size: 1.1em;
    margin-left: 40px;
  }

  .features-container {
    margin-left: 30px;
  }

  .feature-item {
    width: 30%;
    min-width: 200px;
    margin: 0.5rem;
  }

  .feature-item h3 {
    font-size: 1.6rem;
  }

  .feature-item p {
    font-size: 0.95rem;
  }

  .Launch-now-btn {
    margin-left: 40px;
    font-size: 16px;
    padding: 0.7em 1.2em 0.7em 0.8em;
  }
}

@media (max-width: 768px) {
  .facts-section {
    padding: 30px 10px;
  }

  .facts-section h5 {
    font-size: 1.8rem;
  }

  .outer {
    width: 100%;
    height: 300px;
    margin: 10px 0;
  }

  .card .text {
    font-size: 3.5rem;
  }

  .description {
    font-size: 1.2rem;
  }

  .fact-item {
    padding: 1rem;
  }

  .fact-item h2 {
    font-size: 5rem;
  }

  .fact-item p {
    font-size: 0.875rem;
  }

  .carousel-section {
    padding: 30px 0;
  }

  .carousel-container {
    padding: 30px;
  }

  .carousel-card-content h3 {
    font-size: 1.4rem;
  }

  .carousel-card-content p {
    font-size: 0.875rem;
  }

  .features-section {
    padding: 1.5rem;
  }

  .features-section h2,
  .cta-heading-features {
    font-size: 1.8rem;
    margin-left: 20px;
  }

  .cta-description-features {
    font-size: 1em;
    margin-left: 20px;
  }

  .features-container {
    margin-left: 10px;
  }

  .feature-item {
    width: 100%;
    min-width: 300px;
    margin: 0.5rem 0;
  }

  .feature-item h3 {
    font-size: 1.4rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .Launch-now-btn {
    margin-left: 20px;
    font-size: 15px;
    padding: 0.6em 1em 0.6em 0.7em;
  }
}

@media (max-width: 576px) {
  .facts-section {
    padding: 20px 10px;
  }

  .facts-section h5 {
    font-size: 1.5rem;
  }

  .outer {
    height: 250px;
  }

  .card .text {
    font-size: 3rem;
  }

  .description {
    font-size: 1rem;
  }

  .fact-item {
    padding: 0.75rem;
  }

  .fact-item h2 {
    font-size: 4rem;
  }

  .fact-item p {
    font-size: 0.8rem;
  }

  .carousel-section {
    padding: 20px 0;
  }

  .carousel-container {
    padding: 20px;
  }

  .carousel-card-content h3 {
    font-size: 1.2rem;
  }

  .carousel-card-content p {
    font-size: 0.8rem;
  }

  .features-section {
    padding: 1rem;
  }

  .features-section h2,
  .cta-heading-features {
    font-size: 1.5rem;
    margin-left: 10px;
  }

  .cta-description-features {
    font-size: 0.9em;
    margin-left: 10px;
  }

  .features-container {
    margin-left: 0;
  }

  .feature-item {
    min-width: 250px;
  }

  .feature-item h3 {
    font-size: 1.2rem;
  }

  .feature-item p {
    font-size: 0.8rem;
  }

  .Launch-now-btn {
    margin-left: 10px;
    font-size: 14px;
    padding: 0.5em 0.9em 0.5em 0.6em;
  }
}

/* Enhanced Media Queries for Mobile Devices */
/* Eye-Friendly Mobile Media Queries */

/* Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  /* Features Section */
  .features-section {
    padding: 1.5rem 0.75rem;
    text-align: center;
  }
  
  .features-section h2,
  .cta-heading-features {
    font-size: 1.4rem;
    margin: 0.3em auto 0.6em;
    text-align: center;
    line-height: 1.3;
  }
  
  .cta-description-features {
    font-size: 0.95em;
    margin: 0.5em auto 1em;
    line-height: 1.5;
    text-align: center;
    max-width: 95%;
  }
  
  .features-container {
    margin: 0 auto;
    justify-content: center;
  }
  
  /* Feature Items */
  .feature-item {
    width: 100%;
    min-width: unset;
    max-width: 92%;
    margin: 0.8rem auto;
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
  }
  
  .feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    text-align: center;
  }
  
  .feature-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: center;
  }
  
  .feature-item img {
    border-radius: 10px;
    margin: 0.5rem auto;
  }
  
  /* Button */
  .Launch-now-btn {
    margin: 1.2rem auto;
    font-size: 15px;
    padding: 0.7em 1.2em;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: fit-content;
  }
  
  /* Facts Section */
  .facts-section {
    padding: 1.5rem 0.5rem;
    text-align: center;
  }
  
  .facts-section h5 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .outer {
    height: auto;
    min-height: 180px;
    width: 92%;
    margin: 0.8rem auto;
    padding-bottom: 0.8rem;
  }
  
  .card .text {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }
  
  .description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0.5rem auto;
    max-width: 90%;
  }
  
  /* Carousel Section */
  .carousel-section {
    margin-top: 1.5rem;
    padding: 1rem 0;
  }
  
  .carousel-container {
    max-width: 92%;
    padding: 1.2rem;
    border-radius: 15px;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
  }
  
  .carousel-card {
    border-radius: 0 30px;
  }
  
  .carousel-card-image {
    height: 150px;
    border-bottom-width: 2px;
  }
  
  .carousel-card-content {
    padding: 1rem;
    text-align: center;
  }
  
  .carousel-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-card-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
  
  .carousel-prev, .carousel-next {
    padding: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
  }
  
  .carousel-dots {
    padding: 0.8rem;
  }
  
  .carousel-dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
  }
}

/* Medium Mobile Devices (481px - 576px) */
@media (min-width: 481px) and (max-width: 576px) {
  /* Features Section */
  .features-section {
    padding: 1.8rem 1rem;
  }
  
  .features-section h2,
  .cta-heading-features {
    font-size: 1.6rem;
    margin-left: 0;
    text-align: center;
  }
  
  .cta-description-features {
    font-size: 1em;
    margin-left: 0;
    text-align: center;
    max-width: 90%;
    margin: 0.7em auto;
  }
  
  .features-container {
    margin: 0 auto;
    justify-content: center;
  }
  
  .feature-item {
    width: 90%;
    min-width: unset;
    margin: 1rem auto;
  }
  
  .feature-item h3 {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .feature-item p {
    text-align: center;
  }
  
  .Launch-now-btn {
    margin: 1.5rem auto;
    display: flex;
    justify-content: center;
  }
  
  /* Carousel */
  .carousel-slide {
    flex: 0 0 100%;
  }
  
  .carousel-card-content {
    text-align: center;
  }
}

/* Tablet Devices (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .features-section h2,
  .cta-heading-features {
    font-size: 1.8rem;
    margin-left: 0;
    text-align: center;
  }
  
  .cta-description-features {
    font-size: 1.05em;
    margin-left: 0;
    text-align: center;
    max-width: 85%;
    margin: 0.8em auto;
  }
  
  .features-container {
    margin: 0 auto;
    justify-content: center;
  }
  
  .feature-item {
    width: 45%;
    min-width: 260px;
    margin: 1rem;
  }
  
  .Launch-now-btn {
    margin: 1.5rem auto;
    display: flex;
    justify-content: center;
  }
  
  .carousel-slide {
    flex: 0 0 50%;
  }
}

/* Enhanced Typography and Readability for All Mobile */
@media (max-width: 768px) {
  /* Improve readability */
  .feature-item p,
  .carousel-card-content p,
  .description,
  .cta-description-features {
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #f0f0f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  /* Enhanced contrast for headings */
  .feature-item h3,
  .carousel-card-content h3,
  .cta-heading-features,
  .features-section h2 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    line-height: 1.3;
  }
  
  /* Soften card appearances */
  .feature-item,
  .carousel-card,
  .outer {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* Reduce animation intensity */
  @keyframes glowBorder {
    from {
      border-color: rgba(0, 255, 255, 0.3);
    }
    to {
      border-color: rgba(0, 255, 255, 0.5);
    }
  }
  
  /* Improve touch interaction */
  .feature-item,
  .carousel-card,
  .Launch-now-btn,
  .carousel-prev,
  .carousel-next,
  .carousel-dot {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Smooth transitions */
  * {
    transition: all 0.3s ease;
  }
}

/* Dark Mode Optimization */
@media (prefers-color-scheme: dark) {
  .feature-item,
  .carousel-card {
    background: rgba(1, 20, 30, 0.5);
  }
  
  .feature-item p,
  .carousel-card-content p,
  .description {
    color: #e6e6e6;
  }
}

/* Reduce Motion For Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Base Mobile Styles (Small phones - 320px-375px) */
@media (max-width: 375px) {
  /* Carousel Section */
  .carousel-container {
    padding: 15px;
    max-width: 95%;
  }
  
  .carousel-slide {
    flex: 0 0 100%; /* Single card per view on smallest screens */
  }
  
  .carousel-card-image {
    height: 150px; /* Smaller image height */
  }
  
  .carousel-card-content {
    padding: 12px;
  }
  
  .carousel-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .carousel-card-content p {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  
  .carousel-prev, .carousel-next {
    padding: 6px;
    font-size: 16px;
  }
  
  .carousel-dots {
    padding: 10px;
  }
  
  .carousel-dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
  
  /* Features Section */
  .features-section {
    padding: 1rem 0.5rem;
  }
  
  .cta-heading-features {
    font-size: 1.3rem;
    margin-left: 5px;
  }
  
  .cta-description-features {
    font-size: 0.8em;
    margin-left: 5px;
    margin-bottom: 0.75em;
  }
  
  .features-container {
    margin-left: 0;
  }
  
  .feature-item {
    min-width: 100%;
    padding: 0.75rem;
    margin: 0.3rem 0;
  }
  
  .feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-item p {
    font-size: 0.75rem;
  }
  
  .Launch-now-btn {
    margin-left: 5px;
    font-size: 13px;
    padding: 0.4em 0.8em;
  }
  
  /* Facts Section */
  .outer {
    height: 200px;
    margin: 8px 0;
  }
  
  .card .text {
    font-size: 2.5rem;
  }
  
  .description {
    font-size: 0.85rem;
  }
}

/* Medium Mobile Styles (Medium phones - 376px-480px) */
@media (min-width: 376px) and (max-width: 480px) {
  /* Carousel Section */
  .carousel-container {
    padding: 20px;
    max-width: 95%;
  }
  
  .carousel-slide {
    flex: 0 0 100%; /* Single card per view */
  }
  
  .carousel-card-image {
    height: 170px;
  }
  
  .carousel-card-content {
    padding: 15px;
  }
  
  .carousel-card-content h3 {
    font-size: 1.2rem;
  }
  
  .carousel-card-content p {
    font-size: 0.8rem;
  }
  
  /* Features Section */
  .features-section {
    padding: 1rem;
  }
  
  .cta-heading-features {
    font-size: 1.4rem;
    margin-left: 8px;
  }
  
  .cta-description-features {
    font-size: 0.85em;
    margin-left: 8px;
  }
  
  .feature-item {
    min-width: 100%;
    padding: 0.85rem;
  }
  
  .feature-item h3 {
    font-size: 1.2rem;
  }
  
  .Launch-now-btn {
    margin-left: 8px;
    font-size: 13.5px;
  }
}

/* Large Mobile Styles (Large phones - 481px-576px) */
@media (min-width: 481px) and (max-width: 576px) {
  .carousel-container {
    padding: 25px;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
  }
  
  .carousel-card-image {
    height: 180px;
  }
  
  .carousel-card-content h3 {
    font-size: 1.3rem;
  }
  
  .features-section h2,
  .cta-heading-features {
    font-size: 1.6rem;
    margin-left: 12px;
  }
  
  .cta-description-features {
    font-size: 0.9em;
    margin-left: 12px;
  }
  
  .feature-item {
    min-width: 100%;
  }
}

/* Tablet Styles - Refinements */
@media (min-width: 577px) and (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%; /* 2 cards per row */
  }
  
  .carousel-container {
    padding: 30px;
  }
  
  .features-container {
    justify-content: center; /* Center features on tablet */
  }
  
  .feature-item {
    width: 45%;
    min-width: 280px;
    margin: 0.5rem;
  }
}

/* Portrait orientation specific adjustments */
@media (max-width: 576px) and (orientation: portrait) {
  .carousel-card-image {
    height: 160px; /* Slightly shorter images in portrait */
  }
  
  .outer {
    height: auto; /* Make facts cards height auto for better content fit */
    min-height: 200px;
    padding-bottom: 15px;
  }
}

/* Additional touch-friendly improvements for mobile */
@media (max-width: 576px) {
  /* Larger touch targets */
  .carousel-prev, .carousel-next {
    width: 32px;
    height: 32px;
  }
  
  /* Improved spacing for tap targets */
  .carousel-dots {
    margin-top: 5px;
  }
  
  .carousel-dot {
    margin: 0 5px; /* More space between dots for easier tapping */
  }
  
  /* Fix content overflow issues */
  .carousel-card {
    overflow: hidden;
  }
  
  /* Ensure buttons are easy to tap */
  .Launch-now-btn {
    padding: 0.7em 1em;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  /* Fix potential text overflow */
  .carousel-card-content h3,
  .feature-item h3 {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Fix for very small landscape screens */
@media (max-height: 450px) and (orientation: landscape) {
  .carousel-card-image {
    height: 120px; /* Shorter cards in landscape on very small screens */
  }
  
  .carousel-card-content {
    padding: 10px;
  }
  
  .carousel-card-content p {
    margin-bottom: 10px;
  }
}

/* High pixel density screens - sharper borders */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .carousel-card,
  .feature-item {
    border-width: 0.5px; /* Thinner borders on high-DPI screens */
  }
}

/* Certification Slider */
.top {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 5px 60px #00a2ff25;
  border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.575)) 1;
  margin-bottom: 250px;
}

.slider-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
  padding: 20px;
}

.slider-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: left;
  height: auto;
}

#certifications h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0.5em 0;
  text-align: left;
  color: white;
}

#certifications p {
  font-size: 1.2em;
  margin-top: 0.5em;
  margin-bottom: 1em;
  line-height: 1.6;
  text-align: left;
}

.slider-card {
  width: 140px;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  align-items: flex-end;
  background-color: #000;
  transform: scale(1);

}


.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1.1);

}


.slider-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}

.slider-card .slider-description {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px); /* Ensure padding from edges */
  padding: 10px;
  border-radius: 10px;
}

.slider-description h4 {
  font-size: 1.5rem;
  color: #e3f3ff;
  margin-bottom: 5px;
  font-family: "Style Script", cursive;
  text-align: left;
}

.slider-description p {
  color: white;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.slider-wrapper input {
  display: none;
}

input:checked + label {
  width: 800px;
}

/* Background Images for Cards */
.slider-card[for="slide1"] img {
  content: url(../images/gold.svg);
}

.slider-card[for="slide2"] img {
  content: url(../images/silver.svg);
}

slider-card[for="slide3"] img {
  content: url(../images/bronze.svg);
}

@media (max-width: 1366px) {
  .top {
    padding: 40px;
    margin-bottom: 150px;
  }

  .slider-wrapper {
    padding: 15px;
  }

  .slider-container {
    gap: 20px;
  }

  #certifications h2 {
    font-size: 2rem;
  }

  #certifications p {
    font-size: 1rem;
  }

  .slider-card {
    width: 120px;
    height: 400px;
    border-radius: 1.2rem;
  }

  .slider-card .slider-description {
    bottom: 8px;
    left: 8px;
    padding: 8px;
  }

  .slider-description h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  .slider-description p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  input:checked + label {
    width: 600px;
  }
}

@media (max-width: 768px) {
  .slider-card {
    width: 100px;
    height: 150px;
    border-radius: 1rem;
  }

  input:checked + label {
    width: 250px;
  }

  .slider-card .slider-description {
    font-size: 0.8rem;
  }
}


/* Sets up aparts Section Styles */
.bug-system-section {
    padding: 60px 0;
    text-align: center;
    background-color: transparent; /* Light background color */
	animation: fadeInUp 1s ease-out forwards;
}

.bug-system-section .container {
    max-width: 800px;
    margin: 0 auto;
}


.bug-system-section p {
  font-family: 'Chakra Petch', sans-serif;
  margin-bottom: 35px;
  font-weight: bold;
  color: #fff; /* Corrected color value */
  font-size: 30px;
  text-align: center;
}

.bug-triage img {
    width: 500px; 
}
@media (max-width: 768px) {
  .bug-system-section {
    padding: 40px 0;
  }

  .bug-system-section p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .bug-triage img {
    width: 80%;
    height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .bug-system-section {
    padding: 50px 0;
  }

  .bug-system-section p {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .bug-triage img {
    width: 80%; 
  }
}
@media (max-width: 768px) {
  .bug-system-section {
      padding: 40px 0;
  }

  .bug-system-section p {
      font-size: 18px;
      margin-bottom: 20px;
  }

  .bug-triage img {
      width: 80%;
      height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .bug-system-section {
      padding: 50px 0;
  }

  .bug-system-section p {
      font-size: 22px;
      margin-bottom: 25px;
  }

  .bug-triage img {
      width: 80%;
  }
}

/* Certification Slider - Mobile First Approach */
@media (max-width: 480px) {
  .top {
    max-width: 95%;
    padding: 30px 20px;
    margin-bottom: 100px;
    border-radius: 15px;
  }

  .slider-wrapper {
    padding: 10px;
  }

  .slider-container {
    gap: 15px;
    justify-content: center; /* Better for mobile */
  }

  #certifications h2 {
    font-size: 1.8rem;
    text-align: center; /* Better for mobile */
  }

  #certifications p {
    font-size: 1rem;
    text-align: center; /* Better for mobile */
  }

  .slider-card {
    width: 100px;
    height: 150px;
    border-radius: 1rem;
  }

  .slider-card .slider-description {
    bottom: 5px;
    left: 5px;
    padding: 5px;
  }

  .slider-description h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .slider-description p {
    font-size: 0.7rem;
    line-height: 1.2;
    display: none; /* Hide description on smallest screens */
  }

  input:checked + label {
    width: 200px;
  }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
  .top {
    padding: 20px 10px;
    margin-bottom: 120px;
  }

  .slider-card {
    width: 100px;
    height: 140px;
  }

  .slider-description h4 {
    font-size: 1rem;
  }

  input:checked + label {
    width: 300px;
  }
}

/* Bug System Section - Mobile */
@media (max-width: 768px) {
  .bug-system-section {
    padding: 30px 0;
  }

  .bug-system-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .bug-triage img {
    width: 90%;
    max-width: 350px;
  }
}

/* Larger Mobile Screens (481px-768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .bug-system-section p {
    font-size: 1.3rem;
  }
}

/* What is Bug Bounty Section */
#bug-bounty-info {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 3px 600px  #00a2ff25;
  border: 1px solid rgba(0, 71, 137, 0.5);
  padding: 30px; 
  margin: 30px auto; 
  max-width: 1200px;
  box-sizing: border-box;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, backdrop-filter 0.3s ease;
}

#bug-bounty-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/about.png'); 
  background-size: cover; 
  background-position: center; 
  opacity: 0.9; 
  z-index: -1;
  transition: backdrop-filter 0.3s ease; 
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  #bug-bounty-info {
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px); 
  }
}

#bug-bounty-info::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 0;
}

#bug-bounty-info h2 {
  font-size: 30px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  color: #00c3ff; 
  margin-bottom: 30px; 
  position: relative;
  z-index: 1;
}

#bug-bounty-info p {
  font-size: 18px; 
  line-height: 1.6; 
  color: #f5f5f5; 
  margin-bottom: 40px; 
  text-align: center;
  position: relative;
  z-index: 1;
}

#bug-bounty-info:hover {
  backdrop-filter: blur(12px); 
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 70px rgba(0, 0, 0, 0.35); 
  transform: scale(1.03); 
}
@media (max-width: 768px) {
  #bug-bounty-info {
    padding: 20px;
    margin: 20px auto;
    max-width: 100%;
    border-radius: 16px;
  }

  #bug-bounty-info h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }

  #bug-bounty-info p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  #bug-bounty-info::before {
    background-image: url('../images/bugbounty_is_small.jpg');
    opacity: 0.8;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  #bug-bounty-info {
    padding: 25px;
    margin: 25px auto;
    max-width: 90%;
    border-radius: 20px;
  }

  #bug-bounty-info h2 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  #bug-bounty-info p {
    font-size: 17px;
    margin-bottom: 35px;
  }

  #bug-bounty-info::before {
    background-image: url('../images/bugbounty_is_medium.jpg');
    opacity: 0.85;
  }
}




/* pricing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.text-center p {
  font-size: 30px;
  font-weight: bold;
}

.description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: normal;
  color: #8f9bb2;
}

.grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.product {
  background-color: #1d273aab;
  border-radius: 18px;
  padding: 20px;
  flex: 2;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  border: 2px solid #ffffff1e;
 
}

.product-header h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.product-details {
  margin-bottom: 20px;
  color: #8f9bb2;
}

.product-price {
  font-size: 28px;
  margin-bottom: 20px;
}

.product-price span {
  position: relative;
  display: inline-block;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: transparent;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 10%, #d2e4ff 20%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  margin-bottom: 0.5em;

}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin: 10px 0;
}

/* Highlight for popular product */
.product-popular {
  border: 2px solid #5cd9ff;
  transform: scale(1.1);
  position: relative;
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.062), 0 0 40px rgba(0, 195, 255, 0.11), 0 0 60px rgba(0, 195, 255, 0.2);
  background: linear-gradient( #1d233a65, #77dfff1e) ;
}

.product-popular .tag {
  background-color: #77dfff;
  color: #00293b;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 30px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
}

.product-popular h2 {
  font-size: 26px; /* Larger font size for the popular product */
  position: relative;
  color: #fff;
}

@media (max-width: 992px) {
  .grid {
    flex-direction: column;
  }
}



/* Question And Answers Section */
#qna {
    padding: 80px 50px;
    text-align: center;
}

#qna h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.question-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}

.question {
    background: linear-gradient(135deg, rgb(3 22 29 / 80%), rgb(4 28 36 / 60%));
    border-radius: 20px;
    padding: 30px 40px;
    width: 85%;
    max-width: 1000px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00ff88, #00d4ff);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.question:hover {
    border-color: rgba(0, 212, 255, 0.5);
}

.question:hover::before {
    opacity: 1;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.question.active {
    border-color: rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, rgba(29, 51, 58, 0.95), rgba(29, 51, 58, 0.8));
}

.question.active::before {
    opacity: 1;
}

.question h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.3rem;
    margin: 0;
    padding-right: 50px;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.question:hover h3 {
    color: #00d4ff;
}

.toggle-answer {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    cursor: pointer;
    outline: none;
    color: #00d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-answer:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.question.active .toggle-answer {
    transform: translateY(-50%) rotate(45deg);
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.answer.visible {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.answer p {
    text-align: left;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0;
}

.bug-qna {
    display: flex;
    justify-content: center;
    margin: 40px 20px;
    position: relative;
}



.bug-qna img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    transition: transform 0.4s ease;
}


/* Responsive Design */
@media (max-width: 1366px) {
    #qna {
        padding: 60px 30px;
    }

    #qna h2 {
        font-size: 2.2rem;
    }

    .question-container {
        margin-top: 40px;
        gap: 15px;
    }

    .question {
        padding: 25px 35px;
        width: 90%;
    }

    .question h3 {
        font-size: 1.2rem;
    }

    .toggle-answer {
        right: 25px;
        width: 36px;
        height: 36px;
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    #qna {
        padding: 40px 20px;
    }

    #qna h2 {
        font-size: 1.8rem;
    }

    .question-container {
        margin-top: 30px;
        gap: 12px;
    }

    .question {
        padding: 20px 25px;
        width: 95%;
    }

    .question h3 {
        font-size: 1.05rem;
        padding-right: 45px;
    }

    .toggle-answer {
        right: 20px;
        width: 32px;
        height: 32px;
        font-size: 1.2em;
    }

    .answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .bug-qna {
        margin: 30px 10px;
    }
}

@media (max-width: 480px) {
    #qna {
        padding: 30px 15px;
    }

    .question {
        padding: 18px 20px;
        width: 98%;
    }

    .question h3 {
        font-size: 0.95rem;
    }

    .toggle-answer {
        right: 15px;
        width: 28px;
        height: 28px;
        font-size: 1.1em;
    }
}

/* Request Demo Section */
.request-demo-section {
  padding: 2rem;
  background-color: #ffffff;
  max-width: 2000px;
  margin: 2rem auto;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.discover-description {
  font-size: 1.4rem; 
  margin-bottom: 1.5rem; 
  color: #333;
  line-height: 1.5; 
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 1.5rem;
}

.input-container {
  width: 100%;
  margin-bottom: 10px;
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center; 
}

.input-group {
  display: flex;
  flex-direction: column;
  width: 100%; 
  max-width: 500px; 
  margin-bottom: 15px;
}

.input-group label {
  font-size: 1rem;
  color: #000000;
  text-align: left;
}

.input-group input,
.input-group select {
  padding: 0.75rem;
  border: 1px solid #392747;
  font-size: 1rem;
  background-color: #07001D;
  color: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #0078d4; 
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.2); 
}

.input-group input::placeholder {
  color: #c7c7c7; 
}

.uv-checkbox-wrapper {
  margin: 20px 0;
}

.styled-button {
  font-family: 'Chakra Petch', sans-serif;
  margin-top: 60px;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
  -webkit-clip-path: polygon(0 0, 0 0, 100% 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 100% 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 100%);
  height: 40px;
  font-size: 0.9rem;
  line-height: 14px;
  letter-spacing: 1.2px;
  transition: 0.2s 0.1s;
  background-image: linear-gradient(90deg, #28285a, #6220fb);
  border: 0 solid;
  overflow: hidden;
  position: relative;
  padding-left: 50px; 
  padding-right: 50px; 
}

.styled-button:hover {
  color: transparent;
  cursor: pointer;
  background: linear-gradient(221deg, rgba(10,129,167,1) 0%, rgba(150,114,255,1) 100%);
  padding-right: 62px;
  padding-left: 62px;
}

.styled-button .svg-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.styled-button:hover .svg-wrapper {
  opacity: 1;
}



/* Contact-Page Section */
.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url('../images/contact.png') no-repeat center center/cover;
  padding: 20px;
  box-sizing: border-box;
}

.contact-h {
  font-family: 'Chakra Petch', sans-serif;
	font-size: 30px;
	color: #00c3ff;
	text-align: center;
}
.image-and-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.image-and-text img {
  max-width: 30%;
  height: auto;
}

.text-content {
  color: white;
  text-align: center;
  margin-top: 20px;
}

.text-content h6 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.text-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.text-content ul li {
  font-size: 1rem;
  margin: 10px 0;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.text-content ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #1cffe1;
  font-size: 1.2rem;
}


.form-submit-btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}

.form-submit-btn:hover {
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .contact-page {
    padding: 10px;
  }

  .text-content h6 {
    font-size: 2rem;
  }

  .text-content ul li {
    font-size: 0.9rem;
  }

  .form {
    padding: 20px;
  }

  .form-submit-btn {
    padding: 10px;
    font-size: 0.9rem;
  }
}
/* Base Slider Styles */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 50px 0;
}

.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  display: flex;
  width: 100%;
  flex-shrink: 0;
}

.post {
  flex: 1;
  padding: 1px;
  box-sizing: border-box;
  backdrop-filter: blur(20px);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(2, 0, 9, 0.459);
  padding-bottom: 60px;
}

.post:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.post img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.post-content {
  color: #fff;
  padding: 20px;
}

.post-title {
  font-size: 26px;
  margin: 10px 0;
  font-weight: bold;
  text-align: left;
  color: #ffffff;
}

.post-summary {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.blog-intro-text {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-in-out forwards;
}

.cta {
  display: inline-block;
  padding: 12px 24px;
  color: #fff;
  background-color: #6225e6;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 15px;
  font-weight: 500;
}

.cta:hover {
  background-color: #a584ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(98, 37, 230, 0.4);
}

/* Navigation Controls */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .slider {
    padding: 30px 0;
  }

  .post {
    margin: 0 10px;
    padding-bottom: 40px;
  }

  .post img {
    height: 180px;
  }

  .post-title {
    font-size: 18px;
  }

  .post-summary {
    font-size: 12px;
    line-height: 1.4;
  }

  .blog-intro-text {
    font-size: 18px;
    padding: 0 15px;
  }

  .cta {
    padding: 10px 10px;
    font-size: 14px;
  }

  .prev, .next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 375px) {
  .slider {
    padding: 20px 0;
  }

  .post {
    margin: 0 8px;
    padding-bottom: 30px;
  }

  .post img {
    height: 150px;
  }

  .post-title {
    font-size: 12px;
  }

  .post-summary {
    font-size: 5px;
  }

  .blog-intro-text {
    font-size: 15px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .post:hover {
    transform: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

  .cta:active {
    background-color: #a584ff;
    transform: translateY(1px);
  }
}

/* Landscape Mode */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .post img {
    height: 160px;
  }

  .post-content {
    padding: 15px;
  }
}

/* Loading State */
.slides.loading {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Smooth Scrolling */
.slides {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Accessibility */
.prev:focus, .next:focus, .cta:focus {
  outline: 2px solid #a584ff;
  outline-offset: 2px;
}

/* Basic CSS for dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e2e2e2;
  cursor: pointer;
}

.dots span.active {
  background-color: #4301FF;
  width: 10px;
  height: 10px;
  display: block;
}



/* Mobile First Base Styles (under 600px) */
.btn {
  --border-color: linear-gradient(-45deg, #d9f6ff, #73ade2, #00fffb);
  --border-width: 0.125em;
  --curve-size: 0.4em; /* Slightly smaller corners for mobile */
  --blur: 30px;
  --bg: #080312;
  --color: #afffff;
  
  /* Mobile sizing */
  padding: 0.4em 1.2em;
  font-size: 14px;
  margin-top: 15px;
  
  /* Visual properties */
  text-decoration: none;
  color: var(--color);
  cursor: pointer;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  border: 0;
  text-transform: uppercase;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6); /* Lighter shadow for mobile */
  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );
  transition: color 250ms;
}

/* Small tablets (600px+) */
@media (min-width: 600px) {
  .btn {
    padding: 0.45em 1.35em;
    font-size: 15px;
    --curve-size: 0.45em;
    margin-top: 20px;
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.6);
  }
}

/* Tablets and small laptops (768px+) */
@media (min-width: 768px) {
  .btn {
    padding: 0.5em 1.5em;
    font-size: 16px;
    --curve-size: 0.5em;
    margin-top: 25px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .btn {
    font-size: 17px;
  }
}

/* All other button effects remain unchanged below this line */
.btn::after,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
}

.btn::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
}

@keyframes move-bg7234 {
  0% { background-position: 31% 0%; }
  50% { background-position: 70% 100%; }
  100% { background-position: 31% 0%; }
}

.btn::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}

.btn:where(:hover, :focus)::after {
  clip-path: polygon(
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width))
  );
  transition: 200ms;
}

.btn:where(:hover, :focus) {
  color: #fff;
}

/* Tablet (600px+) */
@media (min-width: 600px) {
  .btn {
    padding: 0.4em 1.2em;
    font-size: 14px;
    --curve-size: 0.4em;
  }
}

/* Small Desktop (768px+) */
@media (min-width: 768px) {
  .btn {
    padding: 0.5em 1.5em;
    font-size: 16px;
    --curve-size: 0.5em;
  }
}

/* Full Desktop (1024px+) */
@media (min-width: 1024px) {
  .btn {
    font-size: 17px; /* Original size */
  }
}

/* Section Styles */
.cta-section {
  background: linear-gradient(135deg, #020009, #003546, #000609);
  background-size: 200% 200%;
  background-position: center;
  animation: gradientShift 10s ease infinite;
  background-blend-mode: overlay;
  color: #fff;
  padding: 3em 1em;
}

/* Content Styles */
.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Text Styles */
.cta-text {
  max-width: 60%;
}

/* Heading Styles */
.cta-heading {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0.5em 0; /* Adjusted margin for better spacing */
  text-align: left;
  color: white;
}

/* Subheading Styles */
.cta-subheading {
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: transparent;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 10%, #d2e4ff 20%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  margin-bottom: 0.5em; /* Adjust margin to bring closer to heading */
}

@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}

/* Description Styles */
.cta-description {
  font-size: 1.2em;
  margin-top: 1em; /* Adjusted top margin for spacing below heading/subheading */
  margin-bottom: 2em;
  line-height: 1.6;
}

/* From Uiverse.io by nkhlrjrs */ 
/* CSS code */
.schedule-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #313131;
  font-size: 16px;
  text-decoration: none;
  border-radius: 20px;
 /* Rounded corners */
  transition: background-color 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 /* Smooth transitions */
  font-family: 'Poppins', sans-serif;
 /* Change font to Poppins */
}

.schedule-button:hover {
  background-color: #002f3d;
  transform: translateX(-5px);
  color:  white;
 /* Move button to the left */
}

.schedule-button .arrow {
  display: none;
  width: 20px;
  height: 20px;
  fill: #ffffff;
  opacity: 0;
 /* Initial opacity */
  transform: translateX(-20px) rotate(-45deg);
 /* Initial position */
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
 /* Smooth transitions */
}

.schedule-button:hover .arrow {
  display: inline-block;
  opacity: 1;
 /* Fade in on hover */
  animation: slide-in 0.4s forwards;
}

@keyframes slide-in {
  from {
    transform: translateX(-50px) rotate(-45deg);
    opacity: 0.1;
 /* Slightly visible */
  }

  to {
    transform: translateX(0) rotate(-45deg);
    opacity: 1;
 /* Fully visible */
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .cta-content {
      flex-direction: column;
      text-align: center;
  }

  .cta-text {
      max-width: 100%;
      margin-bottom: 1em;
  }

  .cta-button-container {
      max-width: 100%;
  }

  .cta-heading {
      font-size: 2em;
  }

  .cta-subheading {
      font-size: 1.5em;
  }

  .cta-description {
      font-size: 1em;
  }

  .cta-button {
      padding: 0.5em 1.5em;
      font-size: 1em;
  }
}


/* Terminal Part */ 
.terminal-card {
  box-shadow: 0 3px 600px  #00a2ff25;
  border: 1px solid rgba(0, 71, 137, 0.5);
  padding: 1rem;
  overflow: hidden;
  background-color: #1d333aab;
  border-radius: 18px;
  padding: 20px;
  flex: 1;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  border: 2px solid #ffffff1e;
  backdrop-filter: blur(8px);
  max-width: 1200px;
  justify-content: center;
  margin: auto;
  margin-top: 20px;
  
}
.wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
  border: 0.5px solid #525252;
  border-radius: 8px;
  overflow: hidden;
}
.terminal {
  display: flex;
  flex-direction: column;

  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  min-height: 40px;
  padding-inline: 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #202425;
}
.title {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 2.5rem;
  user-select: none;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #8e8e8e;
}
.title > svg {
  height: 18px;
  width: 18px;
  margin-top: 2px;
  color: #006adc;
}
.copy_toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 0.65px solid #c1c2c5;
  margin-left: auto;
  border-radius: 6px;
  background-color: #202425;
  color: #8e8e8e;
  cursor: pointer;
}
.copy_toggle > svg {
  width: 20px;
  height: 20px;
}
.copy_toggle:active > svg > path,
.copy_toggle:focus-within > svg > path {
  animation: clipboard-check 500ms linear forwards;
}
.body {
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow-x: auto;
  padding: 1rem;
  line-height: 19px;
  color: white;
  background-color: black;
  white-space: nowrap;

}
.pre {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-wrap: nowrap;
  white-space: pre;
  background-color: transparent;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 16px;
}
.pre code:nth-child(1) {
  color: #575757;
}
.pre code:nth-child(2) {
  color: #e34ba9;
}
.cmd {
  height: 19px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.cmd::before {
  content: attr(data-cmd);
  position: relative;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  animation: inputs 8s steps(22) infinite;
}
.cmd::after {
  content: "";
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
  border-right: 0.15em solid #e34ba9;
  animation: cursor 0.5s step-end infinite alternate, blinking 0.5s infinite;
}

@keyframes blinking {
  20%,
  80% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0);
  }
}
@keyframes cursor {
  50% {
    border-right-color: transparent;
  }
}
@keyframes inputs {
  0%,
  100% {
    width: 0;
  }
  10%,
  90% {
    width: 58px;
  }
  30%,
  70% {
    width: 215px;
    max-width: max-content;
  }
}
@keyframes clipboard-check {
  100% {
    color: #fff;
    d: path(
      "M 9 5 H 7 a 2 2 0 0 0 -2 2 v 12 a 2 2 0 0 0 2 2 h 10 a 2 2 0 0 0 2 -2 V 7 a 2 2 0 0 0 -2 -2 h -2 M 9 5 a 2 2 0 0 0 2 2 h 2 a 2 2 0 0 0 2 -2 M 9 5 a 2 2 0 0 1 2 -2 h 2 a 2 2 0 0 1 2 2 m -6 9 l 2 2 l 4 -4"
    );
  }
}






/* Partners website */
.intro {
  position: relative;
  height: 50vh;
  background: url('../images/architecture-black-and-white-buildings-business-264594.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  background-attachment: fixed;
  font-family: 'Poppins', sans-serif;  
}


.intro-content {
  position: relative;
  padding: 30px;
  max-width: 1000px; 
  text-align: left;
  z-index: 2; 
}



.partner p {
  font-family: 'Bebas Neue', cursive;
  font-size: 3em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-image: linear-gradient(#01eeff, rgb(4, 181, 212));
  background-size: 100% 10px;
  background-repeat: no-repeat;
  background-position: 100% 0%;
   transition: background-size .7s, background-position .5s ease-in-out;
}

.partner p:hover {
  background-size: 100% 100%;
  background-position: 0% 100%;
  transition: background-position .7s, background-size .5s ease-in-out;
}


@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .intro h2 {
    font-size: 3em; /* Maintain size on smaller screens */
  }
  .intro p {
    font-size: 1.2em; /* Adjust size for mobile devices */
  }
}



/* Overall Section Styling */
.benefits {
  background: #f9fafb; /* Light background */
  padding: 100px 20px 80px;
  color: #374151;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.benefits h5 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #00060A; /* Bright blue accent */
  margin-bottom: 60px;
}

/* Card Container */
.benefits .container {
  display: flex;
  gap: 20px;
  max-width: 1920px;
  overflow-x: auto;
  padding: 0 20px;
}

/* Glassy Card Styling */
.benefits ul {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.benefits ul li {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 280px;
  min-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  border-left: 5px solid transparent;
  position: relative;
  transition: all 0.3s ease;
}

/* Circular Icon */
.benefits ul li .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #dbeafe, #eff6ff);
  color: #00c3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Title and Text */
.benefits ul li strong {
  display: block;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.benefits ul li p {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

/* General styles for the section */
.partner-form {
  padding: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  text-align: left;
  border-radius: 10px;
}

/* Container for content */
.container {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 1.5rem;
}

/* Header styles */
.partner-form h2 {
  font-size: 2.5em;
  color: #dbdbdb;
  margin-bottom: 1rem;
  text-align: left;
}

.partner-form p {
  font-size: 1.4rem; 
  color: #d6d6d6; 
  line-height: 1.5; 
  margin-bottom: 2rem; 
  text-align: left;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  align-items: left; 
  gap: 1rem;
  width: 100%; 
}

/* Input styles */
.input-group {
  width: 100%; 
  max-width: 1000px; 
}

.input-group input,
.input-group textarea {
  padding: 0.75rem;
  border: 1px solid #273247;
  font-size: 1rem;
  background-color: #273247; /* Dark background for inputs */
  color: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #0078d4; 
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.2); 
}

/* Placeholder styles */
.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #c7c7c7; 
}
		/* Add this to your existing CSS */
		.team-member {
		  position: relative;
		  transition: all 0.3s ease;
		}
		.social-links {
		  display: flex;
		  gap: 10px;
		  margin-top: 8px;
		  justify-content: center;
		}
		
		.social-links a {
      text-decoration: none;
		  color: #ffffff;
		  transition: color 0.3s ease;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		}
		
		.social-links a:hover {
		  color: #4db6ac;
		}

/* Team member container */
.team-member {
  position: relative;
  width: fit-content;
  }
  

  .image-container {
  position: relative;
  display: inline-block;
  }


.team {
  padding: 50px 20px;
  border-radius: 16px;
  color: #ffffff;
  margin-bottom: 200px;
}



.team p {
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
}

/* Team Container */
.team-container {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Team Member */
.team-member {
  position: relative;
  text-align: center;
  max-width: 250px;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 500ms ease, border-radius 500ms ease;
}

.team-member:hover img {
  transform: scale(1.2);
  border-radius: 16px;
}

.team-member .circle {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #00c3ff;
  inset: 0;
  z-index: -1;
  transition: transform 400ms ease, background 400ms ease;
}

.team-member:hover .circle {
  transform: scale(1.05);
  background: #f59393;
}

/* Details Section */
.details {
  margin-top: 16px;
  position: relative;
  font-family: "Chakra Petch", sans-serif;
}

/* Default Content (Name & Whomai) */
.details .name {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.details .whomai {
  font-size: 14px;
  font-weight: 500;
  color: #f0f0f0;
}

/* Hover Content (Glitch Effect) */
.details .nickname,
.details .category {
  font-style: italic;
  font-size: 16px;
  color: #93f5f2;
  animation: glitch-char 1.5s infinite;
}

.details .nickname {
  margin-top: 5px;
}

/* Text Transitions */
.details .default-content,
.details .hover-content {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.details .default-content {
  opacity: 1;
  transform: translateY(0);
}

.team-member:hover .default-content {
  opacity: 0;
  transform: translateY(-20px);
}

.team-member:hover .hover-content {
  opacity: 1;
  transform: translateY(0);
  animation: glitch 0.8s infinite;
}

/* Glitch Animation */
@keyframes glitch {
  0% {
    text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff;
    transform: translate(0);
  }
  25% {
    text-shadow: -2px 2px #ff00ff, 2px -2px #00ffff;
    transform: translate(-3px, 3px);
  }
  50% {
    text-shadow: 2px -2px #ff00ff, -2px 2px #00ffff;
    transform: translate(3px, -3px);
  }
  75% {
    text-shadow: -2px -2px #ff00ff, 2px 2px #00ffff;
    transform: translate(-3px, -3px);
  }
  100% {
    text-shadow: 0px 0px #ff00ff, 0px 0px #00ffff;
    transform: translate(0);
  }
}

/* Glitch Characters Animation */
@keyframes glitch-char {
  0% {
    content: " ";
  }
  25% {
    content: "*";
  }
  50% {
    content: "#";
  }
  75% {
    content: "&";
  }
  100% {
    content: " ";
  }
}




/* Mobile Media Queries */
/* Team Member Image - Mobile First */
.team-member img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 500ms ease, border-radius 500ms ease;
  margin-bottom: 1rem; /* Added mobile margin */
}

/* Tablet+ Sizes */
@media (min-width: 481px) {
  .team-member img {
    width: 160px;
    height: 160px;
    margin-bottom: 1.25rem; /* Slightly larger margin */
  }
}

@media (min-width: 768px) {
  .team-member img {
    width: 180px;
    height: 180px;
    margin-bottom: 1.5rem;
  }
}

/* Desktop Sizes */
@media (min-width: 1024px) {
  .team-member img {
    width: 200px;
    height: 200px;
    margin-bottom: 0; /* Remove margin on desktop if needed */
    /* Or keep it consistent: margin-bottom: 1.75rem; */
  }
}

/* Hover Effects (Desktop only) */
@media (hover: hover) {
  .team-member:hover img {
    transform: scale(1.2);
    border-radius: 16px;
    margin-bottom: 1.75rem; /* Adjust if needed during hover */
  }
}
@media screen and (max-width: 768px) {
  /* Global Resets and Typography */
  body {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
  }

  h1 {
    font-size: 24px;
    margin: 60px 0 20px;
  }

  h2 {
    font-size: 22px;
    margin: 40px 0 15px;
  }

  h4 {
    font-size: 18px;
    margin: 30px 0 15px;
  }

  h5 {
    font-size: 32px;
    text-align: center;
    margin: 25px 0;
  }

  /* Container and Layout */
  .container {
    width: 100%;
    padding: 0 15px;
  }

  /* Main Section */
  .main-section {
    padding: 30px 15px;
    margin-top: 20px;
    min-height: calc(100vh - 60px);
    flex-direction: column-reverse;
  }

  .main-section img {
    width: 100%;
    margin: 20px 0;
    padding: 0 10px;
  }

  .main-section .section-content {
    text-align: center;
    padding: 0 10px;
  }

  .main-section .section-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .main-section .section-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* About Us Section */
  #about-us {
    padding: 40px 15px;
    margin: 30px auto;
    max-width: 100%;
  }

  .glass-background {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }


  .text-content {
    text-align: center;
  }

  /* Voltage Button */
  .voltage-button button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
  }

  /* Carousel */
  .carousel-section {
    margin-top: 40px;
    padding: 15px 0;
  }

  .carousel-container {
    border-radius: 10px;
    padding: 15px;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  .carousel-card {
    margin: 10px;
    border-radius: 10px;
  }

  .carousel-card-image {
    height: 180px;
  }

  .carousel-card-content {
    padding: 15px;
  }

  .carousel-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .carousel-card-content p {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 1px solid #000c14;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 375px) {
  body {
    font-size: 14px;
  }

  .main-section .section-content h2 {
    font-size: 20px;
  }

  .main-section .section-content p {
    font-size: 14px;
  }

  .carousel-card-image {
    height: 150px;
  }
}

/* Landscape Mode */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .main-section {
    padding: 20px 15px;
  }

  .main-section img {
    max-height: 50vh;
    object-fit: contain;
  }

  .carousel-card-image {
    height: 140px;
  }
}

/* Tablet and Larger Screens */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .main-section {
    padding: 80px 30px;
    margin-top: 60px;
  }

  .main-section img {
    width: 100%;
    margin-right: 10px;
  }

  .main-section .section-content h2 {
    font-size: 32px;
  }

  .main-section .section-content p {
    font-size: 20px;
  }
}

/* Desktop and Larger Screens */
@media screen and (min-width: 1920px) {
  .main-section {
    padding: 120px 60px;
    margin-top: 100px;
  }

  .main-section img {
    width: 1080px;
    margin-right: 120px;
    margin-left: 60px;
  }

  .main-section .section-content h2 {
    font-size: 34px;
  }

  .main-section .section-content p {
    font-size: 25px;
  }
}

/* Partners Section Styles */
.partners-section {
    position: relative;
    padding: 40px 0; /* Reduced from 80px to 40px */
    background: linear-gradient(135deg, #000d1a 0%, #00363f 100%);
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/architecture-black-and-white-buildings-business-264594.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.partners-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 132, 184, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.partners-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-header {
    text-align: center;
    margin-bottom: 30px; /* Reduced margin */
}

.partners-header h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 10px; /* Reduced margin */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-header p {
    color: #a8b2d1;
    font-size: 1.1em;
    margin-bottom: 20px; /* Reduced margin */
    opacity: 0.9;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; /* Reduced gap */
    margin-top: 20px; /* Reduced margin */
}

.partner-card {
    background: rgba(0, 51, 102, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 132, 184, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 132, 184, 0.1), rgba(0, 51, 102, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.3);
    border-color: rgba(0, 132, 184, 0.2);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: brightness(1) contrast(1.2);
}

.partner-info {
    text-align: center;
    color: #fff;
}

.partner-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00c3ff;
}

.partner-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* President Tooltip for Yahya */
.partner-card[data-president="true"] {
    position: relative;
}

.partner-card[data-president="true"] .partner-logo {
    position: relative;
}

.partner-card[data-president="true"] .partner-logo::after {
    content: 'President';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 132, 184, 0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 132, 184, 0.3);
    z-index: 100;
}

.partner-card[data-president="true"] .partner-logo::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 132, 184, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.partner-card[data-president="true"] .partner-logo:hover::after,
.partner-card[data-president="true"] .partner-logo:hover::before {
    opacity: 1;
    visibility: visible;
}

.partner-card[data-president="true"] .partner-logo:hover::after {
    top: -45px;
}

.partner-card[data-president="true"] .partner-logo:hover::before {
    top: -20px;
}

.partner-card[data-president="true"]::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(0, 132, 184, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 132, 184, 0.2));
}

.partner-card[data-president="true"]:hover::after,
.partner-card[data-president="true"]:hover::before {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.partner-card[data-president="true"]:hover::before {
    top: -25px;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-header h2 {
        font-size: 2.2rem;
    }

    .partners-grid {
        gap: 25px;
    }

    .partner-card {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-header h2 {
        font-size: 2rem;
    }

    .partners-header p {
        font-size: 1rem;
    }

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

    .partner-card {
        padding: 20px;
    }

    .partner-logo {
        height: 100px;
    }

    .partner-info h3 {
        font-size: 1.2rem;
    }

    .partner-card[data-president="true"]::after {
        font-size: 14px;
        padding: 8px 16px;
        top: -40px;
    }

    .partner-card[data-president="true"]::before {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid rgba(0, 132, 184, 0.2);
        top: -20px;
    }
}

@media screen and (max-width: 480px) {
    .partners-section {
        padding: 30px 0;
    }

    .partners-header h2 {
        font-size: 1.8rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-card {
        padding: 15px;
    }

    .partner-logo {
        height: 80px;
    }

    .partner-info h3 {
        font-size: 1.1rem;
    }

    .partner-info p {
        font-size: 0.9rem;
    }

    .partner-card[data-president="true"]::after {
        font-size: 13px;
        padding: 6px 12px;
        top: -35px;
    }

    .partner-card[data-president="true"]::before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid rgba(0, 132, 184, 0.2);
        top: -15px;
    }
}

/* Simple President Tooltip for Yahya */
.partner-card[data-president="true"] .partner-logo {
    position: relative;
}

.partner-card[data-president="true"] .partner-logo:hover::after {
    content: 'President';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c3ff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Simple President Tooltip */
.team-member[data-president="true"] .image-container {
    position: relative;
}

.team-member[data-president="true"] .image-container:hover::after {
    content: 'President';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c3ff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.team-member[data-president="true"] .president-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c3ff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-member[data-president="true"] .image-container:hover .president-tooltip {
    opacity: 1;
}

/* Modern Bubble Tooltip for President */
.team-member[data-president="true"] .image-container {
    position: relative;
}

.team-member[data-president="true"] .president-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 51, 102, 0.85);
    color: #00c3ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 51, 102, 0.4),
        inset 0 0 20px rgba(0, 195, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 195, 255, 0.2);
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
    z-index: 10;
}

.team-member[data-president="true"] .president-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 51, 102, 0.85);
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.2));
}

.team-member[data-president="true"] .image-container:hover .president-tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

/* Remove the old tooltip styles */
.team-member[data-president="true"] .image-container::after {
    display: none;
}

/* Team Member Image Container */
.team-member .image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 132, 184, 0.3);
    transition: all 0.3s ease;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.8), transparent);
    margin-top: 40px;
}

.team-member .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    
    
}

.team-member:hover .image-container {
    border-color: rgba(0, 195, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
}

.team-member:hover .image-container img {
    transform: scale(1.1);
}

/* Modern Bubble Tooltip for President */
.team-member[data-president="true"] .image-container {
    position: relative;
}

.team-member[data-president="true"] .president-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 51, 102, 0.95);
    color: #00c3ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 51, 102, 0.4),
        inset 0 0 20px rgba(0, 195, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 195, 255, 0.2);
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
    z-index: 10;
}

.team-member[data-president="true"] .president-tooltip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 51, 102, 0.95);
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.2));
}

.team-member[data-president="true"] .image-container:hover .president-tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}


/* Trust Section Styles */
.trust-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.trust-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Chakra Petch', sans-serif;
    position: relative;
    display: inline-block;
}

.trust-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00b4b8, #0084ff);
    border-radius: 2px;
}

.trust-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.logo-item {
    background: linear-gradient(145deg, rgba(1, 30, 44, 0.4), rgba(1, 30, 44, 0.2));
    padding: 20px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.logo-item img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .trust-logos {
        gap: 20px;
    }
    
    .logo-item {
        padding: 15px 20px;
    }
    
    .logo-item img {
        height: 30px;
    }
    
    .trust-section h2 {
        font-size: 2rem;
    }
    
    .trust-section p {
        font-size: 1rem;
    }
}

/* Section Animation Classes */
.section-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

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

/* Different animation types */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

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

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

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

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


/* Our Team Section */
.cyberspace-team-section-wrapper {
        position: relative;
    max-width: 90%;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 600px #00a2ff25;
    border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.575)) 1;
    padding: 0.4rem 2rem;
    position: relative;
    overflow: hidden;

}

.cyberspace-team-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 181, 226, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cyberspace-team-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cyberspace-team-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}


.cyberspace-team-image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.cyberspace-team-content-wrapper {
    padding: 2rem 0;
}

.cyberspace-team-badge-text {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 181, 226, 0.1);
    border: 1px solid rgba(0, 181, 226, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00B5E2;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cyberspace-team-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
    text-align: left;
}

.cyberspace-team-subtitle-text {
    font-size: 1.2rem;
    color: #00B5E2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cyberspace-team-description-paragraph {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cyberspace-team-statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.cyberspace-stat-single-item {
    text-align: center;
}

.cyberspace-stat-number-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00B5E2;
    display: block;
    margin-bottom: 0.5rem;
}

.cyberspace-stat-label-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Events Section */
.cyberspace-events-section-wrapper {
    padding: 6rem 2rem;
    position: relative;
}

.cyberspace-events-main-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cyberspace-events-header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.cyberspace-events-badge-text {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 181, 226, 0.1);
    border: 1px solid rgba(0, 181, 226, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00B5E2;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.cyberspace-events-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
}

.cyberspace-events-subtitle-paragraph {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel */
.cyberspace-carousel-outer-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.cyberspace-carousel-track-container {
    display: flex;
    transition: transform 0.5s ease;
}

.cyberspace-carousel-single-slide {
    min-width: 100%;
    position: relative;
}

.cyberspace-event-card-wrapper {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cyberspace-event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cyberspace-event-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 12, 20, 0.95) 0%, rgba(0, 12, 20, 0.7) 60%, transparent 100%);
    padding: 3rem 2.5rem;
}

.cyberspace-event-date-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 181, 226, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #00B5E2;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.cyberspace-event-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.cyberspace-event-description-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
}

/* Carousel Controls */
.cyberspace-carousel-controls-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cyberspace-carousel-navigation-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cyberspace-carousel-navigation-btn:hover {
    background: rgba(0, 181, 226, 0.2);
    border-color: rgba(0, 181, 226, 0.4);
}

.cyberspace-carousel-indicators-container {
    display: flex;
    gap: 0.5rem;
}

.cyberspace-carousel-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cyberspace-carousel-indicator-dot.active {
    background: #00B5E2;
    width: 24px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .cyberspace-team-main-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .cyberspace-team-image-wrapper {
        height: 400px;
    }
    .cyberspace-team-statistics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cyberspace-events-section-wrapper {
        padding: 4rem 1.5rem;
    }
    .cyberspace-team-section-wrapper {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .cyberspace-team-main-title,
    .cyberspace-events-main-title {
        font-size: 2rem;
    }
    .cyberspace-team-statistics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }.cyberspace-team-main-title
    .cyberspace-event-card-wrapper {
        height: 400px;
    }
    .cyberspace-event-overlay-content {
        padding: 2rem 1.5rem;
    }
    .cyberspace-event-card-title {
        font-size: 1.4rem;
    }
}




/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
/* Assuming Chakra Petch is the primary aesthetic font and Inter/Poppins for readability */

/* --- Custom Color Palette & Variables --- */
:root {
    --primary-bg: #000C14;      /* Background (Very dark blue/black) */
    --dark-bg: #020c1b;         /* Chat/Panel base */
    --medium-bg: #00141d;       /* Message/Input background */
    --ui-border: #06718b;       /* UI borders (your --light-blue) */
    
    --neon-glow: #4dfff3;       /* Primary glow/accent (Cyan) */
    --accent-color: #ffffff;    /* Accent color (Your specified white) */
    
    --text-primary: #e6f1ff;    /* Light text */
    --text-secondary: #8892b0;  /* Subdued text */
    
    --error-red: #ff4d4d;
    
    --font-header: 'Inter', sans-serif;
    --font-body: 'Chakra Petch', sans-serif;
}

/* --- Base & Animations --- */
body.chat-open .chat-button {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
}

body.chat-open .chat-window {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(77, 255, 243, 0.4); }
    50% { box-shadow: 0 0 15px rgba(77, 255, 243, 0.8); }
}

/* --- Chat Button (Floating Icon) --- */
.chat-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(77, 255, 243, 0.5);
    animation: pulse 2.5s infinite;
    border: 2px solid var(--neon-glow);
}

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

.chat-button img {
    width: 28px;
    height: 28px;
    filter: invert(84%) sepia(26%) saturate(1096%) hue-rotate(140deg) brightness(106%) contrast(101%);
}

/* --- Chat Window Container --- */
.chat-window {
    display: none;
    position: fixed;
    z-index: 999;
    bottom: 24px;
    right: 24px;
    height: 540px;
    width: 380px;
    flex-direction: column;
    overflow: hidden;
    background: var(--dark-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--ui-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* --- Close Button (Header) --- */
.close {
    border: none;
    padding: 14px 0;
    background: var(--medium-bg);
    color: var(--neon-glow);
    text-align: center;
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--neon-glow);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.close:hover {
    background-color: rgba(77, 255, 243, 0.1);
}

/* --- Chat Area (Scrolling Content) --- */
.chat {
    flex: 1;
    padding: 20px 15px;
    overflow-y: auto;
    background: var(--dark-bg);
    scrollbar-width: thin;
    scrollbar-color: var(--ui-border) var(--dark-bg);
}

.chat::-webkit-scrollbar {
    width: 6px;
}

.chat::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

.chat::-webkit-scrollbar-thumb {
    background-color: var(--ui-border);
    border-radius: 6px;
}

/* ---------------------------------------------------------------- */
/* MESSAGE BUBBLES                                                  */
/* ---------------------------------------------------------------- */

.chat p {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
    max-width: 85%;
    word-wrap: break-word;
    position: relative;
    font-family: var(--font-body);
    border-radius: 18px;
}

/* --- Bot Message --- */
.model {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease-out;
}

.model .gemini-text {
    color: var(--neon-glow);
    font-family: var(--font-header);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.model .gemini-text::before {
    content: "🤖";
    display: inline-block;
    font-size: 14px;
    margin-right: 6px;
}

.model p {
    background: var(--medium-bg);
    color: var(--text-primary);
    box-shadow: none;
    font-weight: 400;
    /* Clean Asymmetrical Rounding */
    border-top-left-radius: 4px; 
}

/* --- User Message --- */
.user {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    animation: fadeIn 0.2s ease-out;
}

.user p {
    background: var(--ui-border); /* Solid, high-contrast user bubble */
    border: 1px solid var(--ui-border);
    color: var(--accent-color); /* White text on blue background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    text-align: left;
    margin-left: auto;
    font-weight: 500;
    /* Clean Asymmetrical Rounding */
    border-top-right-radius: 4px; 
}

/* --- Error Message --- */
.error p {
    font-size: 13px;
    text-align: center;
    color: var(--error-red);
    margin: 10px auto;
    max-width: 90%;
    background: rgba(255, 77, 77, 0.08);
    border: 1px solid rgba(255, 77, 77, 0.3);
    border-radius: 6px;
    padding: 8px;
}

/* ---------------------------------------------------------------- */
/* INPUT AREA                                                       */
/* ---------------------------------------------------------------- */

.input-area {
    height: 70px; /* Slightly taller area for presence */
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-bg);
    border-top: 1px solid var(--ui-border);
    position: relative;
}

.input-area::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-glow), transparent);
    opacity: 0.8;
}

.input-area input {
    flex: 1;
    height: 44px; /* Slightly taller input field */
    border: 1px solid var(--ui-border);
    background: var(--dark-bg);
    border-radius: 22px;
    padding: 0 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s ease;
    box-shadow: none;
}

.input-area input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.input-area input:focus {
    border-color: var(--neon-glow);
    box-shadow: 0 0 0 1px rgba(77, 255, 243, 0.3);
}

.input-area button {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: var(--neon-glow);
    color: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(77, 255, 243, 0.5); /* Button glow */
}

.input-area button:hover {
    background: var(--accent-color);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

.input-area button:active {
    transform: scale(0.9);
}

.input-area button img {
    width: 18px;
    height: 18px;
    /* Invert for dark icon on bright button */
    filter: invert(1);
}



        /* --- REDESIGNED SERVICES SECTION --- */
        .services-section {
            padding: 2rem 4rem;
            position: relative;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title {
            font-family: 'Chakra Petch', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, #a0a0a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Updated Bento Grid CSS */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 2rem;
        }

        .bento-item {
    background: rgba(0, 20, 29, 0.4);
    /* border: 1px solid rgba(77, 255, 243, 0.1); */
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s 
cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    backdrop-filter: blur(10px);
        }

        .bento-item:hover {
            border-color: var(--neon-blue);
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(77, 255, 243, 0.041);
            background: rgba(0, 20, 29, 0.7);
        }

        /* Background/Vector Image styling */
        .bento-vector {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 290px;
    height: auto;
    opacity: 0.1;
    transition: all 0.5s ease;
    z-index: 0;
    pointer-events: none;
        }

        .bento-vector img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 15px var(--neon-blue));
        }

        .bento-item:hover .bento-vector {
            opacity: 0.25;
            transform: scale(1.1) rotate(5deg);
        }

        /* Content Styling */
        .bento-content {
            position: relative;
            z-index: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .bento-content h3 {
            font-family: 'Chakra Petch', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .bento-content p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            flex-grow: 1; /* Pushes button to bottom */
        }

        .bento-content .btn {
            align-self: flex-start;
            margin-top: auto;
        }

        /* Decoration line */
        .bento-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-blue), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .bento-item:hover .bento-decoration {
            opacity: 1;
        }
