* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #fbbf24;
  --accent: #ff3366;
  --accent-hover: #ff1149;
  --text-primary: #fafafa;
  --text-secondary: #a3a3a3;
  --text-muted: #999;
  --bg-dark: #000;
  --light-dark: #2e2e2e;
  --bg-section: #0a0a0a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
}

/* Navbar */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-dark);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 26px;
}

.logo-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--accent);
  text-decoration: underline;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.nav-cta span {
  display: inline;
  background: transparent;
  padding: 0;
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

/* ===============================
   RESPONSIVE NAVBAR
================================= */

/* Hide mobile CTA by default */
.mobile-cta {
  display: none;
}

/* Tablet + Mobile */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: block;
  }

  .desktop-cta {
    display: none;
  }

  .nav-container {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 2rem;
    display: none;
    border-bottom: 1px solid var(--light-dark);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1.05rem;
    width: 100%;
  }

  /* CTA at bottom */
  .mobile-cta {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
  }

  .mobile-cta .nav-cta {
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    font-size: 1rem;
    color: black;
  }
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .nav-links a {
    font-size: 1rem;
  }
}

/* =========================
   HERO SECTION ONLY
========================= */

/* Required variables */
:root {
  --accent: #ff3366;
  --accent-hover: #ff1149;
  --text-light: #ffffff;
  --text-muted: #999;
}

/* Hero base */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #ff3366 0deg,
    #000 60deg,
    #ff3366 120deg,
    #000 180deg,
    #ff3366 240deg,
    #000 300deg,
    #ff3366 360deg
  );
  animation: spin 20s linear infinite;
  opacity: 0.15;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Layout */
.hero-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.hero-left {
  padding-right: 60px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: slideInLeft 1s ease;
}

/* Title */
.hero-title {
  font-weight: 900;
  margin-bottom: 25px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  animation: slideUp 1s ease backwards;
}

.hero-title .line:nth-child(1) span {
  animation-delay: 0.2s;
  font-size: 40px;
  font-weight: 300;
}
.hero-title .line:nth-child(2) span {
  animation-delay: 0.3s;
  font-size: 60px;
}
.hero-title .line:nth-child(3) span {
  animation-delay: 0.4s;
  font-size: 40px;
}

.hero-title .accent {
  background: linear-gradient(90deg, #ff3366, #ff6690);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* Description */
.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeIn 1s ease 0.6s backwards;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  animation: fadeIn 1s ease 0.8s backwards;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* CTA */
.cta-group {
  display: flex;
  gap: 20px;
  animation: fadeIn 1s ease 1s backwards;
}

.cta-button {
  padding: 18px 40px;
  text-decoration: none;
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  font-weight: 600;
  font-size: 13px;
  transition: all 0.4s ease;
}

.cta-button.primary {
  background: var(--accent);
  color: #fff;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 51, 102, 0.3);
}

.cta-button.outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Right image */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  max-width: 500px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-carousel {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 48%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  display: block;
}

.accent {
  color: #ff4d4d; /* change to your accent color */
  font-weight: 600;
  border-right: 2px solid currentColor;
  padding-right: 4px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%,
  50%,
  100% {
    border-color: transparent;
  }
  25%,
  75% {
    border-color: currentColor;
  }
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Responsive (Hero only) */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    padding-right: 0;
    padding-top: 100px;
  }

  .hero-right,
  .scroll-indicator {
    display: none;
  }

  .hero-stats {
    justify-content: center;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    height: 120vh;
  }
}

@media (max-width: 400px) {
  .hero {
    height: 168vh;
  }
  .scroll-indicator {
    display: none;
  }
}

/* Services Section */

.features {
  padding: 6rem 2rem;
  background: var(--bg-section);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 22px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-dark);
  border: 1px solid var(--light-dark);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--light-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--bg-dark);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.view-service-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.view-service-details p {
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
}

.view-service-details svg {
  cursor: pointer;
}

@media (max-width: 400px) {
  .event-card {
    width: 100% !important;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Short Portfolio Section */

/* Events Section */
.events {
  background: var(--bg-section);
  padding: 120px 60px;
  position: relative;
  z-index: 2;

  background: #121212; /* Fallback for browsers that don't support gradients */
  background: linear-gradient(
    135deg,
    #121212 25%,
    #1a1a1a 25%,
    #1a1a1a 50%,
    #121212 50%,
    #121212 75%,
    #1a1a1a 75%,
    #1a1a1a
  );
  background-size: 40px 40px;

  /* Animation */
  animation: move 4s linear infinite;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

.events-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* semi-glass effect */
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
  cursor: pointer;
  width: 382px;
}

.event-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.event-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.event-image img {
  height: 215px;
  object-fit: cover;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  z-index: 2;
}

.event-date-badge .day {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.event-date-badge .month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.event-content {
  padding: 28px;
  background: var(--light-dark);
  height: -webkit-fill-available;
}

.event-content h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.event-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.events .section-tag {
  color: var(--accent) !important;
}

.website-url {
  margin-top: 20px;
  color: #fafafa !important;
  text-decoration: underline;
  font-size: 14px;
}

.tech-skills-used {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tech-skills-used p {
  padding: 0px;
  margin-bottom: 0px !important;
  line-height: normal !important;
}

/* From Uiverse.io by alexmaracinaru */
.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  margin-top: 4rem;
  align-self: center;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: var(--accent);
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--text-primary);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: var(--accent-hover);
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 500px) {
  .event-card {
    width: 365px;
  }
}
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 920px) {
  .events {
    padding: 80px 24px;
  }
}

/* Team */

.instructors {
  padding: 6rem 2rem;
  background: var(--bg-section);
}

.instructors .section-label {
  color: var(--primary);
}

.instructors .section-title {
  color: var(--text-primary);
}

.instructors .section-description {
  color: var(--text-secondary);
}

.instructors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-end;
  gap: 40px;
}

.instructor-card {
  text-align: center;
  transition: transform 0.3s;
}

.instructor-card:hover {
  transform: translateY(-5px);
}

.instructor-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--light-dark);
  transition: all 0.3s;
  overflow: hidden;
  background: var(--light-dark);
}

.ceo {
  width: 180px;
  height: 180px;
}

.ceo-title {
  background: #ff3366;
  border-radius: 16px;
  margin-bottom: 8px;
  width: fit-content;
  position: relative;
  left: 15%;
  padding: 2px 7px;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.instructor-card:hover .instructor-image {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.instructor-card:hover .instructor-image img {
  filter: grayscale(0%);
}

.instructor-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.instructor-role {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.instructor-bio {
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .instructors-grid {
    grid-template-columns: 1fr;
  }

  .footer-social-icons-row {
    justify-content: center;
  }

  .footer-brand .logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

/* Contact US */

/* Contact Section */
.contact {
  padding: 120px 50px 100px;
  background: #121212; /* Fallback for browsers that don't support gradients */
  background: linear-gradient(
    135deg,
    #121212 25%,
    #1a1a1a 25%,
    #1a1a1a 50%,
    #121212 50%,
    #121212 75%,
    #1a1a1a 75%,
    #1a1a1a
  );
  background-size: 40px 40px;

  /* Animation */
  animation: move 4s linear infinite;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header .section-title {
  font-size: 48px;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.contact-header .section-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-content {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
  justify-content: center;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  padding: 50px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.05;
  animation: rotate 30s linear infinite;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: "Arial", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  background: var(--accent);
  color: white;
  padding: 18px 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.form-submit:hover::before {
  width: 300px;
  height: 300px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.contact-info {
  padding: 50px;
  background: var(--bg-dark);
  border-radius: 10px;
  border: 1px solid rgba(255, 51, 102, 0.1);
  width: fit-content;
}

.info-item {
  margin-bottom: 50px;
  display: flex;
  align-items: start;
  gap: 20px;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), #ff6690);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 51, 102, 0.2);
}

.info-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.info-content p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

.info-content a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.info-content a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Map Section */
.map-section {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  overflow: hidden;
  margin-top: 60px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: #111;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  filter: brightness(0.8) contrast(1.2) invert(1) hue-rotate(180deg)
    saturate(0.3);
}

/* From Uiverse.io by ahmed150up2 */
.card {
  display: flex;
  height: 70px;
  width: 270px;
  margin-bottom: 50px;
}

.card svg {
  position: absolute;
  display: flex;
  width: 60%;
  height: 100%;
  font-size: 24px;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.25s;
  z-index: 2;
  cursor: pointer;
}

.card .social-link1,
.card .social-link2,
.card .social-link3,
.card .social-link4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  color: whitesmoke;
  font-size: 24px;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 50px;
}

.card svg {
  transform: scale(1);
}

.card .social-link1:hover {
  background-color: #1a1e22;
  animation: bounce_613 0.4s linear;
}

.card .social-link2:hover {
  background-color: #0a66c2;
  animation: bounce_613 0.4s linear;
}

.card .social-link3:hover {
  background-color: #0059f7;
  animation: bounce_613 0.4s linear;
}

.card .social-link4:hover {
  background-color: #1d4292;
  animation: bounce_613 0.4s linear;
}

@keyframes bounce_613 {
  40% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.8);
  }

  80% {
    transform: scale(1.2);
  }

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

/* Footer */

/* Footer */
footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 1rem auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-icons-container {
  position: relative;
  width: fit-content;
  /*  choose your size */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.footer-icons-container button {
  width: 50px;
  height: 50px;
  border: none;
  background-color: #313638;
  transition: 0.3s;
  cursor: pointer;
}

.icon {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.footer-icons-container button:nth-child(1):hover {
  background-color: #2753a7;
}

.title {
  color: gray;
  font-weight: 700;
  font-size: 17px;
  position: absolute;
  top: -35px;
  left: 0;
}

/* Floating Scroll-to-Top Button */
/* Floating Scroll-to-Top Button */
#scrollTopBtn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: fixed; /* Make it float */
  bottom: 30px; /* Distance from bottom */
  right: 30px; /* Distance from right */
  z-index: 1000; /* Always on top */
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  transition: width 0.3s, height 0.3s;
  animation: float 2.5s ease-in-out infinite; /* Floating animation */
}

/* Icon */
#scrollTopBtn .sign {
  width: 100%;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

/* Text */
#scrollTopBtn .text {
  position: absolute;
  right: 0;
  width: 0;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

/* Hover expand */
#scrollTopBtn:hover {
  width: 120px;
  border-radius: 25px;
}

#scrollTopBtn:hover .sign {
  width: 30%;
  padding-left: 15px;
}

#scrollTopBtn:hover .text {
  opacity: 1;
  width: 70%;
  padding-right: 15px;
}

/* Click effect */
#scrollTopBtn:active {
  transform: translate(2px, 2px);
}

.footer-social-icons-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* Floating keyframes */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
