/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
@import url('https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css');
@import url('https://fonts.googleapis.com/css2?family=Amarante&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: white;
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #000000;

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .838rem;
  --tiny-font-size: .525rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "poppins", sans-serif;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

body {
  margin-top: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: rgb(0, 0, 0);
  background-repeat: no-repeat;
  background-attachment: fixed;


  color: var(--text-color);
}

@keyframes glowMove {
  0% {
    background-position: 20% 30%, 80% 70%, 60% 20%;
  }

  50% {
    background-position: 25% 35%, 75% 65%, 55% 25%;
  }

  100% {
    background-position: 20% 30%, 80% 70%, 60% 20%;
  }
}

body {
  animation: glowMove 10s ease-in-out infinite alternate;
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
}


/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 1rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__height {
  height: 100vh;
}

/*=============== LAYOUT ===============*/
.container {
  max-width: 100%;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: .4s;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
}

.nav__logo img {
  padding: .5rem;
  width: 8rem;
  height: 8rem;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
  }
}

.nav__list,
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 400;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: 0.7rem;
}

.nav__icon {
  font-size: 1.1rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: yellow;
  transition: .3s;
}


/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }

  .nav__name {
    font-size: 0.4rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }

  .nav__name {
    font-size: 0.4rem;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .section {
    padding: 7rem 0 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
    /* 4.5rem */
  }

  .nav__img {
    display: none;
  }

  .nav__icon {
    display: none;
  }

  .nav__name {
    font-size: var(--normal-font-size);
  }

  .nav__link:hover {
    color: yellow;
  }

  /* Minimalist design */
  .active-link::before {
    bottom: -.75rem;
  }
}





/* ------------------------------------
|          HERO SECTION STYLING        |
-------------------------------------*/

.section__height1 {
  margin-top: 3rem;
  width: 100%;
  min-height: 90vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 8%;
  overflow: hidden;
  background-size: cover;
}


/* -----LEFT COLUMN (TEXT)------*/
.hero-content {
  flex-basis: 50%;
  padding-right: 30px;
  color: #fff;
  animation: fadeInLeft 1.2s ease;
}

.hero-content h1 {
  font-weight: 100;
  font-size: 4vw;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-content h2 {
  font-weight: 100;
  font-size: 3vw;
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 0.3vw transparent;
}

/* Animated Stroke Effect */
.hero-content h2::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: #d9ff00;
  border-right: 2px solid #d9ff00;
  -webkit-text-stroke: 0;
  overflow: hidden;
  animation: animateText 3s linear infinite;
}

@keyframes animateText {

  0%,
  10%,
  100% {
    width: 0;
  }

  70%,
  90% {
    width: 70%;
  }
}

.hero-content p {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
  margin-top: 35px;
  margin-bottom: 32px;
  max-width: 550px;
}

.awesome {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 0;
  border-radius: 100vw;
  margin: 0;
  padding: .7rem 1rem .8rem 2rem;
  display: inline-flex;
  background: none;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: -1px;
}

.awesome a {
  color: #FFF;
}

.awesome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  border-radius: 100vw;
  background-image: linear-gradient(-45deg, #d43132, transparent 50%);
  opacity: 0;
  transform: translateX(-100%);
  transition:
    transform .4s cubic-bezier(0.25, 0, 0.75, 1),
    opacity 1s ease;
}

.awesome::after {
  content: '❯';
  display: grid;
  place-items: center;
  height: 1em;
  width: 1em;
  padding: 4px;
  margin-left: .65rem;
  border-radius: 100vw;
  background: #ff0000;
  color: #ffffff;
  font-size: .75em;
  line-height: 0;
  transform: translateY(2px);
  transition: background-color .25s ease .25s;
}

.awesome:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.awesome:hover::after {
  background: #ffffff;
  color: #d43132;
}

/* ----RIGHT COLUMN (IMAGE)----*/
.hero-image {
  flex-basis: 50%;
  text-align: right;
  animation: fadeInRight 1.2s ease;
}

.hero-image img {
  max-width: 80%;
  height: auto;
  transform: scale(1.05);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* ------ ANIMATIONS -------*/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* --- Tablets --- */
@media (max-width: 992px) {

  .hero-content h1,
  .hero-content h2 {
    text-align: left;
    justify-content: flex-start;
    font-size: 3.2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    max-width: 85%;
  }
}

/* --- Mobile & Small Tablets --- */
@media (max-width: 768px) {
  .section__height1 {
    margin-top: 3.5rem;
    padding: 5rem 6% 3.5rem;
    flex-direction: column-reverse;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
  }

  .hero-content {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 0.6rem;
    -webkit-text-stroke: 0;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #dcdcdc;
    margin: 0 0 1.6rem;
    max-width: 95%;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .hero-image img {
    width: 85%;
    max-width: 340px;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
  }

  .hero-image img:hover {
    transform: scale(1.03);
  }
}

/* --- Extra Small Devices --- */
@media (max-width: 480px) {
  .section__height1 {
    padding: 2.5rem 7% 3.5rem;
    gap: 1rem;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .hero-content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.3rem;
    text-align: left;
    color: #f0f0f0;
  }

  .hero-image img {
    width: 90%;
    max-width: 290px;
    margin-bottom: 0.6rem;
    border-radius: 10px;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}




/* ---------------------------------
|       ABOUT SECTION STYLING
----------------------------------*/

/* --- Section Background --- */
.services-section {
  padding: 70px 4%;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.heading-content {
  margin-bottom: 3.5rem;
  column-gap: 150px;
}

.service-icon {
  margin-left: 0;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ffeb3b;
  transition: all 0.4s ease;
}

.service-icon:hover {
  transform: scale(1.1);
}

.bx-bulb {
  color: rgb(255, 255, 255);
  transition: all 0.4s ease;
}

.bx-bulb:hover {
  color: #ffeb3b;
  transform: scale(1.1);
  text-shadow: 0 0 10px #ffeb3b;
}

.hero-content-left {
  text-align: center;
  animation: fadeInLeft 1.2s ease;
}

.hero-content-right {
  animation: fadeInRight 1.2s ease;
}


/* --- Titles --- */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.typewriter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.typewriter-text {
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  border-right: 3px solid #ffeb3b;
  animation: blink 0.7s infinite;
  letter-spacing: 1px;
}

/* Cursor blink effect */
@keyframes blink {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: #ffeb3b;
  }
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  height: 3.5rem;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 40px;
  transition: all 0.3s ease;
  position: relative;
}

.ma {
  background: #2c2c2c52;
  padding: 1rem 1.3rem;
  border-radius: 30px;
}

.btn-icon {
  background: #ffffff;
  /* red circle */
  color: #000000;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.modern-btn:hover {
  transform: translateY(-2px);
}

.modern-btn:hover .btn-icon {
  background: #ffeb3b;
  transform: rotate(45deg);
  box-shadow: 0 0 10px #ffeb3b;
}



/* --- Cards Layout --- */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* --- Glass Card --- */
.glass-card {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.5s ease;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 247, 0, 0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 230, 0, 0.1), transparent 50%);
  transition: all 0.6s ease;
  opacity: 0;
}

.glass-card:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 204, 0, 0.3);
  border-color: rgba(255, 204, 0, 0.2);
}

/* --- Card Content --- */
.card-icon {
  font-size: 3rem;
  color: #ffeb3b;
  margin-bottom: 1rem;
  height: 4rem;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  height: 3rem;
}

.card-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  height: 8rem;
}

.arrow-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #ffeb3b;
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.glass-card:hover .arrow-icon {
  color: #ffffff;
  transform: rotate(45deg);
}


.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0);
}

.read-more-btn span {
  letter-spacing: 0.5px;
  transition: transform 0.4s ease;
}

.read-more-btn .arrow-circle {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.read-more-btn .arrow-circle i {
  color: #000000;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* Hover effects */
.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
  transform: translateY(-2px);
}

.read-more-btn:hover span {
  transform: translateX(4px);
}

.read-more-btn:hover .arrow-circle {
  background: linear-gradient(135deg, #ffeb3b, #ffcc00);
  transform: scale(1.1);
}

.read-more-btn:hover .arrow-circle i {
  transform: rotate(45deg);
}


/* ===========================================================
   RESPONSIVE — SERVICES SECTION
=========================================================== */

/* ----------- Large Tablets (max-width: 1200px) ----------- */
@media (max-width: 1200px) {

  .section-title {
    font-size: 2.4rem;
  }

  .services-section {
    padding: 60px 4%;
  }

  .card-text {
    height: auto;
  }
}


/* ----------- Tablets (max-width: 992px) ----------- */
@media (max-width: 992px) {

  .services-section {
    padding: 50px 3%;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .typewriter-text {
    font-size: 1.3rem;
  }

  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .glass-card {
    padding: 1.8rem;
  }
}


/* ----------- Tablets & Large Mobile (max-width: 768px) ----------- */
@media (max-width: 768px) {

  .services-section {
    padding: 45px 3%;
  }

  .section-title {
    font-size: 2rem;
  }

  .typewriter-text {
    font-size: 1.15rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
  }

  .glass-card {
    padding: 1.6rem;
  }

  .arrow-icon {
    font-size: 1.5rem;
  }

  .read-more-btn {
    padding: 9px 15px;
    font-size: 0.9rem;
  }

  .read-more-btn .arrow-circle {
    height: 32px;
    width: 32px;
  }

  .read-more-btn .arrow-circle i {
    font-size: 0.95rem;
  }
}


/* ----------- Mobile (max-width: 576px) ----------- */
@media (max-width: 576px) {

  .services-section {
    padding: 40px 4%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .typewriter-text {
    font-size: 1rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .glass-card {
    padding: 1.5rem 1.3rem;
  }

  .card-icon {
    font-size: 2.2rem;
  }

  .card-title {
    font-size: 1.2rem;

  }

  .card-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .arrow-icon {
    font-size: 1.3rem;
    top: 1rem;
    right: 1rem;
  }
}


/* ----------- Small Mobile (max-width: 420px) ----------- */
@media (max-width: 420px) {

  .section-title {
    font-size: 1.6rem;
  }

  .typewriter-text {
    font-size: 0.9rem;
  }

  .service-icon {
    font-size: 2rem;
  }

  .glass-card {
    padding: 1.2rem 1rem;
  }

  .read-more-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .read-more-btn .arrow-circle {
    height: 30px;
    width: 30px;
  }

  .card-text {
    margin-bottom: 1rem;
  }

  .read-more-btn .arrow-circle i {
    font-size: 0.9rem;
  }
}


/* --------------------------
|        BOX SECTION        |
---------------------------*/
.box-container {
  display: flex;
  padding: 3rem 4%;
}

.box-headings {
  padding: .5rem 0 1rem 1rem;
  flex-basis: 50%;
  color: #ffffff;
  border-left: 5px solid #ffeb3b;
  border-radius: 10px 0 0 10px;
}

.section-title-b {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.bx-cube-alt {
  color: rgb(255, 255, 255);
  transition: all 0.4s ease;
}

.bx-cube-alt:hover {
  color: #ffeb3b;
  transform: scale(1.1);
  text-shadow: 0 0 10px #ffeb3b;
}


/* Cursor blink animation */
@keyframes blink {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: #ff3c3c;
  }
}


.modern-btn-b {
  display: inline-flex;
  align-items: center;
  height: 8rem;
  right: 5.5rem;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 40px;
  transition: all 0.3s ease;
  position: relative;
}

.ma-b {
  background: #2c2c2c52;
  padding: 1rem 1.3rem;
  border-radius: 30px;
}

.btn-icon-b {
  background: #e50914;
  /* red circle */
  color: #fff;
  border-radius: 50%;
  border-color: 1px solid red;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.modern-btn-b:hover {
  transform: translateY(-2px);
}

.modern-btn-b:hover .btn-icon-b {
  background: #ff1a1a;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(255, 26, 26, 0.6);
}

.box-right {
  flex-basis: 50%;
  text-align: right;
}

.box-effect {
  height: 50vh;
  width: 75vh;
  display: flex;
  justify-content: right;
  align-items: center;
  color: #333;
  font-family: 'Poppins', sans-serif;
  perspective: 1000px;
  overflow: visible;
}

/* --- Container --- */
.box-effect-container {
  margin-right: 0;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

/* --- 3D Cube --- */
.box-card12 {
  width: 220px;
  height: 220px;
  position: relative;
  transform-style: preserve-3d;
  animation: floatCube 6s ease-in-out infinite alternate;
  transition: transform 1s ease;
  cursor: pointer;
}

.box-card12:hover {
  animation: spinCube 5s linear infinite;
}

/* --- Cube Faces --- */
.face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, #3a3aff, #8b8bff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backface-visibility: hidden;
}

/* --- Unique Colors --- */
.front1 {
  transform: translateZ(110px);
  background: linear-gradient(135deg, #5e72eb, #788bff);
}

.back1 {
  transform: translateZ(-110px) rotateY(180deg);
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.right1 {
  transform: translateX(110px) rotateY(90deg);
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.left1 {
  transform: translateX(-110px) rotateY(-90deg);
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

.top1 {
  transform: translateY(-110px) rotateX(90deg);
  background: linear-gradient(135deg, #ee0979, #ff6a00);
}

.bottom1 {
  transform: translateY(110px) rotateX(-90deg);
  background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

/* --- Hover glow effect --- */
.face::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.face:hover::after {
  opacity: 1;
  box-shadow: 0 8px 20px #ffeb3b;
}

/* --- Animations --- */
@keyframes floatCube {
  0% {
    transform: rotateX(-10deg) rotateY(-10deg) translateY(0);
  }

  100% {
    transform: rotateX(15deg) rotateY(20deg) translateY(-10px);
  }
}

@keyframes spinCube {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .box-card12 {
    width: 160px;
    height: 160px;
  }

  .front1 {
    transform: translateZ(80px);
  }

  .back1 {
    transform: translateZ(-80px) rotateY(180deg);
  }

  .right1 {
    transform: translateX(80px) rotateY(90deg);
  }

  .left1 {
    transform: translateX(-80px) rotateY(-90deg);
  }

  .top1 {
    transform: translateY(-80px) rotateX(90deg);
  }

  .bottom1 {
    transform: translateY(80px) rotateX(-90deg);
  }
}


/* ===========================================================
   RESPONSIVE STYLES FOR BOX SECTION
=========================================================== */

/* ---------- TABLET VIEW (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  .box-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 6%;
  }

  .box-headings {
    flex-basis: 100%;
    border-left: none;
    border-top: 5px solid #ffeb3b;
    border-radius: 10px;
    padding: 1rem 0;
  }

  .section-title-b {
    font-size: 2.2rem;
  }

  .modern-btn-b {
    height: 6rem;
    right: 0;
    font-size: 1rem;
    justify-content: center;
  }

  .btn-icon-b {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .box-right {
    flex-basis: 100%;
    text-align: center;
  }

  .box-effect {
    width: 100%;
    height: 45vh;
    justify-content: center;
  }
}


/* ---------- MOBILE VIEW (max-width: 768px) ---------- */
@media (max-width: 768px) {

  .box-container {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 5%;
    gap: 2rem;
  }

  .box-headings {
    padding: 1.2rem 1rem;
    border-left: none;
    border-top: 5px solid #ffeb3b;
    border-radius: 10px;
  }

  .section-title-b {
    font-size: 2rem;
    line-height: 2.3rem;
  }

  .modern-btn-b {
    height: auto;
    padding: 12px 20px;
    gap: 8px;
    font-size: 0.9rem;
  }

  .btn-icon-b {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .box-effect {
    height: auto;
    margin-top: 2rem;
  }

  /* Resize cube */
  .box-card12 {
    width: 150px;
    height: 150px;
  }

  /* Updated faces for mobile */
  .front1 {
    transform: translateZ(75px);
  }

  .back1 {
    transform: translateZ(-75px) rotateY(180deg);
  }

  .right1 {
    transform: translateX(75px) rotateY(90deg);
  }

  .left1 {
    transform: translateX(-75px) rotateY(-90deg);
  }

  .top1 {
    transform: translateY(-75px) rotateX(90deg);
  }

  .bottom1 {
    transform: translateY(75px) rotateX(-90deg);
  }
}


/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {

  .section-title-b {
    font-size: 1.7rem;
  }

  .modern-btn-b {
    flex-direction: row;
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .btn-icon-b {
    width: 34px;
    height: 34px;
  }

  .box-card12 {
    width: 130px;
    height: 130px;
  }

  /* Cube depth for small phones */
  .front1 {
    transform: translateZ(65px);
  }

  .back1 {
    transform: translateZ(-65px) rotateY(180deg);
  }

  .right1 {
    transform: translateX(65px) rotateY(90deg);
  }

  .left1 {
    transform: translateX(-65px) rotateY(-90deg);
  }

  .top1 {
    transform: translateY(-65px) rotateX(90deg);
  }

  .bottom1 {
    transform: translateY(65px) rotateX(-90deg);
  }
}




/* -------------------------------
|   PROGRESS SECTION (POLISHED)  |
--------------------------------*/

/* ====== SECTION STYLE ====== */
.process-section {
  position: relative;
  width: 100%;
  color: #fff;
  padding: 1rem 0;
  overflow: hidden;
  text-align: center;
}


/* ====== SVG CONTAINER ====== */
.process-svg {
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ====== CURVED PATH ====== */
.progress-path {
  stroke: #ffd700;
  stroke-width: 2;
  fill: none;
  marker-end: url(#arrowhead);
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawLine 10s ease-in-out infinite;
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 1600;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 1600;
    opacity: 0;
  }
}

/* ====== STEP CIRCLES ====== */
.step-circle {
  fill: #ffd700;
  stroke: #fff;
  stroke-width: 2;
  opacity: 0;
  transform: scale(0.5);
  filter: drop-shadow(0 0 10px #ffd700);
  animation: popIn 10s ease-in-out infinite;
}

.step-circle:nth-of-type(1) {
  animation-delay: 0.8s;
}

.step-circle:nth-of-type(2) {
  animation-delay: 1.4s;
}

.step-circle:nth-of-type(3) {
  animation-delay: 2s;
}

.step-circle:nth-of-type(4) {
  animation-delay: 2.6s;
}

@keyframes popIn {

  0%,
  15%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  25%,
  70% {
    opacity: 1;
    transform: scale(1);
  }

  85% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* ====== STEP TEXT ====== */
.step-text,
.step-number {
  fill: #ffffff;
  opacity: 0;
  animation: fadeText 10s ease-in-out infinite;
}

.step-text:nth-of-type(1),
.step-number:nth-of-type(1) {
  animation-delay: 0.8s;
}

.step-text:nth-of-type(2),
.step-number:nth-of-type(2) {
  animation-delay: 1.4s;
}

.step-text:nth-of-type(3),
.step-number:nth-of-type(3) {
  animation-delay: 2s;
}

.step-text:nth-of-type(4),
.step-number:nth-of-type(4) {
  animation-delay: 2.6s;
}

@keyframes fadeText {

  0%,
  10%,
  100% {
    opacity: 0;
  }

  25%,
  70% {
    opacity: 1;
  }

  85% {
    opacity: 0;
  }
}

/* ===========================================================
   RESPONSIVE — PROGRESS SECTION
=========================================================== */

/* ---------- TABLETS (max-width: 1024px) ---------- */
@media (max-width: 1024px) {

  .process-section {
    padding: 2rem 0;
  }

  .process-svg {
    width: 95%;
  }

  /* Circle scaling */
  .step-circle {
    r: 16 !important;
  }

  /* Text scaling */
  .step-text {
    font-size: 1.2rem !important;
  }

  .step-number {
    font-size: 1.2rem !important;
    font-weight: 700;
  }
}


/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {

  .process-section {
    padding: 2rem 0;
  }

  .process-svg {
    width: 100%;
  }

  /* Path thickness */
  .progress-path {
    stroke-width: 1.5;
  }

  /* Circles (smaller) */
  .step-circle {
    r: 14 !important;
    filter: drop-shadow(0 0 6px #ffd700);
  }

  /* Text smaller & closer */
  .step-text {
    font-size: 1.2rem !important;
  }

  .step-number {
    font-size: 1.1rem !important;
  }
}


/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {

  .process-svg {
    width: 100%;
  }

  /* Path becomes thinner for small screens */
  .progress-path {
    stroke-width: 1.2;
  }

  /* Circles become compact */
  .step-circle {
    r: 12 !important;
    stroke-width: 1.5;
  }

  /* Text becomes compact */
  .step-text {
    font-size: 1.1rem !important;
  }

  .step-number {
    font-size: 1rem !important;
  }
}





/* --------------------------
| MOUSE ANIMATION STYLING   |
---------------------------*/
.mouse {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid #ffeb3b;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.mouse2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .15s;
}




/*---------------------
|   JOIN US SECTION   |
----------------------*/

.social {
  padding: 4rem 4%;
}

.box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-right: 3%;
}

.box-social-img {
  flex-basis: 50%;
  text-align: end;
}

.box-social-img img {
  width: 450px;
  height: 400px;
  max-width: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.5s ease, filter 0.3s ease;
  border-radius: 30px;
}

.box-social-img img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.social-links {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.8rem 1.2rem;
  min-width: 280px;
  max-width: 320px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.social-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
  background: #ffeb3b;
  color: #000000;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.4s;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
  box-shadow: 0 0 10px #ffeb3b;
}

.social-info {
  flex: 1;
  margin-left: 1rem;
}

.social-info h3 {
  font-size: 1rem;
  margin: 0;
}

.social-info p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

.social-arrow {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  width: 35px;
  color: yellow;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.social-card:hover .social-arrow {
  background: #fff;
  color: rgb(0, 0, 0);
  transform: rotate(45deg);
}


/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* ===== TABLET VIEW (768px–1024px) ===== */
@media (max-width: 1024px) {
  .box-top {
    flex-direction: column;
    text-align: center;
    padding-right: 0;
  }

  .box-social-img {
    text-align: center;
  }

  .box-social-img img {
    width: 380px;
    height: auto;
  }

  .social-card {
    min-width: 260px;
    padding: 0.7rem 1rem;
  }

  .social-info h3 {
    font-size: 0.95rem;
  }
}

/* ===== MOBILE VIEW (<768px) ===== */
@media (max-width: 768px) {
  .social {
    padding: 3rem 6%;
  }

  .box-top {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .box-social-img img {
    width: 100%;
    height: auto;
    transform: scale(1);
  }

  .social-links {
    gap: 1rem;
  }

  .social-card {
    flex-direction: row;
    min-width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 25px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-info h3 {
    font-size: 0.9rem;
  }

  .social-info p {
    font-size: 0.8rem;
  }

  .social-arrow {
    width: 30px;
    height: 30px;
  }
}

/* ===== SMALL MOBILE VIEW (<480px) ===== */
@media (max-width: 480px) {
  .social {
    padding: 2.5rem 5%;
  }

  .social-card {
    padding: 0.6rem 0.9rem;
  }

  .social-info h3 {
    font-size: 0.85rem;
  }

  .social-info p {
    font-size: 0.75rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }
}




/*-----------
|   FOOTER  |
-----------*/

.bottom-footer {
  width: 100%;
  background: #0d0d0d;
  color: #fff;
  padding: 15px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.bottom-footer p {
  margin: 0;
  opacity: 0.85;
}

.bottom-footer strong {
  color: #ffeb3b;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .bottom-footer {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}