/**
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}
:root {
  --primary-color: #00f0ff;
  --secondary-color: #5c00ff;
  --bg-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

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

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

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

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

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.L-Heading{
  font-size: 4rem;
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

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

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

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

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


.footer .footer-about .logo img {
  width: 250px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  text-align: center;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.about-us-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 15px;
  overflow: hidden;
  background-color: #0a0a0a4d;
  z-index: 0;
}

/* Background Image Layer */
.about-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/about_new.jpg');
  background-size: cover;
  background-position:initial;
  filter: blur(10px) brightness(0.6);
  transform: scale(1.1);
  z-index: -1;
}

.about-us-section * {
  position: relative;
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  background: rgba(0,0,0,0.4);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.about-text {
  flex: 1;
}

.about-text h2 {
width: fit-content;
text-align: center;
  font-size: 4rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}


.about-visual {
flex: 1;
position: relative;
perspective: 1000px;
display: flex;
justify-content: center;
align-items: center;
}
.about-visual::after {
width: 100%;
height: 100%;
margin-top: -50px;
background: red;
display: flex;
justify-content: center;
align-items: center;
}
.about-visual img{
width: 100%;
}
.animated-cube {
display: flex;
align-items: center;
justify-content: center;
margin-left: 25%;
  width: 350px;
  height: 350px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 6s linear infinite;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0.8;
  border: 2px solid rgba(255,255,255,0.1);
}

/* Position each face of the cube */
.cube-face-front  { transform: translateZ(100px); }
.cube-face-back   { transform: rotateY(180deg) translateZ(100px); }
.cube-face-left   { transform: rotateY(-90deg) translateZ(100px); }
.cube-face-right  { transform: rotateY(90deg) translateZ(100px); }
.cube-face-top    { transform: rotateX(90deg) translateZ(100px); }
.cube-face-bottom { transform: rotateX(-90deg) translateZ(100px); }

/* Cube Animation */
@keyframes rotateCube {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  25% { transform: rotateX(90deg) rotateY(0deg); }
  50% { transform: rotateX(90deg) rotateY(90deg); }
  75% { transform: rotateX(0deg) rotateY(90deg); }
  100% { transform: rotateX(0deg) rotateY(0deg); }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-us-info {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  position: relative;
  height: 100%;
  /* min-height: 100vh; */
  background-color: #c0e7fa7e;
}

.about-us-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-content-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.about-text-info {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.about-text-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1c43dc;
}

.about-text-info p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #2e2d2d;
}

.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.445);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffb400;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #ffb400;
  color: #141e30;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.about-visual-info {
flex: 1;
position: relative; /* Establish stacking context */
perspective: 1200px;
z-index: 3; /* Ensures this container is above other elements */
}

.about-visual-info::before {
content: '';
position: absolute;
top: 40%;
left: 55%;
width: 100%;
height: 100%;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
border-radius: 15px;
transform: translate(-50%, -50%) scale(1);
z-index: -1; /* Places the blob behind the image */
filter: blur(1px);
animation: blobPulse 5s infinite alternate ease-in-out;
}

.about-visual-info img {
border: 3px dotted rgb(255, 255, 255);
position: relative; /* Ensure the image stays above the blob */
z-index: 1;
max-width: 100%;
border-radius: 15px; /* Optional styling */
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



/* Responsive Design */
@media (max-width: 768px) {
  .about-content-info {
    flex-direction: column;
    text-align: center;
  }
  .about-text{
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.36);
  border-radius: 10px;
  padding: 10px;
}
  .about-visual {
    z-index: -1;
    opacity: 0.5 !important;
    position: absolute;
      margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
      font-size: 2rem;
  }

  .about-text p {
      font-size: 1rem;
  }

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

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

/*--------------------------------------------------------------
# Our mission Section
--------------------------------------------------------------*/
.mission-content{
  width: 100%;
}
.mission-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.mission-content .mission-points h1 {
  font-size: 4rem;
  font-weight: 500;
}
.mission-content .mission-points {
  width: 50%;
}
.mission-content .mission-points .new-miss {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  gap: 10px;
  margin: 10px auto;
}
.mission-content .mission-points .new-miss img {
  width: 8%;
  height: auto;
  border-radius:50%;
  border: 2px solid rgba(0, 0, 0, 0.247);
}
.mission-content .mission-points .new-miss p {
  width: 80%;
  font-size: 16px;
  margin-top: 15px;
}
.mission-content .mission-image {
  width: 30%;
  height: 100%;
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
}

.mission-image::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -3%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  border-radius: 15px; /* Optional rounded corners */
  z-index: 0; /* Ensure the box stays behind the image */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Optional shadow */
}

.mission-image img {
border: 3px dotted rgb(255, 255, 255);
  position: relative; /* Ensures the image stays above the box */
  z-index: 1; /* Make sure the image is above the box */
  max-width: 100%;
  border-radius: 15px; /* Optional rounded corners */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Optional shadow on the image */
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

    /* General Styles */
    .team-section {
      padding: 50px 20px;
      background: linear-gradient(135deg, #0a0c2c, #202b50);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .team-section h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #00c6ff;
  }
  
  .team-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  /* Team Leader */
  .team-leader {
      margin-bottom: 50px;
  }
  
  .leader-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .leader-card img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 3px solid #ffb400;
  }
  
  .leader-card h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #ffb400;
  }
  
  .leader-card p {
      font-size: 1rem;
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.8);
  }
  
  .leader-card .description p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 15px;
  }
  
  .leader-card .social-links a {
      margin: 0 10px;
      color: #00c6ff;
      font-size: 1.2rem;
      transition: color 0.3s ease;
  }
  
  .leader-card .social-links a:hover {
      color: #fff;
  }
  
  /* Sub-team Members */
  .sub-team {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }
  
  .team-member {
      background: rgba(255, 255, 255, 0.1);
      width: 250px;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-member img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 10px;
      border: 3px solid rgba(255, 255, 255, 0.3);
  }
  
  .team-member h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
      color: #ffb400;
  }
  
  .team-member p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 10px;
  }
  
  .team-member .description p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 10px;
  }
  
  .team-member .social-links a {
      margin: 0 8px;
      color: #00c6ff;
      font-size: 1rem;
      transition: color 0.3s ease;
  }
  
  .team-member .social-links a:hover {
      color: #fff;
  }
  
  /* Hover Effects */
  .team-member:hover,
  .leader-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive Design */
  
  @media (max-width: 480px) {
      .team-member {
          width: 90%;
      }
  
      .leader-card img,
      .team-member img {
          width: 100px;
          height: 100px;
      }
  }
  
/* ----------------------------------------- */
/* Domain Page Start */
/* ----------------------------------------- */


/* Domain Future Section */
.domain-future-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 15px;
  overflow: hidden;
  z-index: 0; /* Ensure section is above the pseudo-element */
}

/* Background Image Layer */
.domain-future-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/domain.jpg'); /* Check if path is correct */
  background-size: cover;
  background-position: center;
  filter: blur(10px) brightness(0.6);
  transform: scale(1.1);
  z-index: -1; /* Make sure it's behind content */
}

/* Other styles remain unchanged */

.domain-future-section * {
  position: relative;
  z-index: 2;
}

.domain-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  background: rgba(0,0,0,0.4);
  padding: 50px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.domain-text {
  flex: 1;
  transform: translateX(-50px);
  opacity: 0;
  transition: all 1s ease;
}

.domain-text.active {
  transform: translateX(0);
  opacity: 1;
}

.domain-text h2 {
  font-size: 3rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.domain-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.domain-visual {
  flex: 1;
  position: relative;
  perspective: 1000px;
}

.domain-sphere {
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateSphere 10s linear infinite;
  box-shadow: 0 0 100px rgba(0,240,255,0.3);
}

.domain-sphere::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, 
      rgba(0,240,255,0.3) 0%, 
      rgba(0,240,255,0) 70%);
  animation: pulsate 3s ease-in-out infinite alternate;
}

.domain-connections {
  position: absolute;
  width: 100%;
  height: 100%;
}

.connection {
  position: absolute;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  height: 2px;
  opacity: 0.5;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.7s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,240,255,0.5);
}

.cta-button:hover::before {
  left: 100%;
}

@keyframes rotateSphere {
  0% { transform: rotateY(0deg) rotateX(0deg); }
  100% { transform: rotateY(360deg) rotateX(180deg); }
}

@keyframes pulsate {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.7; }
}

@media (max-width: 999px) {
  .domain-content {
      flex-direction: column-reverse;
      text-align: center;
      align-items: center;
      justify-content: center;
      padding: 20px;
      height: 80vh;
      margin: auto;
  }
  .domain-content .domain-text  {
      z-index: 1 !important;
  }
  .domain-content .domain-text h2  {
     font-size: 35px;
     color: rgb(255, 111, 0) !important;
  }
  .domain-content .domain-text p {
    font-size: 20px;
    margin: 10px ;
  }
  .domain-content .domain-text .cta-button {
    font-size: 15px !important;
  }

  .domain-text, .domain-visual {
    opacity: 0.8 !important;
    position: absolute;
    z-index: -1 !important;
      flex: none;
      width: 100%;
  }

  .domain-sphere {
      z-index: -1;
      width: 280px;
      height: 280px;
      margin: 0 auto;
  }
}


/* General Styling */
.futuristic-section {
  padding: 50px 20px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header p {
  font-size: 1.1rem;
  color: #1553ef;
}
.domain-info{
    display: flex;
    max-width: 1300px;
    width: 100%;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    gap: 20px;
    align-items: center;
}
.image-container {
  flex: 1;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.content {
  flex: 2;
}
button {
  display: block;
  margin: 20px 0;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.5s, background 0.5s;
}

button:hover {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  transform: scale(1.1);
  transition: transform 0.5s, background 0.5s;
}

.hidden {
  display: none;
}

@media (max-width: 999px) {

  h1 {
      font-size: 2em;
  }

  button {
      font-size: 14px;
      padding: 10px 20px;
  }
  .image-container img {
    max-width: 90%
}
  .domain-info {
      flex-direction: column-reverse;
      text-align: left;
      width: 100%;
}
}
.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: linear-gradient(145deg, #578ac5, #043c7d);
  border: 1px solid #76e5fc;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.5rem;
  color: #7ca3e2;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #ffffff;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(65, 79, 82, 0.4);
}

/* Animation */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(36, 40, 41, 0.2);
  transform: skewX(-45deg);
  transition: 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #76e5fc;
  }
  50% {
    box-shadow: 0 0 20px #76e5fc;
  }
  100% {
    box-shadow: 0 0 5px #76e5fc;
  }
}
.card {
  animation: glow 2s infinite;
}

/* Global styles */
:root {
  --primary-color: #3498db;
  --secondary-color: #1139db;
  --background-color: #f4f4f4;
  --dark-text-color: #333;
  --light-text-color: #747070;
  --highlight-color: #8ab3e494;
}
/* Creation Process Section */
.creation-process {
  width: 100%;
  margin: 0 auto;
  padding: 50px 15px;
}

.creation-process-title {
  text-align: left;
  margin-bottom: 40px;
}

.creation-process-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.creation-process-title p {
  margin: 0;
  color: var(--light-text-color);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.process-step {
  flex-basis: calc(50% - 20px);
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.step-icon img {
  max-width: 30px;
  max-height: 30px;
}

.step-header h3 {
width: 75%;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.step-description {
  color: var(--light-text-color);
  margin-bottom: 15px;
}

.read-more-inline {
  font-weight: bold;
  text-decoration: underline;
  color: var(--primary-color);
  transition: color 0.3s;
}

.read-more-inline:hover {
  color: var(--secondary-color);
}

/* Tags */
.step-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
}

.tag-description {
  display: none;
  margin-top: 5px;
  color: #8a9aa2;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tag-title {
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 5px;
  position: relative;
}

.tag-title::after {
  content: '\25BC'; /* Down arrow */
  font-size: 0.8em;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s;
}

.tag-title.active::after {
  transform: rotate(180deg); /* Up arrow */
}

/* Media Queries */


@media (max-width: 999px) {
  .cta-heading {
      font-size: 30px !important;
  }

  .cta-description {
      font-size: 20px !important;
  }

  .cta-button {
      font-size: 20px !important;
      padding: 10px 25px;
  }
  .creation-process {
    padding: 20px 15px !important;
  }
}

/* Call-to-action Wrapper */
.cta-wrapper {
  max-width: 1300px;
  margin: 10px auto;
  padding: 20px;
  background: var(--highlight-color);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  position: relative;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 30%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.cta-heading {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
  letter-spacing: 1px;
  animation: slideDown 1.2s ease-out;
}

.cta-description {
  font-size: 1.1em;
  margin: 15px 0 25px;
  line-height: 1.8;
  color: var(--light-text-color);
  animation: fadeIn 1.4s ease-out;
}

.cta-button a {
  text-decoration: none;
  color: #fff;
}

.cta-wrapper .cta-button {
  margin: auto;
  width: 100%;
  text-align: center;
  padding: 15px 35px;
  font-size: 1.5em;
  border: none;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: box-shadow 0.3s;
  animation: fadeIn 1.6s ease-out;
  text-transform: uppercase;
}

.cta-wrapper .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Keyframes for animations */
@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

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

/* ----------------------------------------- */
/* Domain Page ENd */
/* ----------------------------------------- */