/* ===========================
   Color Palette (Inspired by Logo)
   =========================== */
:root {
  --primary-purple: #000000;
  --secondary-purple: #111111;
  --teal: #008080; /* Teal from logo */
  --gold: #ddac0c; /* Gold from logo */
  --light-gold: #eeeeee;
  --dark-bg: #000000;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #ffffff;
  --text-light: #cccccc;
  --orange-accent: #ffffff;
  --black: #000000;
}

/* ===========================
   Global Styles
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Iceland", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--light-gray);
  overflow-x: hidden;
  background-color: var(--dark-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  /* background: rgba(0, 0, 0, 0.95); */
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 5px 0px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 20px;
  height: auto;
}

.navbar.scrolled {
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 2px;
}

.logo i {
  font-size: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  min-height: 100vh;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
  opacity: 0.3;
  z-index: 1; /* ensure overlay sits above lights but below hero content */
/* } */

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-family: "Grey Qo", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2rem;
  color: rgb(255, 0, 81);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.6s backwards;

  display: inline-flex;
  border-radius: 15px;
  padding: 0px 5px;
}
.hero-subtitle-01 {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--gold);
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--gold);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--gold);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s backwards;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Diwali Lights BG */
.blur-circle {
  position: absolute;
  border-radius: 50%;
  /* use a subtle warm/gold tint instead of bright white to avoid obvious
     white blobs in the center of the hero */
  background: radial-gradient(
    circle,
    rgba(221, 172, 12, 0.06) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  filter: blur(6px);
  animation: float 20s linear infinite;
  z-index: 2; /* visible background blur */
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100vh) scale(1.2);
    opacity: 0;
  }
}

/* Decorative lights string */
.lights-container {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  z-index: 10; /* above stars but below hero-content */
}

.light-string {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 20px;
}

.light-string::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  height: 2px;
  background: #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.light {
  width: 25px;
  position: relative;
  cursor: pointer;
  transform-origin: top center;
}

.light::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: currentColor;
  bottom: 0;
  filter: brightness(1.3);
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor,
    0 0 30px currentColor, 0 0 40px currentColor;
  animation: glow 1.5s ease-in-out infinite alternate;
  z-index: 2; /* ensure bulb renders above its hanging thread */
}

@keyframes glow {
  0% {
    filter: brightness(1.2) drop-shadow(0 0 8px currentColor);
  }
  100% {
    filter: brightness(1.5) drop-shadow(0 0 20px currentColor);
  }
}

.light::after {
  content: "";
  position: absolute;
  /* make the thread inherit the bulb color but slightly darker toward the top
     and ensure it's visible behind the bulb */
  width: 3px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: var(
    --thread-height,
    90px
  ); /* reads --thread-height CSS var from JS */

  background: linear-gradient(
    to bottom,
    currentColor 0%,
    currentColor 95%,
    rgba(0, 0, 0, 0.6) 100%
  );
  opacity: 0.95;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35) inset;
  z-index: 0; /* behind the bulb (::before has z-index:2) */
}

.light:hover::before {
  animation: none;
  filter: brightness(1.5);
}

@keyframes swing-1 {
  0% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}

@keyframes swing-2 {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

@keyframes swing-3 {
  0% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(6deg);
  }
}

/* Twinkling Stars */
.twinkle-star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 5px white, 0 0 10px white;
  animation: twinkle 3s linear infinite;
  z-index: 5; /* visible but behind lights */
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
/* ===========================
   Section Styles
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
  border-radius: 20px 20px 0px 0px;
  border-top: 2px dotted var(--gold);
  padding: 100px 0;
  background: var(--dark-bg);
}

.services-scroll-wrapper {
  overflow-x: auto;
  cursor: grab;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  position: relative;
  padding: 20px 0px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 100px,
    black calc(100% - 100px),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 100px,
    black calc(100% - 100px),
    transparent
  );
}

.services-scroll-wrapper.grabbing {
  cursor: grabbing;
}

.services-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.services-carousel-container {
  color: wheat;
  display: flex;
  gap: 30px;
  perspective: 1000px;
  animation: infiniteScroll 40s linear infinite;
}

.services-carousel-container:hover {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(
      calc(-370px * 6)
    ); /* (card width + gap) * number of original cards */
  }
}

.service-card {
  background: var(--secondary-purple);
  padding: 40px 30px;
  border-radius: 20px;
  width: 340px;
  flex-shrink: 0;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
  border: 2px dotted white;
  position: relative; /* Needed for pseudo-elements */
  overflow: hidden; /* To contain pseudo-elements */
}

.service-card:hover {
  transform: translateY(-15px) rotateX(3deg) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(221, 172, 12, 0.3); /* Stronger gold glow */
}

/* Decorative background for service cards */
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(221, 172, 12, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-tagline {
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--black) 0%, var(--white) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 128, 128, 0.4); /* Teal glow */
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--black) 100%
  ); /* Gold to Teal gradient on hover */
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6); /* Stronger gold glow on hover */
}

.service-features {
  list-style: none;
  text-align: left;
  margin-top: 20px;
  padding-left: 0; /* Reset default padding */
}

.service-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 30px; /* Space for icon */
  color: var(--text-light);
}

.service-features li i {
  position: absolute;
  left: 0;
  color: var(--gold); /* Gold checkmark */
  font-size: 18px;
}

.service-icon i {
  font-size: 35px;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ===========================
   Projects Section
   =========================== */
.projects-section {
  padding: 100px 0;
  background: var(--primary-purple);
}

.about-text .section-title {
  text-align: left;
}

.projects-filter {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 30px;
  border: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Iceland", sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.projects-grid {
  column-count: 3;
  column-gap: 20px;
}

@media (max-width: 968px) {
  .projects-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    column-count: 1;
  }
}

.project-card {
  margin-bottom: 20px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 1;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
}

.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.2) 70%
  );
}

.project-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.project-overlay p {
  color: var(--gold);
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay h3 {
  transform: translateY(-5px);
}

.project-card:hover .project-overlay p {
  opacity: 1;
  max-height: 100px;
}

/* ===========================
   About Section
   =========================== */
.about-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-purple) 0%,
    var(--dark-bg) 100%
  );
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0px;
  padding-left: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
}

.feature-item i {
  color: var(--gold);
  font-size: 20px;
}

.about-cta {
  margin-top: 30px;
}

.about-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.visual-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.visual-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}

.visual-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.visual-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.card-3 {
  grid-column: span 2;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden; /* To contain the pseudo-element */
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px; /* Adjust size as needed */
  height: 500px; /* Adjust size as needed */
  transform: translate(-50%, -50%);
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.35;
  z-index: -1;
}

.contact-content {
  display: grid;
  /* grid-template-columns: 1fr 2fr; */
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 50px;
}
.contact-info {
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.info-item i {
  color: var(--gold);
  font-size: 20px;
}

.contact-form-container {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 800px; /* Increased max-width for a larger form */
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box; /* Important for border gradient */
}

.contact-form-container::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px; /* Border width */
  border-radius: inherit; /* Match parent */
  /* background: linear-gradient(135deg, var(--gold), transparent, var(--gold)); */
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 15px;
  left: 20px;
  color: var(--gold);
  font-weight: 600;
  pointer-events: none;
  transition: all 0.3s ease; /* Background removed to work with transparency */
  padding: 0 5px;
  border-radius: 10px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label {
  top: -10px;
  left: 10px;
  left: 15px;
  font-size: 14px;
  background: var(--secondary-purple);
}

.form-group input:focus + label {
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
  background-color: transparent;
  background-color: var(--secondary-purple);
  color: var(--white);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(221, 172, 12, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ddac0c' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 50px; /* Make space for the arrow */
}

.form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.form-group textarea {
  resize: none;
  overflow-y: hidden; /* Hide scrollbar that might briefly appear */
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 18px 40px;
  padding: 16px 40px;
  box-shadow: 0 5px 20px rgba(221, 172, 12, 0.2);
  font-family: "Iceland", sans-serif;
}

.btn-submit:hover {
  box-shadow: 0 8px 30px rgba(221, 172, 12, 0.4);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px dotted var(--gold);
  border-radius: 20px 20px 0px 0px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-brand-name {
  height: 40px;
  object-fit: contain;
}

.footer-about .footer-logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-social {
  /* Inherits flex properties from .footer-contact p */
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.footer-bottom i {
  color: var(--gold);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    width: 95%;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: rgba(13, 5, 32, 0.8);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 30px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0px;
  }

  .hero-title {
    margin-top: 60px;
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 30px;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-visual {
    order: -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .visual-card {
    position: static;
    height: 60px;
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
  }
  .visual-card p {
    display: none;
  }
  .visual-card h4 {
    margin: 10px 20px;
  }
  .visual-card .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 15px;
    order: 1;
    margin-top: 40px;
    border-right: none;
    padding-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-container {
    justify-content: center;
  }

  .footer-about {
    align-items: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

.section-title {
  font-size: 2rem;
}
.logo {
  font-size: 20px;
  gap: 5px;
}

.btn {
  padding: 12px 25px;
  font-size: 14px;
  max-width: 300px;
}
.about-text .section-title {
  text-align: center;
}
.btn {
  max-width: 300px;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg); /* Match site's dark theme */
  z-index: 9999; /* Make sure it's on top of everything */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 80px; /* Increased from 50px */
  aspect-ratio: 1;
  color: var(--gold);
  position: relative;
  background: radial-gradient(20px, currentColor 94%, #0000);
}
.loader:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(14px at bottom right, #0000 94%, currentColor) top
      left,
    radial-gradient(14px at bottom left, #0000 94%, currentColor) top right,
    radial-gradient(14px at top right, #0000 94%, currentColor) bottom left,
    radial-gradient(14px at top left, #0000 94%, currentColor) bottom right;
  background-size: 38px 38px;
  background-repeat: no-repeat;
  animation: Animation 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

.content {
  display: none; /* Hide content initially */
}

@keyframes Animation {
  33% {
    inset: -20px; /* Increased from -12px */
    transform: rotate(0deg);
  }
  66% {
    inset: -20px; /* Increased from -12px */
    transform: rotate(90deg);
  }
  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}
