/*=============== 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: yellow;
  --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(12, 12, 12);
  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%;
  align-items: flex-start;
}

.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: var(--first-color);
  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;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }


}

@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: var(--first-color);
  }

  /* Minimalist design */
  .active-link::before {
    bottom: -.75rem;
  }
}


/* --------------------------
| MOUSE ANIMATION STYLING   |
---------------------------*/
.mouse {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid #ffff00;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 200;
}

.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;
  z-index: 200;
}




/* ---------------------------------
|       HERO SECTION STYLING       |
----------------------------------*/

.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Background video */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content */
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeUp 1.5s ease-out;
}

.about-title {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-title span {
  color: #ffeb3b;
}

.about-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dddddd;
  max-width: 700px;
  margin: 0 auto 40px;
}

.about-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1.5px solid #ffeb3b;
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.about-btn:hover {
  background: #ffeb3b;
  color: #111;
}

/* ========== BOTTOM BRAND TEXT ========== */
.bottom-brand {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}

.brand-text {
  font-size: 1.5rem;
  letter-spacing: 3px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0;
  transform: translateY(100%);
  animation: revealText 1.2s ease forwards;
  animation-delay: 2.2s;
  /* Delayed until hero finishes loading */
}

/* ====== Animations ====== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .brand-text {
    font-size: 1.2rem;
  }
}



/* ================================
   RESPONSIVE - HERO SECTION
================================ */

/* --- Large Screens & Small Laptops (max-width: 1200px) --- */
@media (max-width: 1200px) {
  .about-title {
    font-size: 3.5rem;
  }

  .about-subtitle {
    max-width: 750px;
  }
}

/* --- Tablets Landscape / Small Laptops (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .about-hero {
    height: 85vh;
    padding: 0 4%;
  }

  .about-title {
    font-size: 3rem;
  }

  .about-subtitle {
    font-size: 1.05rem;
  }
}

/* --- Tablets Portrait (max-width: 900px) --- */
@media (max-width: 900px) {
  .about-title {
    font-size: 2.7rem;
  }

  .about-subtitle {
    max-width: 650px;
  }

  .brand-text {
    font-size: 1.3rem;
  }
}

/* --- General Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .about-hero {
    height: auto;
    padding: 120px 5% 100px;
  }

  .about-title {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .about-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .about-btn {
    padding: 10px 26px;
    font-size: 0.95rem;
  }

  .bottom-brand {
    bottom: 25px;
  }

  .brand-text {
    font-size: 1.15rem;
  }
}

/* --- Small Mobile (max-width: 550px) --- */
@media (max-width: 550px) {
  .about-hero {
    padding: 100px 6% 90px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 0.95rem;
  }

  .about-btn {
    padding: 9px 22px;
    font-size: 0.9rem;
  }

  .brand-text {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

/* --- Extra Small Mobile (max-width: 400px) --- */
@media (max-width: 400px) {
  .about-title {
    font-size: 1.7rem;
  }

  .about-subtitle {
    font-size: 0.9rem;
  }

  .about-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .brand-text {
    font-size: 0.95rem;
  }
}










.contact-section-adv {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a, #111, #0a0a0a);
  background-size: cover;
  color: #fff;
}

.contact-container-adv {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
  animation: fadeIn 1s ease forwards;
}

/* LEFT SIDE */
.contact-left-adv h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.contact-left-adv h2 span {
  color: #ffeb3b;
}

.subtext {
  opacity: 0.8;
  margin-bottom: 30px;
}

.contact-details-adv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.detail-box {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-box:hover {
  transform: translateX(8px);
  border-color: #ffeb3b;
}

.detail-box i {
  font-size: 26px;
  color: #ffeb3b;
  margin-bottom: 5px;
}

/* SOCIAL ICONS */
.contact-social-adv {
  margin-top: 20px;
}

.contact-social-adv a {
  font-size: 26px;
  color: #fff;
  margin-right: 15px;
  transition: 0.3s;
}

.contact-social-adv a:hover {
  color: #ffeb3b;
  transform: scale(1.2);
}

/* FORM */
.contact-form-adv {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-adv h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: #ffeb3b;
}

.input-group label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
  opacity: 0.7;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
  top: -12px;
  font-size: 12px;
  color: #ffeb3b;
}

.send-btn-adv {
  width: 100%;
  padding: 12px;
  background: #ffeb3b;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.send-btn-adv:hover {
  background: #f5d800;
  transform: translateY(-3px);
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

/* Tablet & below */
@media (max-width: 992px) {
  .contact-container-adv {
    width: 95%;
    gap: 30px;
  }

  .contact-left-adv h2 {
    font-size: 32px;
  }

  .contact-form-adv {
    padding: 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section-adv {
    padding: 60px 0;
  }

  .contact-container-adv {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .contact-left-adv h2 {
    font-size: 28px;
  }

  .contact-details-adv {
    width: 100%;
    gap: 15px;
  }

  .detail-box {
    padding: 12px 15px;
  }

  .contact-social-adv a {
    font-size: 24px;
    margin-right: 10px;
  }

  .contact-form-adv {
    width: 100%;
    padding: 20px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 14px;
  }

  .send-btn-adv {
    font-size: 14px;
    padding: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-left-adv h2 {
    font-size: 24px;
  }

  .subtext {
    font-size: 14px;
  }

  .detail-box i {
    font-size: 22px;
  }

  .contact-social-adv a {
    font-size: 22px;
  }

  .contact-form-adv {
    padding: 18px;
  }

  .send-btn-adv {
    padding: 10px;
    font-size: 13px;
  }
}