/* ======================
   Base / Reset
====================== */
html { scroll-behavior: smooth; }

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  line-height: 1.6;

  /* Animated dark gradient */
  background: linear-gradient(135deg, #000000, #000000, #2F2E30);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ======================
   Typography
====================== */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

h4 { font-size: 23px; }

p, a, li { font-weight: 400; }

/* ======================
   Header + Navbar
====================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(0,0,0,0.75);
  padding: 20px;

  display: flex;
  flex-direction: column;   /* stack logo + nav */
  align-items: center;
  gap: 12px;
}


.logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.logo img {
  height: 100px;
  width: auto;
}


nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ======================
   Hamburger Button
====================== */
.hamburger {
  display: none; /* shown on mobile only */
  align-items: center;
  gap: 8px;
  cursor: pointer;

  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  font-weight: 700;
  width: fit-content;

  box-shadow: 0 0 10px rgba(255,255,255,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: menuGlowPulse 2.8s infinite alternate;
}

@keyframes menuGlowPulse {
  from { box-shadow: 0 0 10px rgba(255, 196, 43, 0.4); }
  to   { box-shadow: 0 0 25px rgba(255, 255, 255, 1); }
}

.hamburger:hover {
  transform: scale(1.07);
  box-shadow: 0 0 30px rgba(255,255,255,1);
}

.hamburger .menu-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 14px;
}

.menu-icon span {
  width: 17px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}

/* X animation */
.hamburger.open .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}
.hamburger.open .menu-icon span:nth-child(2) {
  opacity: 0;
}
.hamburger.open .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px);
}

/* Overlay background */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 900;
}

.overlay.show { display: block; }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;

  background: #111;
  display: flex;
  flex-direction: column;
  padding-top: 60px;

  transition: right 0.3s ease;
  z-index: 1001;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  transition: background 0.3s;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.2);
}

/* ======================
   Page Content + Cards
====================== */
.page {
  padding: 60px 20px;
  text-align: center;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card, .card3 {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  color: #000;
  display: block;
  text-decoration: none;
}

.card:hover, .card3:hover { transform: translateY(-5px); }

.card3 {
  padding: 10px;
  max-width: 1000px;
}

/* ======================
   Contact Section + Form
====================== */
#contact {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
margin-bottom: 120px;
  padding: 60px 20px;
  text-align: center;
}

#contact h1 {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s forwards;
  animation-delay: 0.05s;
}

#contact form {
  width: 100%;
  max-width: 600px;

  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;

  background: #000;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #fff;

  box-shadow: 0 6px 15px rgba(0,0,0,0.2);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s forwards;
  animation-delay: 0.1s;
}

#contact form input,
#contact form textarea,
#contact form button {
  width: 90%;
  max-width: 500px;

  padding: 14px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;

  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

#contact form textarea {
  resize: vertical;
  min-height: 120px;
}

#contact form button {
  background: #fff;
  color: #000;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

#contact form button:hover { background: #888; }

@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ======================
   Messages
====================== */
.success {
  color: #28a745;
  background: #e6f4ea;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}

.error {
  color: #dc3545;
  background: #fce8e8;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}

/* ======================
   Footer + Instagram
====================== */
footer {
  text-align: center;
  padding: 10px;
  margin-top: 10px;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;
  border-radius: 30px;

  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.instagram-btn img {
  width: 22px;
  height: 22px;
}

.instagram-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(214,41,118,0.6); }
  70%  { box-shadow: 0 0 0 15px rgba(214,41,118,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,41,118,0); }
}

/* ======================
   Video Background
====================== */
.video-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ======================
   About
====================== */
.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s forwards;
  animation-delay: 0.1s;
}

#about p {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.2rem;
  padding: 0 15px;
  text-align: center;
}

/* ======================
   Projects Section
====================== */

#projects {
  width: 100%;
}

.projects-heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

/* ======================
   Projects Grid
====================== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======================
   Project Card
====================== */

.card2 {
  background: #000;
  border-radius: 12px;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeInCard 0.4s ease forwards;
}

.card2 img {
  display: block;              /* removes inline spacing issues */
  width: 100%;
  max-width: 100%;
  height: 180px;               /* LOCK height */
  object-fit: contain;         /* no stretching */
  margin: 0 auto 15px auto;
}


.card2 h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card2 p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Hover */
.card2:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(255,255,255,0.6);
}

/* ======================
   Animations
====================== */

@keyframes fadeInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card2:nth-child(1) { animation-delay: 0.2s; }
.card2:nth-child(2) { animation-delay: 0.4s; }
.card2:nth-child(3) { animation-delay: 0.6s; }
.card2:nth-child(4) { animation-delay: 0.8s; }
.card2:nth-child(5) { animation-delay: 1s; }
.card2:nth-child(6) { animation-delay: 1.2s; }

/* ======================
   Responsive
====================== */

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}


/* ======================
   Services
====================== */

.services-section {
  text-align: center;
  padding: 80px 20px;
}

.services-section h1 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background: #000;
  border-radius: 15px;
  padding: 30px 20px;
  width: 500px;
  border: 2px solid #fff;
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px #fff;
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}

/* Optional icon colors */
.web-icon { color: #fcbf49; }
.marketing-icon { color: #34d399; }
.branding-icon { color: #a855f7; }

/* ======================
   Glow Button
====================== */
.glow-btn-container {
  text-align: center;
  margin-top: 1px;
  font-family: 'Poppins', sans-serif;
}

.glow-btn {
  position: relative;
  padding: 12px 28px;
  font-size: 1.1rem;

  background: #fff;
  color: #000;
  border: none;
  border-radius: 30px;

  cursor: pointer;
  font-weight: 600;
  outline: none;

  transition: 0.3s ease;
  box-shadow: 0 0 8px rgba(255,255,255,0.7);
  animation: glowPulse 2.5s infinite alternate;
}

@keyframes glowPulse {
  from { box-shadow: 0 0 10px rgba(255,255,255,0.4); }
  to   { box-shadow: 0 0 20px rgba(255,255,255,1); }
}

.hover-text {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);

  background: #fff;
  color: #000;
  padding: 6px 14px;

  font-size: 0.9rem;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  white-space: nowrap;
}

.glow-btn:hover .hover-text {
  opacity: 1;
  top: 125%;
}

.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,255,255,1);
}

/* ======================
   Pricing
====================== */
main {
  text-align: center;
  padding: 20px 15px;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.toggle-container {
  display: inline-flex;
  align-items: center;
  border: 2px solid #fff;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 30px;
}

.toggle-btn {
  padding: 8px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  background: transparent;
  border: none;
  font-size: 0.9rem;
}

.toggle-btn.active {
  background: #fff;
  color: #000;
}
.toggle-btn:not(.active) { color: #fff; }

.pricing-table {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.pricing-card {
  background: #000;
  border: 2px solid #fff;
  border-radius: 18px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 0 20px 4px #fff;
}

.pricing-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.pricing-card p.price {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 15px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.pricing-card ul li {
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.pricing-card .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  border-radius: 6px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-card .btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* ======================
   Hero
====================== */
.hero {
  background: transparent;
  color: #fff;

	 min-height: 100vh;      /* still full screen */
  padding: 110px 0 120px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
}

.hero-left { text-align: left; }

.hero-left h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 700;
  color: #fff;
	display: flex;
  flex-direction: column;
  align-items: flex-start; /* 🔥 THIS is the key */
	
}

.hero-accent {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
	width: 100%;
  max-width: none;
  margin: 0 0 20px;
  text-align: left;
	margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
	display: block;
}

.hero-badge,
.feat-pill,
.trust-box {
  background: rgba(0,0,0,0.55);
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.badge-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.hero-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin: 6px 0 22px;
  flex-wrap: wrap;
}

.hero-price .price-main {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}

.hero-price .price-period {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-left: 6px;
  font-weight: 600;
}

.price-note {
  margin-top: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

.trust-box {
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 220px;
  text-align: left;
}

.trust-top {
  font-weight: 800;
  margin-bottom: 6px;
}

.trust-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
}

.trust-brand { color: #fff; }
.trust-stars { letter-spacing: 2px; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 60px;
  padding: 0 28px;
  border-radius: 12px;

  background: #fff;
  color: #000;
  font-weight: 900;
  text-decoration: none;

  box-shadow: 0 0 25px rgba(255,255,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  margin: 10px 0 22px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255,255,255,0.7);
}

.hero-features {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  border: 2px solid #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
  display: block;
  object-fit: cover;
}

.hero-bar {
  margin-top: 10px;
  padding: 18px 0;
  background: rgba(0,0,0,0.75);
  border-top: 2px solid #fff;
}

.hero-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  text-align: left;
}

.hero-bar-text .bar-title {
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
}

.hero-bar-text .bar-sub {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-top: 4px;
}

.bar-btn {
  background: #fff;
  color: #000;
  font-weight: 900;

  text-decoration: none;
  padding: 14px 18px;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 0 25px rgba(255,255,255,0.25);
  transition: transform 0.2s ease;
}

.bar-btn:hover { transform: translateY(-2px); }
.bar-arrow { font-size: 1.1rem; }

/* ======================
   Responsive
====================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .projects { flex-direction: column; }

  /* Keep full video visible */
  .video-background {
    height: 100%;
    object-fit: fill;
  }

  /* Pull headings higher on mobile */
  #about h1,
  .services-section h1,
  #prices h1 {
    margin-top: 10px !important;
  }

  #about.page,
  .services-section,
  #prices.page,
  #prices {
    padding-top: 20px !important;
  }

  /* Extra bottom space on mobile */
  body { padding-bottom: 80px; }
  #contact { padding-bottom: 80px; }

  /* Contact form sizing */
  #contact form {
    width: 90%;
    max-width: 350px;
    padding: 20px;
  }

  #contact form input,
  #contact form textarea,
  #contact form button {
    width: 100%;
    font-size: 15px;
    padding: 10px;
  }

  #contact form button { padding: 12px 16px; }

  /* Pricing */
  h1 { font-size: 2rem; }
  .pricing-table { max-width: 95%; gap: 15px; }
  .pricing-card { padding: 25px 15px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  .toggle-btn { padding: 6px 12px; font-size: 0.8rem; }
  .pricing-card { padding: 20px 12px; }
  .pricing-card p.price { font-size: 1.5rem; }
  .pricing-card ul li { font-size: 0.8rem; }
  .pricing-card .btn { padding: 6px 15px; font-size: 0.8rem; }
}


.hero-left h1,
.hero-sub{
  align-self:flex-start !important;
  width:100% !important;
  margin-left:0 !important;
  margin-right:0 !important;
  padding-left:0 !important;
  text-align:left !important;
}


@media (max-width: 900px) {

  /* Stack + center hero */
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Image on top */
  .hero-right {
    order: -1;
    margin-top: -90px;   /* keep it higher */
    margin-bottom: 25px;
  }

  .hero-image {
    max-width: 90%;
    margin: 0 auto;
	  margin-bottom: -25px;
  }

  /* Center left content */
  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-left h1,
  .hero-sub {
    align-items: center !important;
    text-align: center !important;
	  
  }

  /* Center price row */
  .hero-price-row {
    justify-content: center;
  }

  /* Center CTA buttons */
  .hero-cta {
    margin-left: auto;
    margin-right: auto;
  }

  /* Center feature pills */
  .hero-features {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .hero .hero-sub {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }
}
@media (max-width: 900px) {
  .hero .hero-sub {
    text-align: center !important;
    margin: 12px auto !important;
	  transform: translateX(5px);
    max-width: 320px;
    align-self: center !important;
  }
}

/* Full-screen sections */
section {
  min-height: 100vh;

}

/* Keep content nicely centered */
.page {

  padding: 80px 20px;
}
#about-section p {
  max-width: 1000px;     /* makes it narrower */
  margin: 0 auto;
  font-size: 1.35rem;   /* makes text bigger */
  line-height: 1.8;     /* improves readability */
  padding: 0 5px;
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 340px);
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;  
}


.included-card {
  background: #000;
  border: 2px solid #fff;
  border-radius: 18px;
  padding: 30px 10px;
	width: 340px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.included-card small {
  display: block;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 6px;
  font-size: 0.85rem;
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px 4px #fff;
}



/* ======================
   Footer
====================== */

.site-footer {
  background: rgba(0,0,0,0.85);
  border-top: 2px solid #fff;
  padding: 50px 20px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  width: 90px;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.6));
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 10px;
  opacity: 0.85;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a:hover {
    transform: none;
  }
}


/* ======================
   Global Font Rules
====================== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif !important;
}

/* Body text */
body,
p,
a,
li,
span,
button,
input,
textarea,
label {
  font-family: 'Geist Mono', monospace !important;
}

/* Offset anchor scroll for fixed header */
section,
.page {
  scroll-margin-top: 100px; /* adjust to header height */
}

.hero-cta {
  font-family: 'Poppins', sans-serif !important;
}

#contact {
  scroll-margin-top: 120px; /* slightly more than the others */
}

@media (max-width: 768px) {
  header {
    flex-direction: row;          /* logo left, hamburger right */
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    order: 1;
  }

  .hamburger {
    order: 2;
    margin-left: auto;
  }
}

.logo {
  width: 80px; /* adjust if needed */
  transform-style: preserve-3d;
  animation: spin3d 5s linear infinite;
}

@keyframes spin3d {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

header {
  perspective: 1000px;
}
