/**

* 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;

}

/* 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: orangered;
  --subheading-color: #2cc197;
  /* Color for headings, subheadings and title throughout the website */

  --accent-color: #00a1e0;
  /* 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: #dbd9d9;
  /* 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. */

}

:root {
  --heading-color: orangered;
  --subheading-color: #2cc197;
  --accent-color: #00a1e0;
  --primary: #3a86ff;
  --primary-dark: #2667cc;
  --secondary: #8338ec;
  --light: #f8f9fa;
  --dark: #0a1128;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-2: linear-gradient(135deg, var(--secondary), var(--accent));
  --gradient-bg: linear-gradient(135deg, #0a1128, #1a2a52);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeIn {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.5;
    transform: translateY(0);
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

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

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

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

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(58, 134, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(58, 134, 255, 0.8);
  }

  100% {
    box-shadow: 0 0 5px rgba(58, 134, 255, 0.5);
  }
}

@keyframes rotateGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

:root {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--light);
  background: var(--gradient-bg);
  overflow-x: hidden;
}


/* 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: 50% !important;

  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-hero-section {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 50px 15px;

  overflow: hidden;

  z-index: 0;
}

.about-hero-section::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-image: url('../img/abt-bg.jpg');

  background-size: cover;

  background-position: initial;

  filter: blur(8px) brightness(0.6);

  transform: scale(1.1);

  z-index: -1;
}

.about-hero-content {
  position: relative;
  padding: 10px;
  margin: 20px auto;
  z-index: 10;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
  margin-top: 4%;
  animation: fadeInUp 1.5s forwards 0.5s;
}

.about-hero-title {
  font-size: 6rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.about-subheading {
  font-size: 1.5rem;
  color: #ffffff9a;
  font-weight: 300 !important;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
}

.about-hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  animation: lineExpand 1.2s forwards 1s;
}

.about-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s forwards 1.2s;
}

.about-hero-para {
  text-align: 25px;
  width: 70%;
  margin: auto;
  font-size: 1.2rem;
  text-align: center;
  color: white;
}

.about-cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #00f2fe, #4facfe);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
  margin: 50px auto;
}

.about-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.6);
}

.about-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  transition: all 0.5s ease;
}

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

.about-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(0, 242, 254, 0.2), rgba(79, 172, 254, 0.2));
  filter: blur(10px);
  animation: float 8s infinite ease-in-out;
  opacity: 0;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation: float 10s infinite ease-in-out, fadeIn 2s forwards;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  animation: float 8s infinite ease-in-out reverse, fadeIn 2s forwards 0.5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 20%;
  animation-delay: 1s;
  animation: float 12s infinite ease-in-out, fadeIn 2s forwards 1s;
}

.light-beam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, rgba(0, 242, 254, 0.8), rgba(0, 242, 254, 0));
  filter: blur(2px);
  animation: beamGrow 5s forwards infinite;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeIn 1s forwards 1.8s;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--subheading-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.circuit-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.3;
  pointer-events: none;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 242, 254, 0), rgba(0, 242, 254, 0.5), rgba(0, 242, 254, 0));
  height: 1px;
}

.circuit-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow: 0 0 10px #00f2fe;
  opacity: 0;
  animation: pulseDot 2s infinite;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes lineExpand {
  to {
    width: 50%;
  }
}

@keyframes float {

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

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

@keyframes beamGrow {
  to {
    height: 100%;
  }
}

@keyframes pulseDot {

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

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

@keyframes numberCount {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .about-hero-content {
    padding: 0 5px;
    margin-top: 12%;
    width: 100%;
  }

  .about-subheading {
    margin-bottom: 0rem;
  }

  .about-hero-title {
    font-size: 3rem;
  }

  .about-hero-subtitle {
    font-size: 1.2rem;
  }

  .about-hero-para {
    width: 100%;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
  }

  .stat-item {
    width: 100%;
    padding: 10px;
    min-width: unset;
  }

  .shape-1 {
    width: 150px;
    height: 150px;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
  }

  .shape-3 {
    width: 80px;
    height: 80px;
  }

  .about-cta-button {
    margin: 30px auto;
  }
}

@media screen and (max-width: 480px) {
  .about-hero-title {
    font-size: 2.7rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }
}



/*--------------------------------------------------------------

# 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: var(--glass-bg);

}



.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: 40px;

  max-width: 1500px;

  width: 100%;

}



.about-text-info {

  flex: 1;

  text-align: left;

  padding: 20px;

}



.about-text-info h2 {

  font-size: 2.5rem;

  margin-bottom: 20px;

  color: var(--heading-color);

}



.about-text-info p {

  font-size: 1.1rem;

  margin-bottom: 30px;

  line-height: 1.6;

  color: var(--contrast-color);

}



.features {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 20px; */

}



.third-feature-item {
  flex: 1 1 100% !important;
}

.feature-item {

  background: var(--dark);
  border: 1px solid var(--glass-border);

  padding: 15px;

  border-radius: 10px;

  text-align: center;

  flex: 1;

  min-width: 160px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.feature-item i {

  font-size: 2rem;

  margin-bottom: 10px;

  color: var(--light);

}

.feature-item img {

  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;

}



.feature-item h3 {

  font-size: 1.5rem;

  margin-bottom: 10px;

}



.feature-item p {
  color: var(--contrast-color);
  font-size: 0.9rem;

}



.feature-item:hover {

  transform: translateY(-10px);

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);

}




.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: 90%;
  left: 50%;
  width: 100%;
  height: 50%;
  background: var(--dark);
  border-radius: 15px;
  transform: translate(-50%, -50%) scale(1);
  z-index: -1;
  filter: blur(1px);
  animation: blobPulse 5s infinite alternateease-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;
  /* margin-left: 70px; */
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  margin: auto;

  border-radius: 15px;
  /* Optional styling */

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}







/* Responsive Design */

@media (max-width: 899px) {

  .about-content-info {

    flex-direction: column;

    text-align: center;

  }

  .features {
    flex-direction: column;

  }

  .feature-item {
    width: 100%;
  }


  .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

--------------------------------------------------------------*/
.our-mission-info {

  padding: 4rem 2rem;

  margin: 0 auto;
  background: var(--dark);

}

.mission-content-info {
  max-width: 1500px;
  margin: auto;

}

.mission-content {
  width: 100%;

}

.mission-content {

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

}

.mission-content .mission-points h1 {

  font-size: 4rem;

  font-weight: 500;

}

.mission-content .mission-points {
  width: 60%;

}

.mission-content .mission-points p {
  color: var(--contrast-color);

}

.mission-content .mission-points .new-miss {

  display: flex;

  align-items: center;
  background-color: var(--glass-bg);

  width: 100%;

  gap: 10px;
  padding: 20px;
  margin: 10px auto;
  color: var(--contrast-color)
}

.mission-content .mission-points .new-miss p {

  width: 100%;

  font-size: 16px;

  margin-top: 15px;

}

.mission-content .mission-image {

  width: 25%;

  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 img {
  margin: auto;

  /* 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: 80%;

  border-radius: 50%;
  /* Optional rounded corners */

  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.273);
  /* Optional shadow on the image */

}


/* brand service section start */
/* Services section styles */
.abt-services-section {
  padding: 4rem 2rem;
  max-width: 1500px;
  margin: 0 auto;
  background-color: #05232310;
}

.abt-section-header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.abt-section-title {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 400;
  max-width: 800px;
  margin: auto 0;
  text-align: left;
}

.abt-intro-text p {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--contrast-color);
}

/* Partner sites styles */
.partner-sites {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .partner-sites {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner-card:hover {

  box-shadow: 0 10px 20px rgb(255, 255, 255);
}

.partner-card:nth-child(1) {
  position: relative;
  overflow: hidden;

  z-index: 1;

  padding: 2rem;
  color: var(--contrast-color);

  background: var(--dark);
}

.partner-card:nth-child(1)::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;
  background-image: url('../img/abt-fast.png');
  filter: blur(5px);
  opacity: 0.3;
  z-index: -1;
}

.partner-card:nth-child(2) {
  position: relative;
  overflow: hidden;

  z-index: 1;

  padding: 2rem;

  background: var(--dark);
}

.partner-card:nth-child(2)::before {
  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;
  background-position: bottom left;
  background-image: url(../img/Icon-Only-Black.png);
  filter: blur(5px);
  opacity: 0.1;
  z-index: -1;
}

.partner-card:nth-child(1) .partner-name h3 {
  color: var(--accent-color);
}

.partner-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-50px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.196);
}

.partner-name {
  font-size: 1.9rem;
  color: #2d3748;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.partner-name p {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.partner-name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #3182ce;
}

.partner-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--contrast-color);
}

/* abt-conclusion styles */
.abt-conclusion {
  background-color: #ebf8ff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #3182ce;
}

.abt-conclusion p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c5282;
}

/* abt-highlight styles */
.abt-highlight {
  font-weight: 600;
  color: var(--accent-color);
}

/* brand service section end */

/* What we offer  start*/

/* Common css from What we offer to join us start */

@keyframes fadeIn {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.5;
    transform: translateY(0);
  }

  75% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

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

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

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

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(58, 134, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(58, 134, 255, 0.8);
  }

  100% {
    box-shadow: 0 0 5px rgba(58, 134, 255, 0.5);
  }
}

@keyframes rotateGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Typography */
.content-subcontainer h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.content-subcontainer h1 {
  font-size: 3.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: rotateGradient 5s ease infinite;
}

.content-subcontainer h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.content-subcontainer h3 {
  color: var(--subheading-color);
}

.content-subcontainer h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--gradient-1);
  transition: var(--transition);
}

.content-subcontainer h2:hover::after {
  width: 100%;
}

.content-subcontainer p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--contrast-color);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Glass Card Effect */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(30deg);
  z-index: -1;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Futuristic Button */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-1);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.4);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 134, 255, 0.6);
}

/* Common css from What we offer to join us End */

/* What We Offer Section */
.what-we-offer {
  background: var(--dark);
  background-size: 100%;
}

/* .what-we-offer {
          background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231a2a52" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
          background-size: 100%;
      } */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.features-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.features-card:nth-child(1) {
  animation-delay: 0.2s;
}

.features-card:nth-child(2) {
  animation-delay: 0.4s;
}

.features-card:nth-child(3) {
  animation-delay: 0.6s;
}

.features-card:nth-child(4) {
  animation-delay: 0.8s;
}

.features-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: var(--accent-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-align: center;
  animation: pulse 3s infinite;
}

.features-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* What we offer end */
/* why choose us Start */
/* Why Choose Us Section */
/* .why-choose-us {
            background: var(--glass-bg);
            position: relative;
        } */
.why-choose-us {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231a2a52" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: 100%;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="%23ffffff" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
  z-index: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  border-radius: 16px;
  padding: 2rem;
  background: rgba(26, 42, 82, 0.5);
  border: 1px solid rgba(58, 134, 255, 0.2);
  /* transition: var(--transition); */
  opacity: 1;
  animation: fadeIn 0.6s ease forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.6s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.9s;
}

.benefit-card:nth-child(4) {
  animation-delay: 1.2s;
}

.benefit-card:hover {
  background: rgba(58, 134, 255, 0.1);
  transform: translateY(-10px);
  animation: glow 10s linear;
}

.benefit-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Why choose us end */
/* Team Section Start */
/* Team Section */
.team-section {
  background: var(--gradient-bg);
  position: relative;
}

.team-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 1;
}

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

.team-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.team-card {
  max-width: 800px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.3s;
}

.team-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.team-icon {
  font-size: 3rem;
  color: var(--primary);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.team-icon:nth-child(1) {
  animation-delay: 0s;
}

.team-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.team-icon:nth-child(3) {
  animation-delay: 1s;
}

.team-icon:hover {
  color: var(--heading-color);
  transform: scale(1.2);
}

/* Team Section End */

/* Our Vision Section Start */
/* Vision Section */
.vision-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 134, 255, 0.2) 0%, rgba(58, 134, 255, 0) 70%);
  z-index: 0;
}

.vision-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 56, 236, 0.2) 0%, rgba(131, 56, 236, 0) 70%);
  z-index: 0;
}

.vision-content {
  position: relative;
  z-index: 1;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .vision-content {
    grid-template-columns: 1fr;
  }
}

.vision-text {
  z-index: 999999;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.3s;
}

.vision-image {
  position: absolute;
  height: 100px;
  left: 0%;
  top: -50%;
  opacity: 0;
  animation: fadeIn 4s ease infinite;
  animation-delay: 0.6s;
  z-index: -1;
}

.vision-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-1);
  opacity: 0.7;
  filter: blur(30px);
  animation: pulse 5s infinite;
}

.vision-circle-1 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.vision-circle-2 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 30%;
  background: var(--gradient-2);
  animation-delay: 1s;
}

.vision-circle-3 {
  width: 75px;
  height: 75px;
  bottom: 20%;
  right: 20%;
  background: var(--accent);
  animation-delay: 2s;
}

/* Join Us Section */
.join-us-section {
  text-align: center;
  padding: 2rem 0;
  background: var(--gradient-bg);
  position: relative;
}

.join-us-content {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .what-we-offer h1 {
    font-size: 2.8rem;
  }

  .what-we-offer h2 {
    font-size: 2.2rem;
  }

  section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .what-we-offer h1 {
    font-size: 2.5rem;
  }

  .what-we-offer h2 {
    font-size: 2rem;
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .what-we-offer h1 {
    font-size: 2.2rem;
  }

  .what-we-offer h2 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* Our Vision Section End */

/* ----------------------------------------- */

/* 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 */

/* ----------------------------------------- */