/* styles.css
   Modern, responsive page with:
   - Navbar background: #fe00a3
   - Footer background: #fe00a3
   - Body background: single light purple (updated per request)
   - Responsive navigation with accessible dropdown and mobile toggle
*/

/* ---------- THEME VARIABLES ---------- */
:root{
  --pink: #fe00a3;            /* navbar + footer */
  --nav-text: #ffffff;
  --accent-1: #7a4dff;        /* complimentary purple */
  --accent-2: #2fb3ff;        /* light blue */
  --muted: #5b6168;
  /* Updated: use a single light purple background color */
  --bg-light-purple: #efe6ff; /* light purple page background */
  --container-width: 1200px;
  --radius: 12px;
  --gap: 18px;
  --shadow: 0 10px 30px rgba(10,12,30,0.08);
  --max-width: 1200px;
  --nav-height: 72px;
  --transition: 200ms ease;
}

/* ---------- Base reset / layout ---------- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #071026;
  /* Changed to a single light purple background as requested */
  background: var(--bg-light-purple);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.4;
}

/* Utility container */
.container{
  width:calc(100% - 50px);
  max-width:var(--container-width);
  margin:0 auto;
}

/* Skip link for accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:12px;
  top:12px;
  background:#111;
  color:#fff;
  padding:8px 12px;
  border-radius:6px;
  z-index:999;
}

/* ---------- Header & Navbar ---------- */
.site-header{
  background:var(--pink);
  color:var(--nav-text);
  position:sticky;
  top:0;
  z-index:40;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* inner header layout */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--gap);
  padding:12px 20px;
  height:var(--nav-height);
}

/* Logo */
.logo img{display:block; height:auto; max-height:100px;}

/* Nav & links */
.navbar{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
}
.nav-link{
  color:var(--nav-text);
  text-decoration:none;
  font-weight:600;
  padding:8px 12px;
  border-radius:8px;
  transition:background var(--transition), transform var(--transition);
  display:inline-flex;
  align-items:center;
}
.nav-link:hover,
.nav-link:focus{
  background: rgba(255,255,255,0.08);
  transform:translateY(-1px);
  outline: none;
}

/* Login button - prominent */
.login-btn{
  margin-left:10px;
  background: #fff;
  color: var(--pink);
  padding:9px 14px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: transform var(--transition);
}
.login-btn:hover, .login-btn:focus{ transform:translateY(-2px); }

/* Mobile nav toggle */
.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  color:inherit;
  padding:8px;
  margin-left:8px;
}
.hamburger{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  position:relative;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:#fff;
  transition: transform .18s ease;
}
.hamburger::before{ top:-6px; }
.hamburger::after{ top:6px; }

/* Dropdown menu styling */
.dropdown{ position:relative; }
.dropbtn{
  background:transparent;
  color:inherit;
  border:0;
  font-weight:600;
  padding:8px 12px;
  border-radius:8px;
  cursor:pointer;
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.dropbtn .caret { opacity:0.95; transform:translateY(1px); }
.dropbtn:focus{ outline:3px solid rgba(255,255,255,0.12); outline-offset:2px; }

/* The actual dropdown content */
.dropdown-content{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  background:#fff;
  color:#111;
  min-width:220px;
  border-radius:10px;
  box-shadow:var(--shadow);
  padding:8px;
  display:none;
  transform-origin:top left;
}
/* visible state toggled by JS */
.dropdown.open .dropdown-content{ display:block; }

/* dropdown links */
.dropdown-item{
  display:block;
  color:#071026;
  text-decoration:none;
  padding:8px 10px;
  border-radius:8px;
  font-weight:600;
}
.dropdown-item:hover, .dropdown-item:focus{ background:#f4f6f8; outline:none; }

/* ---------- Main content ---------- */
.site-main{ padding:28px 0; }

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1fr 480px;
  gap:28px;
  align-items:center;
  margin-bottom:28px;
}
.hero__content{ padding:20px; }
.hero__title{ font-size:32px; margin:0 0 12px; color:#071026; }
.hero__lead{ margin:0 0 18px; color:var(--muted); max-width:620px; }
.hero__ctas{ display:flex; gap:12px; flex-wrap:wrap; }

.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary{ background:var(--accent-1); color:#fff; }
.btn-outline{ background:transparent; border:2px solid rgba(7,16,38,0.06); color:#071026; }
.btn-cta{ background:var(--pink); color:#fff; box-shadow:0 8px 28px rgba(254,0,163,0.12); }

.btn:hover, .btn:focus{ transform:translateY(-3px); outline:none; }

/* Hero media */
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
  box-shadow:var(--shadow);
  display:block;
}

/* Features section */
.section-heading{ margin:0 0 14px 0; font-size:20px; }
.features-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
  list-style:none;
  padding:0;
  margin:12px 0 40px 0;
}
.feature-card{
  background:#fff;
  padding:18px;
  border-radius:12px;
  box-shadow:var(--shadow);
  text-align:left;
  min-height:150px;
}
.feature-icon{ width:48px; height:48px; display:block; margin-bottom:10px; }

/* CTA strip */
.cta-strip{
  background: linear-gradient(90deg, rgba(122,77,255,0.08), rgba(47,179,255,0.06));
  border-radius:12px;
  margin-bottom:28px;
  padding:18px 0;
}
.cta-inner{ display:flex; gap:16px; align-items:center; justify-content:space-between; }
.cta-text{ margin:0; font-weight:700; color:#071026; }

/* ---------- Footer ---------- */
.site-footer{ margin-top:28px; color:#fff; background:var(--pink); border-top-left-radius:14px; border-top-right-radius:14px; overflow:hidden; }
.footer-inner{ display:flex; gap:24px; align-items:flex-start; padding:28px 20px; justify-content:space-between; }
.footer-brand img{ display:block; margin-bottom:8px; }
.footer-slogan{ margin:0; color:rgba(255,255,255,0.95); }
.footer-links{ display:flex; gap:28px; }
.footer-col h4{ margin:0 0 8px; font-size:15px; }
.footer-col ul{ list-style:none; padding:0; margin:0; }
.footer-col a{ color:rgba(255,255,255,0.95); text-decoration:none; display:block; padding:6px 0; }
.footer-col a:hover{ text-decoration:underline; }

/* bottom bar */
.site-footer__bar{ background:rgba(0,0,0,0.06); padding:12px 0; margin-top:6px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; gap:12px; color:rgba(255,255,255,0.9); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .features-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ flex-direction:column; gap:16px; align-items:flex-start; }
}

/* Mobile: collapse nav to toggle */
@media (max-width: 760px){
  .nav-toggle{ display:block; }
  .navbar{
    position:fixed;
    inset:var(--nav-height) 12px auto 12px; /* top from header */
    right:12px;
    left:12px;
    background:var(--pink);
    border-radius:12px;
    padding:12px;
    display:flex;
    flex-direction:column;
    gap:8px;
    transform-origin:top right;
    transform:scaleY(0);
    transition: transform 180ms ease;
    z-index:40;
    align-items:flex-end;
  }
  .navbar.open{ transform:scaleY(1); }
  .nav-link{ width:100%; text-align:right; padding:10px 14px; }
  .dropdown-content{ position:static; min-width:unset; box-shadow:none; background:transparent; padding:0; }
  .dropdown-item{ color:#fff; padding:10px 0; font-weight:600; }
  .login-btn{ align-self:flex-end; }
  .features-grid{ grid-template-columns: 1fr; }
}


/* Index page in css appearance */

  /* ===== BASE STYLES ===== */
    :root {
      --pink: #fe00a3;
      --purple: #8e44ad;
      --blue: #2980b9;
      --bg-gradient: linear-gradient(135deg, #e3f0ff, #e8dcff);
    }

    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      background: var(--bg-gradient);
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      color: var(--purple);
      margin-bottom: 0.6em;
      text-align: center;
    }
    h2 { color: var(--blue); }
    h3, h4, h5 { color: var(--pink); }

    section {
      padding: 3em 1.5em;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ===== NAVBAR ===== */
    header {
      background: var(--pink);
      padding: 0.8em 2em;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

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

    .navbar {
      display: flex;
      align-items: center;
      gap: 1em;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .nav-link, .dropbtn {
      color: white;
      text-decoration: none;
      font-weight: 600;
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      padding: 0.5em 1em;
      transition: background 0.3s ease;
    }

    .nav-link:hover, .dropbtn:hover {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 6px;
    }

    /* ===== DROPDOWN ===== */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
      min-width: 200px;
      z-index: 1000;
    }

    .dropdown-content a {
      color: var(--purple);
      padding: 0.8em 1em;
      display: block;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .dropdown-content a:hover {
      background: var(--blue);
      color: white;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .login-btn {
      background: white;
      color: var(--pink);
      font-weight: 700;
      border-radius: 6px;
      padding: 0.6em 1.2em;
      transition: all 0.3s ease;
    }

    .login-btn:hover {
      background: var(--purple);
      color: white;
    }

    /* ===== CAROUSEL ===== */
    .carousel-section {
      text-align: center;
    }

    .carousel {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      max-width: 1000px;
      margin: 2em auto;
    }

    .carousel img {
      width: 100%;
      height: auto;
      display: block;
      transition: opacity 0.1s ease;
    }

    .slides {
      display: flex;
      transition: transform 0.1s ease-in-out;
    }

    .slide {
      min-width: 100%;
      opacity: 0;
      transition: opacity 0.1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(254,0,163,0.8);
      color: white;
      border: none;
      font-size: 1.5em;
      padding: 0.4em 0.6em;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.1s ease;
    }

    .carousel-control:hover {
      background: var(--purple);
    }

    .prev { left: 15px; }
    .next { right: 15px; }

    .carousel-indicators {
      display: flex;
      justify-content: center;
      margin-top: 1em;
      gap: 8px;
    }

    .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      background: #ccc;
      cursor: pointer;
    }

    .carousel-indicators button.active {
      background: var(--pink);
    }

    /* ===== FEATURE SECTIONS ===== */
    .best-features, .about-features, .gallery-list, .solutions-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5em;
      list-style: none;
      padding: 0;
      margin: 2em 0;
    }

    .best-features li, .about-features li, .solutions-list li, .gallery-list li {
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      padding: 1.5em;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .best-features li:hover, .about-features li:hover, .gallery-list li:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    .best-features img, .about-features img, .solutions-list img {
      width: 60px;
      height: auto;
      margin-bottom: 0.8em;
    }

    .gallery-list img {
      width: 100%;
      border-radius: 12px;
    }

    .gallery-list span {
      display: block;
      margin-top: 0.5em;
      font-weight: 600;
      color: var(--purple);
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--pink);
      color: white;
      text-align: center;
      padding: 1.5em 0;
      margin-top: 3em;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: center;
      }
      .navbar {
        justify-content: center;
      }
    }

    /* ===== INSPIRATION GALLERY ===== */
.inspiration-gallery {
  text-align: center;
  padding: 4em 2em;
  background: linear-gradient(135deg, rgba(173,216,230,0.3), rgba(238,130,238,0.25));
  border-radius: 20px;
  max-width: 1200px;
  margin: 3em auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  opacity: 0; /* start hidden */
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Active state when in view */
.inspiration-gallery.visible {
  opacity: 1;
  transform: translateY(0);
}

.inspiration-gallery h3 {
  font-size: 2.2rem;
  color: #fe00a3;
  margin-bottom: 0.5em;
}

.inspiration-gallery p {
  color: #444;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2em;
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8em;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  justify-items: center;
}

/* Each Item */
.gallery-list li {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}

.gallery-list li:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Images */
.gallery-list img {
  width: 120%;
  height: 290px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
  transition: transform 0.5s ease;
}

.gallery-list li:hover img {
  transform: scale(1.08);
}

/* Captions */
.gallery-list span {
  display: block;
  padding: 0.8em;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  background: rgba(255,255,255,0.95);
  border-radius: 0 0 16px 16px;
}

/* Contact form styles */

/* === GLOBAL === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === FADE/SLIDE IN ANIMATION === */
.fade-slide {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === CONTACT HERO === */
.contact-hero {
  background: linear-gradient(135deg, rgba(147,112,219,0.9), rgba(255,105,180,0.9)), url('assets/contact-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5em 2em;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  color: #fff;
}
.contact-hero p {
  font-size: 1.2rem;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 4em 2em;
  background: #f9f9ff;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3em;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* === CONTACT INFO === */
.contact-info h2 {
  color: #5c00b3;
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.contact-info p {
  color: #444;
  margin-bottom: 1.5em;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}
.contact-info li {
  margin-bottom: 0.8em;
  font-size: 1.05rem;
  color: #333;
}
.contact-info a {
  color: #b300ff;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.social-links a img {
  width: 28px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.social-links a:hover img {
  transform: scale(1.2);
}

/* === CONTACT FORM === */
.contact-form {
  background: #fff;
  padding: 2.5em;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-form h2 {
  color: #b300ff;
  font-size: 1.8rem;
  margin-bottom: 1.2em;
}
.form-group {
  margin-bottom: 1.5em;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em;
  color: #333;
}
input, textarea {
  width: 100%;
  padding: 0.8em;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
input:focus, textarea:focus {
  border-color: #7f00ff;
  box-shadow: 0 0 8px rgba(127,0,255,0.2);
  outline: none;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #7f00ff, #ff0080);
  color: white;
  font-weight: 600;
  padding: 0.9em 2em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255,0,128,0.3);
}

/* Success Message Styling */
.success-message {
  margin-top: 1.5em;
  padding: 1.2em;
  background: #e8fdf1;
  border-left: 5px solid #00c46b;
  border-radius: 8px;
  color: #026b3d;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.success-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.success-message .checkmark {
  font-size: 1.6rem;
  margin-bottom: 0.3em;
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  0% { transform: scale(0.2); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}



/* Notification */
.notification {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #00c46b;
  color: white;
  padding: 0.8em 1.2em;
  border-radius: 8px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.notification.show {
  opacity: 1;
}

/* Price list section styles */

/* General Section Styling */
.carousel-section {
  background: linear-gradient(135deg, #e3f0ff 0%, #f3e3ff 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #155aba;
  margin-bottom: 0.5rem;
  animation: fadeSlideUp 1.2s ease forwards;
}

.section-subtitle {
  color: #555;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  animation: fadeSlideUp 1.4s ease forwards;
}

/* Showcase Image Container */
.showcase-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 90%;
}

.showcase-container:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.6s ease forwards;
}

/* View Fullscreen Button */
.view-fullscreen-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #fe00a3;
  color: #fff;
  border: none;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.view-fullscreen-btn:hover {
  background: #d1008f;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

.close-lightbox:hover {
  color: #fe00a3;
}

/* Animations */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .showcase-container {
    max-width: 100%;
  }
  .view-fullscreen-btn {
    bottom: 10px;
    right: 10px;
    font-size: 0.9rem;
  }
}

.image-container {
  text-align: center;
  margin: 2rem 0; /* adds top and bottom spacing */
}

.paint-img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
}

/* ================================
   GLOBAL STYLES
================================ */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #222;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ================================
   HEADER / NAVBAR
================================ */


.site-header .logo img {
  height: 100px;
}

.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-link,
.dropbtn,
.btn.login-btn {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover,
.dropbtn:hover,
.btn.login-btn:hover {
  color: #155aba;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  top: 100%;
  left: 0;
  z-index: 10;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-item {
  display: block;
  padding: 8px 14px;
  color: #333;
  text-decoration: none;
}
.dropdown-item:hover {
  background-color: hsl(246, 98%, 50%);
}

/* ================================
   VIDEO SECTIONS
================================ */
video {
  width: 100%;
  max-width: 1000px;
  height: 570px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: block;
  margin: 30px auto;
}

/* ================================
   GALLERY
================================ */
.gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 40px auto;
  width: 90%;
}

/* ================================
   BEST SECTION
================================ */
.best-section {
  padding: 40px 20px;
  text-align: center;
}

.best-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.best-features li {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.best-features li:hover {
  transform: translateY(-6px);
}


/* ================================
   RESPONSIVE ADJUSTMENTS
================================ */

/* Tablet */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  video {
    height: 400px;
  }

  .gallery-list,
  .best-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .site-header {
    padding: 1rem;
  }

  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }

  video {
    height: 250px;
  }

  h1, h2, h3 {
    font-size: 1.25rem;
  }

  .gallery-list,
  .best-features {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.footer-logo:hover {
  transform: scale(1.05);
}

.footer-slogan {
  margin: 8px 0 10px;
  font-style: italic;
  color: #f0f0f0;
}

.footer-contact {
  margin-bottom: 15px;
}
.footer-contact a {
  color: #7ed9f7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: gold;
}

/* Inline links at bottom */
.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}
.footer-links-inline a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-links-inline a:hover {
  color: #7ed9f7;
}

/* Divider line and copyright */
.site-footer__bar {
  border-top: 1px solid #222;
  padding-top: 15px;
  margin-top: 25px;
}

.footer-bottom small {
  color: #aaa;
  display: block;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-links-inline {
    gap: 10px;
    font-size: 0.9rem;
  }
  .footer-logo {
    width: 150px;
  }
}

/* ================================
   COMPACT FOOTER STYLE
================================ */

.footer-inner {
  padding: 0;
  margin-bottom: 10px;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}
.footer-logo:hover {
  transform: scale(1.05);
}

.footer-slogan {
  margin: 4px 0 8px;
  font-style: italic;
  color: #f0f0f0;
  font-size: 0.9rem;
}

.footer-contact {
  margin-bottom: 5px;
  line-height: 1.4;
}
.footer-contact a {
  color: #7ed9f7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: gold;
}

/* Inline links at bottom */
.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-links-inline a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links-inline a:hover {
  color: #7ed9f7;
}

/* Bottom copyright line */
.site-footer__bar {
  border-top: 1px solid #222;
  padding-top: 8px;
  margin-top: 8px;
}

.footer-bottom small {
  color: #aaa;
  display: block;
  font-size: 0.8rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .footer-logo {
    width: 130px;
  }
  .footer-links-inline {
    gap: 10px;
    font-size: 0.85rem;
  }
}

/* --- Base Layout --- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  position: relative;
  /* background: #fff; */
  z-index: 1000;
}

.header-logo {
  width: 150px;
  height: auto;
}

/* --- Hamburger Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* --- Navigation Styles --- */
.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.navbar a:hover {
  color: #155aba;
}

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

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    /* background: rgba(255, 255, 255, 0.98); */
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding-left: 30px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
    transition: right 0.4s ease-in-out;
  }

  .navbar.active {
    right: 0;
  }

  body.nav-open {
    overflow: hidden; /* prevent background scroll when menu open */
  }
}

/* --- Optional overlay for effect --- */
.navbar::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  width: 30px;
  background: rgba(0,0,0,0.05);
  pointer-events: none;
}


/* Desktop Default */
video {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: 570px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin: 30px auto;
  transition: all 0.4s ease-in-out;
}

/* Tablet (medium screens) */
@media (max-width: 1024px) {
  video {
    max-width: 90%;
    height: 420px;
    border-radius: 10px;
    margin: 20px auto;
  }
}

/* Mobile (small screens) */
@media (max-width: 768px) {
  video {
    max-width: 95%;
    height: 280px;
    border-radius: 8px;
    margin: 15px auto;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  video {
    max-width: 96%;
    height: 220px;
    border-radius: 6px;
    margin: 10px auto;
  }
}


/* Header logo — desktop */
.header-logo {
  width: 220px;   /* increase width */
  height: 200px;   /* increase height */
  object-fit: contain; /* ensures the image scales nicely without distortion */
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

/* Tablet view */
@media (max-width: 992px) {
  .header-logo {
    width: 180px; 
    height: 65px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .header-logo {
    width: 150px;
    height: 55px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;  /* stack logo and slogan vertically */
  align-items: center;     /* center horizontally */
  justify-content: center; /* center vertically if container has height */
  text-align: center;
  padding: 1em 0;
}

/* Logo styling */
.footer-logo {
  width: 200px;   /* adjust as needed */
  height: 80px;   /* adjust both width and height */
  object-fit: contain;
  margin-bottom: 0.5em;
}

/* Slogan styling */
.footer-slogan {
  font-size: 1rem;
  color: #f4f6f8;
  letter-spacing: 1px;
  text-transform: lowercase;
}

@media (max-width: 768px) {
  .footer-logo {
    width: 150px;
    height: 60px;
  }

  .footer-slogan {
    font-size: 0.9rem;
  }
}

/* Footer  */

/* === FOOTER BASE === */
.site-footer {
  background: #fe00a3; /* keeps your current dark background */
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  padding: 1.8rem 1rem;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 -2px 20px rgba(0, 229, 255, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* subtle glowing top border line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00e5ff, #7c4dff, #00e5ff);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
  animation: moveGlow 6s linear infinite;
  opacity: 0.7;
}

@keyframes moveGlow {
  0% { transform: translateX(-50%); }
  50% { transform: translateX(50%); }
  100% { transform: translateX(-50%); }
}

/* === FOOTER CONTENT === */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

/* logo */
.footer-logo {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.footer-logo:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.8));
}

/* slogan */
.footer-slogan {
  font-size: 1rem;
  color: #00e5ff;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
  margin-bottom: 0.3rem;
}

/* contact links */
.footer-contact a {
  color: #b0bec5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

/* === FOOTER NAVIGATION === */
.site-footer__bar {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.footer-links-inline a {
  color: #b0bec5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links-inline a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #00e5ff, #7c4dff);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.footer-links-inline a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

.footer-links-inline a:hover::after {
  width: 100%;
}

/* copyright */
.footer-bottom small {
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .footer-logo { width: 85px; }
  .footer-slogan { font-size: 0.9rem; }
  .footer-links-inline { gap: 0.7rem; }
}

@media (max-width: 480px) {
  .footer-logo { width: 70px; }
  .footer-slogan { font-size: 0.85rem; }
  .footer-links-inline { flex-direction: column; gap: 0.5rem; }
}

/* BUTTON STYLING */
.button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.futuristic-btn {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #fe00a3;
  background: transparent;
  border: 2px solid #001affe2;
  border-radius: 30px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(222, 3, 246, 0.936);
}

.futuristic-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(0,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.futuristic-btn:hover::before {
  transform: translateX(100%);
}

.futuristic-btn:hover {
  color: #000;
  background: rgba(2, 10, 234, 0.913);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  border-color: #0ff;
  transform: scale(1.03);
}

/* Subtle click feedback */
.futuristic-btn:active {
  transform: scale(0.98);
  box-shadow: 0 0 10px rgba(0,255,255,0.4);
}


/* ====== MOBILE MENU TOGGLE ====== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.menu-toggle.active {
  transform: rotate(90deg);
}

/* ====== NAVBAR ANIMATION ====== */
.navbar {
  display: flex;
  gap: 20px;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #003d8a;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
  }

  .navbar.active {
    max-height: 250px; /* Adjust as needed */
    opacity: 1;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

