@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --yellow:#f5bf23;
  --black: #111;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0.3);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}
/* =========================================
   MODERN NAVBAR
========================================= */
.header {
  position: fixed; /* changed from absolute */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 8%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  width: 65px;
  height: auto;
}

/* CENTER NAV */
.header .navbar {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.header .navbar a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #1e293b;
  position: relative;
}

.header .navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: 0.3s;
}

.header .navbar a:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* GET STARTED BUTTON */
.nav-btn {
  padding: 1.2rem 2.8rem;
  border: 2px solid #2563eb;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2563eb;
  background: transparent;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #2563eb;
  color: #fff;
}

/* ICONS */
.icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.icons div {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #1e293b;
  font-size: 1.8rem;
  cursor: pointer;
}

.icons div:hover {
  background: #2563eb;
  color: #fff;
}

.search-form {
  position: absolute;
  top: 110%;
  right: 8rem;
  width: 35rem;
  height: 5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 0 1.5rem;
  display: none;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.search-form.active {
  display: flex;
}

.search-form input {
  flex: 1;
  font-size: 1.6rem;
  border: none;
  outline: none;
  background: none;
}

.search-form label {
  font-size: 2rem;
  cursor: pointer;
}

/* =========================
   DROPDOWN MENU
========================= */
.navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar .dropdown i {
  font-size: 1.2rem;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 150%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
  z-index: 999;
}

.navbar .dropdown-menu a {
  display: block;
  padding: 1.2rem 2rem;
  font-size: 1.6rem;
  color: #0f172a;
  margin: 0;
}

.navbar .dropdown-menu a:hover {
  background: #eff6ff;
  color: #2563eb;
  padding-left: 2.5rem;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .dropdown:hover i {
  transform: rotate(180deg);
}

/* =========================================
   DROP DOWN DARK MODE
========================================= */
body.dark-mode .dropdown-menu {
  background: #1e293b;
}

body.dark-mode .dropdown-menu a {
  color: #fff;
}

body.dark-mode .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #60a5fa;
}

/* =========================================
   CONTACT INFO
========================================= */
.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: #fff;
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}
.contact-info.active {
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}
.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: #111;
  transition: 0.3s ease;
}
.contact-info #close-contact-info:hover {
  transform: rotate(90deg);
  color: #1E40AF;
}
.contact-info .info {
  padding: 2rem 0;
}
.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
}
.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}
.contact-info .info i {
  margin-bottom: 0.5rem;
}
.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}
.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}
.contact-info .share {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}
.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
}
.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}
.contact-info .share a {
  margin: 0 0.3rem;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 2.2rem 0.8rem 0.8rem;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(135deg, #0B1F6A, #2563EB);
  border: 2px solid rgba(201, 168, 106, 0.35);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transition: 0.35s ease;
}

.btn-modern:hover {
  transform: translateY(-4px);
}

.btn-modern .btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #2563EB;
  font-size: 1.8rem;
  transition: 0.35s ease;
}

.btn-modern:hover .btn-icon {
  transform: translateX(4px);
}

/* DARK MODE BUTTON */
body.dark-mode .btn-modern {
  background: linear-gradient(135deg, #C9A86A, #E5C88B) !important;
  color: #111827 !important;
  box-shadow: 0 10px 25px rgba(201, 168, 106, 0.35);
}

body.dark-mode .btn-modern .btn-icon {
  background: #111827;
  color: #C9A86A;
}

body.dark-mode .btn-modern:hover {
  background: linear-gradient(135deg, #D4B57A, #F0D9A4) !important;
  transform: translateY(-4px);
}

/* =========================================
   DARK MODE
========================================= */
body.dark-mode .header {
  background: linear-gradient(135deg, #1B2430, #243447, #1E2A38);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

/* NAVBAR */
body.dark-mode .navbar a {
  color: #F5F5F5;
}

body.dark-mode .navbar a:hover {
  color: #C9A86A;
  text-shadow: 0 0 12px rgba(201, 168, 106, 0.5);
}

/* ICONS */
body.dark-mode .icons div {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .icons div:hover {
  background: #C9A86A;
  color: #111;
  transform: translateY(-2px);
}

/* SEARCH FORM */
body.dark-mode .search-form {
  background: #1E2A38;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .search-form input {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

body.dark-mode .search-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .search-form label {
  color: #C9A86A;
}

/* CONTACT INFO */
body.dark-mode .contact-info {
  background: linear-gradient(180deg, #1B2430, #243447);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .contact-info h3 {
  color: #fff;
}

body.dark-mode .contact-info p {
  color: rgba(255, 255, 255, 0.75);
}

body.dark-mode .contact-info #close-contact-info {
  color: #fff;
}

/* HEADING */
body.dark-mode .heading {
  color: #fff;
}

/* HERO SECTION */
.home {
  padding: 0;
}

.home .slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, #f5f7fa 0%, #edf2f7 30%, #dbeafe 65%, #93c5fd 100%), url("../image/bg21.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 28%, rgba(255, 255, 255, 0.25) 60%, rgba(255, 255, 255, 0) 100%);
}

/* CONTENT POSITION */
.home .slide .content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: 2%;
  margin-top: 120px;
}

/* TITLE */
.home .slide .content h3 {
  font-size: 7rem;
  line-height: 1.05;
  font-weight: 800;
  color: #0f172a;
  text-transform: none;
  margin-bottom: 2rem;
}

/* BLUE WORD */
.home .slide .content h3 span {
  display: block;
  color: #3b82f6;
}

/* DESCRIPTION */
.home .slide .content p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #475569;
  width: 500px;
  margin-bottom: 3rem;
}

/* BUTTON */
.home .slide .content .btn {
  display: inline-block;
  padding: 1.5rem 4rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.home .slide .content .btn:hover {
  transform: translateY(-3px);
}

/* =========================
   SWIPER BUTTONS
========================= */
.home .swiper-button-next,
.home .swiper-button-prev {
  position: absolute !important;
  width: 60px;
  height: 60px;
  top: auto !important;
  bottom: 25px !important;
  transform: none !important;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  color: #ffffff;
  z-index: 100;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}
.home .swiper-button-next,
.home .swiper-button-prev {
  /* GLOW EFFECT */
}
.home .swiper-button-next::before,
.home .swiper-button-prev::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.4));
  opacity: 0;
  transition: 0.35s ease;
}
.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  color: #fff;
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.35);
  border-color: rgba(255, 255, 255, 0.45);
}
.home .swiper-button-next:hover::before,
.home .swiper-button-prev:hover::before {
  opacity: 1;
}

/* =========================
   POSITION
========================= */
.home .swiper-button-prev {
  left: auto !important;
  right: 95px !important;
}

.home .swiper-button-next {
  right: 25px !important;
}

/* =========================
   about start
========================= */
.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.about .row .video {
  flex: 1 1 41rem;
}
.about .row .video video {
  width: 100%;
}
.about .row .content {
  flex: 1 1 41rem;
}
.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}
.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: flex-end;
}
.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}
.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 2rem;
}

/* =========================================
   AUTO BLUR ANIMATION
========================================= */
.autoBlur {
  opacity: 0;
  filter: blur(45px);
  transform: translateY(120px) scale(0.92);
  transition: opacity 1.3s ease, filter 1.3s ease, transform 1.3s ease;
  will-change: transform, filter, opacity;
}

/* SHOW EFFECT */
.autoBlur.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.services {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 100px 12%;
  /* REMOVE CENTERING */
  display: block;
  /* VIDEO */
}
.services .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.services {
  /* DARK OVERLAY */
}
.services .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 10, 30, 0.72);
  z-index: -1;
}
.services {
  /* HEADING */
}
.services .heading {
  color: #fff;
  margin-bottom: 60px;
  text-align: left;
}

/* CONTENT BOX */
.content-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* =========================
   DEFAULT CARD
========================= */
.card {
  min-height: 230px;
  width: 320px;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: 0.4s ease;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* TEXT */
.card h2 {
  color: #fff;
}

.card p {
  color: rgba(255, 255, 255, 0.82);
}

.card i {
  margin-bottom: 2rem;
  color: #C9A86A;
  font-size: 5.5rem; /* LARGER ICON */
  transition: 0.35s ease;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* HOVER EFFECT */
.card:hover i {
  color: #fff;
  transform: scale(1.15) rotate(5deg);
}

/* =========================
   HOVER EFFECT
========================= */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  color: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.card:hover h2,
.card:hover p,
.card:hover i {
  color: #fff;
}

/* =========================
   CARD 1 IMAGE
========================= */
.card:nth-child(1):hover {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(45, 42, 140, 0.82)), url("../image/thumb1.jpg");
  background-size: cover;
  background-position: center;
}

/* CARD 2 */
.card:nth-child(2):hover {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(45, 42, 140, 0.82)), url("../image/thumb2.jpg");
  background-size: cover;
  background-position: center;
}

/* CARD 3 */
.card:nth-child(3):hover {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(45, 42, 140, 0.82)), url("../image/thumb3.jpg");
  background-size: cover;
  background-position: center;
}

/* CARD 4 */
.card:nth-child(4):hover {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(45, 42, 140, 0.82)), url("../image/thumb4.jpg");
  background-size: cover;
  background-position: center;
}

/* CARD 5 */
.card:nth-child(5):hover {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(45, 42, 140, 0.82)), url("../image/thumb5.jpg");
  background-size: cover;
  background-position: center;
}

/* CARD 6 */
.card:nth-child(6):hover {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(45, 42, 140, 0.82)), url("../image/thumb6.jpg");
  background-size: cover;
  background-position: center;
}

/* FLOAT ANIMATION */
.autoFloat {
  animation: autoFloatAnimation linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 35%;
}

@keyframes autoFloatAnimation {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   project start
========================= */
.project {
  padding: 80px 9%;
  background: #ffffff;
}

/* HEADING */
.project .heading {
  color: #111;
}

/* =========================
   CONTAINER
========================= */
.project-container {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* =========================
   FILTER
========================= */
.filter {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 120px;
}

.filter-btn {
  position: relative;
  font-size: 22px;
  font-weight: 400;
  color: #7c7c7c;
  cursor: pointer;
  padding-left: 15px;
  transition: 0.3s ease;
}

.filter-btn:hover {
  color: #111;
}

.filter-btn.btn-active {
  color: #111;
  font-weight: 700;
}

.filter-btn.btn-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #C9A86A;
  border-radius: 10px;
}

/* =========================
   RIGHT SIDE
========================= */
.project-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* =========================
   PROJECT GRID
========================= */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

/* =========================
   CARD
========================= */
.p-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.p-card:hover {
  transform: translateY(-8px);
}

/* =========================
   IMAGE
========================= */
.slide-img {
  width: 100%;
  overflow: hidden;
}

.slide-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.p-card:hover .slide-img img {
  transform: scale(1.04);
}

/* =========================
   CONTENT
========================= */
.slide-content {
  background: linear-gradient(135deg, #070B2B, #141B63, #241E8F);
  padding: 1.3rem 1.5rem;
  border-top: 2px solid #C9A86A;
}

/* TITLE */
.slide-content h3 {
  font-size: 2.2rem;
  color: #F5E6C8;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

/* DESCRIPTION */
.slide-content p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgba(245, 230, 200, 0.78);
}

/* =========================
   BUTTON AREA
========================= */
.project-buttons {
  width: 100%;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   BUTTON STYLE
========================= */
.project-prev,
.project-next {
  width: 160px;
  height: 55px;
  border: none;
  outline: none;
  font-size: 17px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
}

/* BACK */
.project-prev {
  background: linear-gradient(135deg, #9CA3AF, #6B7280);
  color: #fff;
  box-shadow: 0 8px 20px rgba(107, 114, 128, 0.3);
}

.project-prev:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #6B7280, #4B5563);
  box-shadow: 0 12px 25px rgba(75, 85, 99, 0.45);
}

/* NEXT */
.project-next {
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.project-next:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #1D4ED8, #1E3A8A);
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.5);
}

/* =========================
   DOTS
========================= */
.project-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: 0.3s ease;
}

.project-dots span.active {
  background: #2563EB;
}

/* =========================
   HIDE CARD
========================= */
.hide {
  display: none !important;
}

/* =========================================
   PREMIUM AUTODISPLAY EFFECT
========================================= */
.autoDisplay {
  opacity: 0;
  transform: translateY(120px) scale(0.92);
  filter: blur(35px) brightness(0.7);
  transition: opacity 1.3s ease, transform 1.3s ease, filter 1.3s ease;
  will-change: transform, opacity, filter;
}

/* SHOW EFFECT */
.autoDisplay.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) brightness(1);
  animation: luxuryReveal 1.4s ease;
}

/* EXTRA GLOW */
@keyframes luxuryReveal {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.94);
    filter: blur(30px) brightness(0.6);
  }
  60% {
    transform: translateY(-8px) scale(1.01);
    filter: blur(4px) brightness(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) brightness(1);
  }
}
/* =========================================
   DARK MODE FIX
========================================= */
/* ABOUT SECTION */
body.dark-mode .about {
  background: #111827;
}

/* MAIN HEADINGS */
body.dark-mode .heading {
  color: #ffffff !important;
}

/* ABOUT TEXT */
body.dark-mode .about .content h3 {
  color: #ffffff;
}

body.dark-mode .about .content p {
  color: rgba(255, 255, 255, 0.75);
}

/* STATS BOX */
body.dark-mode .about .box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .about .box h3 {
  color: #ffffff;
}

body.dark-mode .about .box p {
  color: rgba(255, 255, 255, 0.7);
}

/* BUTTON */
body.dark-mode .about .btn {
  background: linear-gradient(135deg, #C9A86A, #E5C07B);
  color: #111;
}

/* =========================================
   DARK MODE PROJECT SECTION
========================================= */
body.dark-mode .project {
  background: linear-gradient(135deg, #0F172A, #111827, #1E293B);
}

/* FILTER TEXT */
body.dark-mode .filter-btn {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .filter-btn:hover {
  color: #ffffff;
}

body.dark-mode .filter-btn.btn-active {
  color: #ffffff;
}

body.dark-mode .filter-btn.btn-active::after {
  background: #C9A86A;
}

/* PROJECT CARD */
body.dark-mode .p-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* PROJECT CONTENT */
body.dark-mode .slide-content {
  background: linear-gradient(135deg, #1E293B, #111827);
  border-top: 3px solid #C9A86A;
}

body.dark-mode .slide-content h3 {
  color: #ffffff;
}

body.dark-mode .slide-content p {
  color: rgba(255, 255, 255, 0.75);
}

/* BUTTONS */
body.dark-mode .project-prev {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.dark-mode .project-next {
  background: linear-gradient(135deg, #C9A86A, #E5C07B);
  color: #111;
}

/* DOTS */
body.dark-mode .project-dots span {
  background: rgba(255, 255, 255, 0.2);
}

body.dark-mode .project-dots span.active {
  background: #C9A86A;
}

/* =========================================
   OUR TEAM SECTION
========================================= */
.our-team {
  min-height: 100vh;
  padding: 120px 8%;
  background: #f5f5f5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
  overflow: hidden;
}

/* =========================================
   LEFT SIDE
========================================= */
.team-left {
  width: 380px;
  flex-shrink: 0;
  padding-top: 120px;
}

.team-mini-title {
  font-size: 1.2rem;
  letter-spacing: 6px;
  color: #777;
  margin-bottom: 2rem;
  display: inline-block;
}

.team-heading {
  font-size: 7rem;
  line-height: 1;
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem;
}

.team-heading span {
  color: #2B2EFF;
}

.team-text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.team-subtext {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #888;
}

/* =========================================
   BUTTON
========================================= */
.team-btn-area {
  margin-top: 4rem;
}

#loadMoreTeam {
  width: 220px;
  height: 60px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563EB, #38BDF8);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

#loadMoreTeam:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45);
}

/* =========================================
   RIGHT SIDE
========================================= */
.team-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-top: 4rem;
}

/* =========================================
   TEAM PAGE
========================================= */
.team-page {
  display: none;
}

.team-page.active-page {
  display: block;
}

/* =========================================
   CARD
========================================= */
.team-card {
  width: 700px;
  min-height: 240px;
  display: grid;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  cursor: pointer;
}

/* CARD POSITION */
.team-card:nth-child(1) {
  margin-left: 180px;
  z-index: 3;
}

.team-card:nth-child(2) {
  margin-left: 60px;
  margin-top: -50px;
  z-index: 2;
}

.team-card:nth-child(3) {
  margin-left: 180px;
  margin-top: -50px;
  z-index: 1;
}

/* =========================================
   CARD EFFECT
========================================= */
.team-grid:hover .team-card {
  opacity: 0.5;
  transform: scale(0.92);
}

.team-grid .team-card.active-card {
  opacity: 1;
  transform: scale(1.05) translateX(60px);
  z-index: 999;
  filter: brightness(1.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* =========================================
   IMAGE
========================================= */
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

/* =========================================
   CONTENT
========================================= */
.team-content {
  padding: 3rem;
  position: relative;
}

.team-number {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.8rem;
  font-weight: 700;
}

.team-content h3 {
  font-size: 2.4rem;
  margin-left: 90px;
  margin-bottom: 1rem;
}

.team-content h4 {
  font-size: 1.5rem;
  margin-left: 90px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.team-content p {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 4rem;
}

/* =========================================
   CARD COLORS
========================================= */
.card-blue {
  background: #2B2EFF;
  color: #fff;
}

.card-dark {
  background: #050505;
  color: #fff;
}

.card-light {
  background: #fff;
  color: #111;
}

/* =========================================
   REMOVE SPACE BEFORE CTA
========================================= */
.team-page {
  margin-bottom: -120px;
}

/* =========================================
   DARK MODE
========================================= */
body.dark-mode .our-team {
  background: linear-gradient(135deg, #050816, #081534);
}

body.dark-mode .team-heading {
  color: #fff;
}

body.dark-mode .team-text {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .team-subtext {
  color: rgba(255, 255, 255, 0.55);
}

body.dark-mode .card-light {
  background: #111827;
  color: #fff;
}

/* =========================================
   CTA SECTION
========================================= */
.team-cta {
  position: relative;
  width: 100%;
  padding: 140px 8%;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* BACKGROUND LINES */
.team-cta::before,
.team-cta::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(-35deg);
}

.team-cta::before {
  top: 20%;
  left: -20%;
}

.team-cta::after {
  bottom: 20%;
  right: -20%;
}

/* EXTRA CURVE LINE */
.team-cta-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.05) 2px, transparent 2px), radial-gradient(circle at 80% 60%, rgba(0, 0, 0, 0.05) 2px, transparent 2px);
  opacity: 0.4;
}

/* CONTENT */
.team-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* TITLE */
.team-cta-content h2 {
  font-size: 5rem;
  line-height: 1.2;
  color: #111;
  font-weight: 700;
  margin-bottom: 4rem;
}

/* BUTTON */
.team-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 65px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563EB, #38BDF8);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.team-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45);
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  position: relative;
  padding: 140px 8% 120px;
  background: linear-gradient(180deg, #030B2E, #050F45, #02071F);
  overflow: hidden;
}

/* =========================================
   BACKGROUND GRID EFFECT
========================================= */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
  pointer-events: none;
}

/* =========================================
   GLOW EFFECTS
========================================= */
.contact-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.12), transparent 70%);
  top: -200px;
  right: -150px;
}

/* =========================================
   FLOATING MAP
========================================= */
.contact-map-box {
  position: absolute;
  top: 80px;
  right: 8%;
  width: 350px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: contrast(105%) brightness(95%);
}

/* =========================================
   TOP
========================================= */
.contact-top {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-bottom: 70px;
}

.contact-mini {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 5px;
  color: #00D9FF;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-top h2 {
  font-size: 70px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-top h2 span {
  color: #00D9FF;
}

.contact-top p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
}

/* =========================================
   CONTACT BOXES
========================================= */
.contact-boxes {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 60px;
}

/* =========================================
   CARD
========================================= */
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  max-width: 320px;
}

.contact-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* =========================================
   ICON
========================================= */
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563EB, #00D9FF);
  margin-bottom: 18px;
}

.contact-icon i {
  font-size: 22px;
  color: #fff;
}

/* =========================================
   CARD TEXT
========================================= */
.contact-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   FORM AREA
========================================= */
.contact-form-area {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px;
  border-radius: 30px;
  backdrop-filter: blur(12px);
}

/* =========================================
   MINI TITLE
========================================= */
.form-mini {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 4px;
  color: #00D9FF;
  margin-bottom: 20px;
  font-weight: 600;
}

/* =========================================
   FORM TITLE
========================================= */
.contact-form-area h2 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 40px;
}

/* =========================================
   FORM
========================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ROW */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* =========================================
   INPUTS
========================================= */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 16px;
  color: #fff;
  transition: 0.3s ease;
}

/* TEXTAREA */
.contact-form textarea {
  height: 180px;
  resize: none;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00D9FF;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
}

/* =========================================
   BUTTON
========================================= */
.contact-form button {
  width: 220px;
  height: 60px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #2563EB, #00D9FF);
  transition: 0.4s ease;
}

.contact-form button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 217, 255, 0.35);
}

/* =========================================
   LIGHT MODE
========================================= */
body.light-mode .contact-section {
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF, #DBEAFE);
}

body.light-mode .contact-top h2,
body.light-mode .contact-form-area h2,
body.light-mode .contact-card h3 {
  color: #111827;
}

body.light-mode .contact-top p,
body.light-mode .contact-card p {
  color: #4B5563;
}

body.light-mode .contact-card,
body.light-mode .contact-form-area {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
  background: rgba(255, 255, 255, 0.8);
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .contact-form input::placeholder,
body.light-mode .contact-form textarea::placeholder {
  color: #6B7280;
}

/* =========================================
   PARTNERS SECTION
========================================= */
.partners {
  width: 100%;
  padding: 40px 6%;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #030B2E, #050F45, #02071F);
}

/* =========================================
   GRID BACKGROUND
========================================= */
.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* =========================================
   BLUE GLOW
========================================= */
.partners::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1), transparent 70%);
  top: -200px;
  right: -150px;
  z-index: 0;
}

/* =========================================
   CONTENT
========================================= */
.partners * {
  position: relative;
  z-index: 2;
}

/* =========================================
   MINI TITLE
========================================= */
.partners-mini-title {
  font-size: 0.95rem;
  letter-spacing: 6px;
  color: #00D9FF;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* =========================================
   HEADING
========================================= */
.partners-heading {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* =========================================
   WRAPPER
========================================= */
.partners-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  margin: auto;
}

/* =========================================
   SLIDER
========================================= */
.partners-slider {
  width: 980px;
  overflow: hidden;
}

/* =========================================
   TRACK AUTO SCROLL
========================================= */
.partner-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: partnerMove 25s linear infinite;
}

/* Pause on hover */
.partner-track:hover {
  animation-play-state: paused;
}

@keyframes partnerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* =========================================
   CARD
========================================= */
.partner-card {
  min-width: 140px;
  height: 100px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

/* =========================================
   CARD HOVER
========================================= */
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 217, 255, 0.16);
}

/* =========================================
   IMAGE
========================================= */
.partner-card img {
  width: 60px;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: all 0.4s ease;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  filter: none;
}

.partner-card:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(0, 217, 255, 0.45));
}

/* =========================================
   BUTTONS
========================================= */
.partner-prev,
.partner-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.partner-prev:hover,
.partner-next:hover {
  background: #ffffff;
  color: #050F45;
  transform: scale(1.1);
}

/* =========================================
   FOOTER
========================================= */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)), url("../image/footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 1.5rem;
  color: #fff;
}

/* =========================================
   OVERLAY
========================================= */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

/* =========================================
   TOP
========================================= */
.footer-top {
  position: relative;
  z-index: 2;
  padding: 2rem 6%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 0.8rem;
  justify-self: start;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  transition: 0.35s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #2563EB, #00D9FF);
  transform: translateY(-3px);
}

/* LOGO */
.footer-logo {
  text-align: center;
  justify-self: center;
}

.footer-logo img {
  width: 60px;
  margin: 0 auto 0.6rem;
}

.footer-logo h2 {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

.footer-logo span {
  font-size: 1.2rem;
  color: #00D9FF;
}

/* CALL */
.footer-call {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

.call-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-icon i {
  color: #00D9FF;
  font-size: 1.5rem;
}

.call-text p {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.call-text h3 {
  font-size: 2rem;
}

/* =========================================
   MAIN FOOTER
========================================= */
.footer-container {
  position: relative;
  z-index: 2;
  padding: 3rem 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* =========================================
   BOX
========================================= */
.footer-box h3 {
  font-size: 2rem;
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 70px;
  height: 4px;
  background: linear-gradient(135deg, #2563EB, #00D9FF);
  border-radius: 20px;
}

/* LIST */
.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.3s ease;
}

.footer-box ul li:hover {
  color: #fff;
  transform: translateX(4px);
}

/* LINKS */
.footer-box ul li a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-box ul li a:hover {
  color: #fff;
}

/* HOURS */
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.hours li span {
  font-weight: 600;
}

/* POSTS */
.footer-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.footer-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.footer-post span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-post h4 {
  font-size: 1.3rem;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* =========================================
   BOTTOM
========================================= */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

#intro {
  position: fixed;
  inset: 0;
  background: #050b1d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.intro-logo {
  width: 220px;
  animation: awakenLogo 3s ease forwards;
}

@keyframes awakenLogo {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(8);
  }
}
#intro.hide {
  opacity: 0;
  pointer-events: none;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 30px;
  z-index: 9999;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #ff5a5a;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.scroll-top::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: 2px;
  height: 70px;
  background: #ff5a5a;
}

.scroll-top:hover {
  transform: rotate(180deg) translateY(8px);
}

/* =====================================================
   FINAL RESPONSIVE FIX
===================================================== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   DESKTOP
========================================= */
#menu-btn {
  display: none;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header {
    padding: 1.5rem 3%;
  }
  #menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  .header .navbar.active {
    max-height: 500px;
  }
  .header .navbar a {
    width: 100%;
    padding: 1.5rem 2rem;
    margin: 0;
    border-bottom: 1px solid #f1f1f1;
  }
  .nav-btn {
    display: none;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Search */
  .search-form {
    width: 90% !important;
    max-width: 90%;
  }
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {
  html {
    font-size: 50%;
  }
  section {
    padding: 4rem 5%;
  }
  .header {
    padding: 1rem 1.5rem;
  }
  .header .logo img {
    width: 55px;
  }
  .icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  /* SEARCH BAR MOBILE */
  .search-form {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 90% !important;
    max-width: 90%;
    height: 5rem;
    padding: 0 1rem;
    border-radius: 1rem;
    z-index: 9999;
  }
  .search-form input {
    font-size: 1.5rem;
  }
  .search-form label {
    font-size: 2rem;
  }
  /* HERO MOBILE */
  .home .slide {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-size: cover !important;
    background-position: 82% center !important;
  }
  /* Person visible */
  .home .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
  }
  .home .slide .content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    /* move lower */
    transform: translateY(80px);
  }
  /* TITLE */
  .home .slide .content h3 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  /* PARAGRAPH */
  .home .slide .content p {
    font-size: 1.45rem;
    line-height: 1.8;
    color: #1f2937;
    max-width: 100%;
    margin: 0 auto 2rem;
  }
  /* BUTTON */
  .home .slide .content .btn {
    display: inline-flex;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .project-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .filter {
    width: 100%;
    min-width: 100%;
    position: relative;
    top: auto;
  }
  .project-box {
    width: 100%;
  }
  .project-page,
  .project-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
  }
  .project-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  /* =========================================
     CONTACT
  ========================================= */
  .contact-boxes {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-map-box {
    position: relative;
    width: 100%;
    height: 250px;
    right: auto;
    top: auto;
  }
}
/* =========================================
   DARK MODE MOBILE MENU
========================================= */
@media (max-width: 991px) {
  body.dark-mode .header .navbar {
    background: #1B2430 !important;
  }
  body.dark-mode .header .navbar a {
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
/* =========================================
   DARK MODE SEARCH
========================================= */
body.dark-mode .search-form {
  background: #1B2430;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .search-form input {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

body.dark-mode .search-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   DARK MODE MOBILE MENU
========================================= */
@media (max-width: 991px) {
  body.dark-mode .header .navbar {
    background: #1B2430 !important;
  }
  body.dark-mode .header .navbar a {
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
/* =========================================
   DARK MODE SEARCH
========================================= */
body.dark-mode .search-form {
  background: #1B2430;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .search-form input {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

body.dark-mode .search-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   OUR TEAM MOBILE FIX
========================================= */
@media (max-width: 768px) {
  .our-team {
    flex-direction: column;
    padding: 5rem 2rem 120px;
    gap: 3rem;
    min-height: auto;
  }
  .team-left {
    width: 100%;
    padding-top: 0;
  }
  .team-heading {
    font-size: 4.5rem;
    line-height: 1.1;
  }
  .team-grid {
    width: 100%;
    padding-top: 0;
  }
  .team-page {
    margin-bottom: -120px;
  }
  .team-card {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 120px 1fr !important;
    height: auto !important;
    min-height: auto !important;
    overflow: hidden;
    margin: 0 0 2rem 0 !important;
    transform: none !important;
  }
  .team-card:nth-child(1),
  .team-card:nth-child(2),
  .team-card:nth-child(3) {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
  .team-grid:hover .team-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .team-grid .team-card.active-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .team-image {
    width: 120px;
    height: 180px;
    overflow: hidden;
  }
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-content {
    padding: 1.5rem;
  }
  .team-number {
    position: relative;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  .team-content h3 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
  }
  .team-content h4 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
  }
  .team-content p {
    margin-top: 0;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .team-btn-area {
    display: flex;
    justify-content: center;
  }
  #loadMoreTeam {
    width: 100%;
    max-width: 350px;
  }
}
/* =========================================
   PARTNERS RESPONSIVE FIX
========================================= */
@media (max-width: 768px) {
  .partners {
    padding: 5rem 2rem;
    overflow: hidden;
  }
  .partners-heading {
    font-size: 2.5rem;
  }
  .partners-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }
  .partners-slider {
    width: calc(100% - 110px);
    overflow: hidden;
  }
  .partner-track {
    display: flex;
    gap: 0.8rem;
  }
  .partner-card {
    min-width: 140px;
    height: 100px;
  }
  .partner-card img {
    width: 55px;
  }
  .partner-prev,
  .partner-next {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
}
/* =========================================
   FOOTER MOBILE FIX
========================================= */
@media (max-width: 768px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-social {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .footer-logo img {
    width: 60px;
    display: block;
    margin: 0 auto 0.8rem auto;
  }
  .footer-logo h2 {
    text-align: center;
  }
  .footer-logo span {
    text-align: center;
  }
  .footer-call {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .call-text {
    text-align: center;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .footer-box h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .hours li {
    justify-content: center;
  }
  .footer-post {
    justify-content: center;
  }
  .footer-bottom {
    text-align: center;
  }
  /* =========================================
     dark mode 
  ========================================= */
  body.dark-mode .header .navbar {
    background: #1B2430 !important;
  }
  body.dark-mode .header .navbar a {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    background: none !important;
    text-shadow: none !important;
  }
}
/* =========================================
   SMALL PHONES
========================================= */
@media (max-width: 480px) {
  .team-heading {
    font-size: 3.8rem;
  }
  .team-image {
    height: 220px;
  }
  .home .slide .content h3 {
    font-size: 2.5rem;
  }
  .home .slide .content p {
    font-size: 1.4rem;
  }
  .partner-card {
    min-width: 150px;
  }
}/*# sourceMappingURL=style.css.map */