:root {
  --primary: #e64b2b;
  --accent: #ff9000;
  --dark: #111;
  --light-bg: #f9f9f9;
  --radius: 12px;
  --pad: 18px;
  --max-width: 1100px;
  --transition: 0.3s ease;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.5;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Header */
.site-header {
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
.brand img {
  height: 60px;
}
.nav {
  margin-left: auto;
}
.nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav a {
  color: #ddd;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav a:hover {
  background: var(--primary);
  color: #fff;
}
.call-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.call-btn:hover {
  background: var(--accent);
}

/* Hero */
.hero-section {
  background: var(--light-bg);
  padding: 60px 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-copy {
  flex: 1;
}
.hero-copy h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.hero-copy .subtitle {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  object-fit: cover;
}

/* Why Section */
.why-section {
  padding: 50px 0;
  background: #fff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.feature-card h3 {
  margin: 0 0 8px;
}
.feature-card p {
  color: #555;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Models */
.models-section {
  padding: 50px 0;
  background: var(--light-bg);
}
.models-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.model-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  width: 220px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform var(--transition), box-shadow var(--transition);
}
.model-card h3 {
  margin-bottom: 8px;
}
.model-card p {
  color: #777;
  margin-bottom: 12px;
}
.model-card strong {
  font-size: 1.4rem;
  color: var(--accent);
}
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* What You Get */
.inclusions-section {
  padding: 50px 0;
  background: #fff;
}
.inclusions-section h2 {
  text-align: center;
}
.inclusion-list {
  max-width: 600px;
  margin: 30px auto 0;
  list-style: disc inside;
  color: #555;
  line-height: 1.8;
}
.inclusion-list li {
  margin-bottom: 14px;
}

/* Apply Section */
.apply-section {
  padding: 60px 0;
  background: var(--light-bg);
}
.apply-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.apply-form {
  max-width: 500px;
  margin: 0 auto;
}
.apply-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
.apply-form span {
  color: red;
}
.name-fields {
  display: flex;
  gap: 12px;
}
.apply-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.apply-form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.apply-form button:hover {
  background: var(--accent);
}

/* Gallery / Swiper */
.gallery-section {
  padding: 50px 0;
  background: #fff;
}
.gallery-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.swiper {
  width: 100%;
  padding-bottom: 30px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  max-width: 260px;
  border-radius: var(--radius);
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-logo {
  width: 120px;
  margin-bottom: 16px;
}
.footer-col h4 {
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-col a {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footer-col a:hover {
  color: #fff;
}
.subscribe-form {
  display: flex;
  gap: 8px;
}
.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: var(--radius);
}
.subscribe-form button {
  padding: 10px 14px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
}
.subscribe-form button:hover {
  background: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-image img {
    max-width: 300px;
  }
  .nav ul {
    display: none;
  }
  .hamburger {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
  }
}

/* Additional for mobile adjustments */
@media (max-width: 500px) {
  .feature-card, .model-card {
    padding: 20px;
  }
}
/* Header animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-slide-down {
  animation: slideDown 0.6s ease forwards;
}

/* Header styles */
.site-header {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand img {
  height: 60px;
  transition: transform 0.3s ease;
}
.brand img:hover {
  transform: scale(1.05);
}

/* Navigation */
.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s ease;
}
.nav a:hover {
  background: var(--primary);
  color: #fff;
}

/* Call button */
.call-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.call-btn:hover {
  background: var(--accent);
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Mobile nav toggle */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  .nav ul.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .call-btn {
    display: none;
  }
}
/* ========== Base Styles ========== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  margin: 0 0 15px;
}

h1 span {
  color: #ff4b2b; /* highlight color */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #222;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 75, 43, 0.4);
}

.btn.primary:hover {
  transform: translateY(-3px);
}

.btn.secondary {
  background: #fff;
  border: 2px solid #ff4b2b;
  color: #ff4b2b;
}

.btn.secondary:hover {
  background: #ff4b2b;
  color: #fff;
}

.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(255, 75, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0); }
}

/* ========== Hero Section ========== */
.hero-section {
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-copy .subtitle {
  font-size: 1.2rem;
  margin: 20px 0;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.fade-in {
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Sections ========== */
.section-light {
  background: #f9f9f9;
  padding: 4rem 0;
}

.bg-gradient {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 4rem 0;
}

.bg-gradient-light {
  background: linear-gradient(135deg, #fff, #ffe3e3);
  padding: 4rem 0;
}

/* ========== Feature Cards ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card i {
  font-size: 2rem;
  color: #ff4b2b;
  margin-bottom: 15px;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ========== Models Section ========== */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.model-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid #ff4b2b;
  transition: transform 0.3s, box-shadow 0.3s;
}

.model-card .price {
  font-size: 1.5rem;
  color: #ff4b2b;
  margin-top: 10px;
  display: block;
}

.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 65, 108, 0.25);
}

/* ========== Inclusions List ========== */
.check-list li {
  margin: 10px 0;
  font-size: 1.1rem;
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff4b2b;
  font-weight: bold;
}

/* ========== Apply Form ========== */
.apply-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.apply-form label {
  font-weight: 600;
  display: block;
  margin: 15px 0 5px;
}

.apply-form input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.apply-form .name-fields {
  display: flex;
  gap: 15px;
}

.apply-form input:focus {
  border-color: #ff4b2b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 75, 43, 0.2);
}

/* ========== Gallery ========== */
.gallery-section img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s;
}

.gallery-section img:hover {
  transform: scale(1.05);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .apply-form .name-fields {
    flex-direction: column;
  }
}
/* Hero Section - Clean Modern Style */
.clean-hero {
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
  padding: 5rem 0;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  padding: 20px;
}

.hero-copy h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #222;
}

.hero-copy h1 span {
  color: #ff9500; /* Accent color - golden/orange */
  position: relative;
}

.hero-copy h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 5px;
  background: rgba(255, 149, 0, 0.3);
  border-radius: 3px;
  animation: slideIn 1.2s ease;
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 100%; }
}

.hero-copy .subtitle {
  font-size: 1.2rem;
  margin: 15px 0 25px;
  color: white;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transform: scale(1.02);
  transition: transform 0.3s;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* Dark Hero Section */
.dark-hero {
  background: linear-gradient(135deg, #000, #111);
  color: #fff;
  padding: 6rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-copy h1 span {
  color: #ffb703; /* Golden highlight */
  position: relative;
}

.hero-copy .subtitle {
  font-size: 1.3rem;
  margin: 15px 0 20px;
  color: white;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.hero-points li {
  margin: 10px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.hero-points li::before {
  content: "✔";
  color: #ffb703;
  margin-right: 10px;
  font-weight: bold;
}

/* Hero Image */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* Animations */
.fade-up {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-points {
    text-align: left;
    margin-left: 20px;
  }
}
/* Dark Hero Section */
.dark-hero {
  background: linear-gradient(135deg, #000, #111);
  color: #fff;
  padding: 6rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Headline */
.hero-copy h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-copy h1 span {
  color: #ffb703; /* Golden highlight */
  position: relative;
}

.hero-copy .subtitle {
  font-size: 1.3rem;
  margin: 15px 0 20px;
  color: #ccc;
}

/* Bullet Points */
.hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.hero-points li {
  margin: 10px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.hero-points li::before {
  content: "✔";
  color: #ffb703;
  margin-right: 10px;
  font-weight: bold;
}

/* Hero Image Glow Wrapper */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Neon Glow Background */
.glow-bg {
  position: absolute;
  width: 90%;
  height: 90%;
  background: conic-gradient(
    from 180deg,
    #ffb703,
    #ff4b2b,
    #ff416c,
    #ffb703
  );
  filter: blur(50px);
  border-radius: 50%;
  animation: glowMove 6s linear infinite;
  z-index: 0;
}

@keyframes glowMove {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Hero Image */
.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* Animations */
.fade-up {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-points {
    text-align: left;
    margin: 20px auto;
    max-width: 300px;
  }

  .hero-image-wrapper {
    margin-top: 2rem;
  }

  .hero-image img {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy .subtitle {
    font-size: 1rem;
  }

  .hero-image img {
    width: 100%;
  }
}
/* Section Styling */
.section-dark {
  background: #000;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffb703;
  position: relative;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 25px rgba(255, 183, 3, 0.3);
}

/* Icon Styling */
.icon-wrapper {
  font-size: 2.5rem;
  color: #ffb703;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.feature-card:hover .icon-wrapper {
  transform: rotate(12deg) scale(1.2);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow Button */
.glow-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffb703, #ff416c);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 183, 3, 0.6);
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 183, 3, 1);
}

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

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
}

 /* Section */
.section-dark {
  background: #000;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

/* Title */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffb703;
}

/* Models Grid */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Model Card */
.model-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.model-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffb703;
}

.model-card p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ccc;
}

.price {
  font-size: 1.6rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ffb703, #ff416c, #ffb703);
  background-size: 200% 200%; /* for smooth animation */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  animation: gradientMove 3s infinite linear;
  line-height: 1;           /* removes extra space causing the yellow line */
  display: inline-block;    /* prevents clipping artifacts */
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Hover Effect */
.model-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 25px rgba(255, 183, 3, 0.3);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: fadeUpScale 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUpScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .section-title {
    font-size: 2rem;
  }

  .model-card {
    padding: 2rem;
  }

  .price {
    font-size: 1.4rem;
  }
}

/* Section Styling */
.section-dark {
  background: #000;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffb703;
}

/* Inclusions List */
.inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.inclusion-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  margin-bottom: 15px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.inclusion-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.3);
}

/* Icons */
.inclusion-list i {
  color: #ffb703;
  font-size: 1.3rem;
  animation: pop 0.6s ease forwards;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .inclusion-list li {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Section Styling */
.section-dark {
  background: #000;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #ffb703;
}

/* Form */
.apply-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.apply-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffb703;
}

.name-fields {
  display: flex;
  gap: 15px;
}

.apply-form input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.apply-form input:focus {
  border-color: #ffb703;
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.6);
}

/* Submit Button */
.glow-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 14px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffb703, #ff416c);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 183, 3, 0.6);
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  border: none;
}

.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 183, 3, 1);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .name-fields {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .apply-form {
    padding: 1.5rem;
  }

  .glow-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
.section-dark {
  background: #000;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffb703;
}

/* Swiper Slide Styling */
.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-card::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(135deg, rgba(255,183,3,0.1), rgba(255,65,108,0.1));
  z-index: 1;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 70% !important;
  }
}

@media (max-width: 576px) {
  .swiper-slide {
    width: 90% !important;
  }
}
.section-dark {
  background: #000;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffb703;
}

/* Swiper Slide */
.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 70% !important;
  }
}

@media (max-width: 576px) {
  .swiper-slide {
    width: 90% !important;
  }
}
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}
/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  z-index: 9999;
  padding: 15px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.brand img {
  height: 50px;
  transition: transform 0.3s ease;
}
.brand img:hover {
  transform: scale(1.05);
}

/* Nav */
.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav ul li a:hover {
  color: #ffb703;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Call Button */
.call-btn {
  background: #ffb703;
  color: #000;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.5);
}

/* Animation */
.animate-slide-down {
  animation: slideDown 0.6s ease forwards;
}
@keyframes slideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 9998;
  }

  .nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .nav.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .call-btn {
    display: none; /* optional: hide call button on mobile if needed */
  }
}
/* Floating Buttons Container */
.mobile-float-btns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button */
.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #25d366;
}

/* Call Button */
.float-btn.call {
  background: #ffb703;
  color: #000;
}

.float-btn.call:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ffb703;
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.float-btn {
  animation: pulse 2s infinite;
}

/* Hide on Desktop */
@media (min-width: 992px) {
  .mobile-float-btns {
    display: none;
  }
}
/* Footer Styling */
.site-footer {
  background: #000;
  color: #fff;
  padding: 4rem 0 2rem 0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffb703;
}

.footer-col p, 
.footer-col li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffb703;
}

/* Subscribe Form */
.subscribe-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.subscribe-form button {
  padding: 10px 15px;
  background: #ffb703;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffb703;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #777;
  font-size: 0.9rem;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .subscribe-form {
    flex-direction: column;
    width: 100%;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    width: 120px;
  }
}
/* Gallery Container */
.gallery-section {
  padding: 4rem 0;
  background: #111; /* dark background */
}

/* Swiper Slides */
.gallery-swiper .swiper-slide {
  width: 100%;
  height: 250px; /* fixed height for all slides */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-swiper .swiper-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.5);
}

/* Images inside slides */
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes all images fit the container */
  border-radius: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-swiper .swiper-slide img:hover {
  transform: scale(1.1);
}

/* Pagination */
.swiper-pagination-bullet {
  background: #ffb703;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/* Responsive Heights */
@media (max-width: 992px) {
  .gallery-swiper .swiper-slide {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .gallery-swiper .swiper-slide {
    height: 180px;
  }
}
/* Floating Buttons Container */
.mobile-float-btns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp Button */
.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #25d366;
}

/* Call Button */
.float-btn.call {
  background: #ffb703;
  color: #000;
}

.float-btn.call:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #ffb703;
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.float-btn {
  animation: pulse 2s infinite;
}

/* Remove previous media query hiding on desktop */
/* Header Container */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #000;
  padding: 15px 0;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.brand img {
  width: 150px;
  transition: transform 0.3s ease;
}
.brand img:hover {
  transform: scale(1.05);
}

/* Navigation */
.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav ul li a:hover {
  color: #ffb703;
}

/* Call Button */
.call-btn {
  background: #ffb703;
  color: #000;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffb703;
}

/* Hamburger Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    border-top: 1px solid #333;
  }

  .nav.open {
    max-height: 300px; /* adjust based on number of links */
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .call-btn {
    display: none; /* optional: hide call button on top, can show in float buttons */
  }
}
/* Logo Styling */
.brand img {
  max-width: 180px;       /* desktop size */
  height: auto;           /* maintain aspect ratio */
  transition: transform 0.3s ease;
}

/* Logo hover effect */
.brand img:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .brand img {
    max-width: 140px;     /* smaller on tablets */
  }
}

@media (max-width: 576px) {
  .brand img {
    max-width: 120px;     /* smaller on mobile */
  }
}
/* HEADER BASE */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  /* Stylish background */
  background: linear-gradient(90deg, #000000, #1a1a1a, #000000);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 12px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);

  animation: slideDown 0.6s ease forwards;
}

/* Push main content down so header doesn’t overlap */
body {
  padding-top: 80px;  /* adjust based on header height */
}

/* Smooth animation */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* HEADER INNER */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 20px;
}

/* LOGO */
.brand img {
  max-width: 160px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.brand img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px #ffb703);
}

/* NAVIGATION */
.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* Fancy hover underline */
.nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffb703;
  transition: width 0.3s ease;
}
.nav ul li a:hover {
  color: #ffb703;
}
.nav ul li a:hover::after {
  width: 100%;
}

/* CALL BUTTON */
.call-btn {
  background: linear-gradient(90deg, #ffb703, #ff416c);
  color: #000;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.call-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255,183,3,0.7);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hamburger:hover { transform: rotate(90deg); }

/* MOBILE STYLES */
@media (max-width: 992px) {
  .hamburger { display: block; }
  
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid #333;
  }

  .nav.open { max-height: 300px; }
  .nav ul { flex-direction: column; gap: 15px; padding: 15px 0; text-align: center; }

  .call-btn { display: none; }
}
 /* ===== HEADER BASE ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: linear-gradient(90deg, #000000, #1a1a1a, #000000);
  padding: 12px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body {
  padding-top: 80px; /* prevents header overlap */
}

/* ===== INNER LAYOUT ===== */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

/* ===== LOGO ===== */
.brand img {
  max-width: 160px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.brand img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px #ffb703);
}

/* ===== NAVIGATION ===== */
.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* animated underline on hover */
.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffb703;
  transition: width 0.3s ease;
}
.nav ul li a:hover {
  color: #ffb703;
}
.nav ul li a:hover::after {
  width: 100%;
}

/* ===== CALL BUTTON ===== */
.call-btn {
  background: linear-gradient(90deg, #ffb703, #ff416c);
  color: #000;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.call-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255,183,3,0.7);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hamburger:hover {
  transform: rotate(90deg);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid #333;
  }

  .nav.open {
    max-height: 300px; /* expands menu */
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    text-align: center;
  }

  .call-btn {
    display: none; /* hide top call button on mobile */
  }
}
/* ===== HEADER BASE ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(90deg, #000, #1a1a1a, #000);
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body {
  padding-top: 70px; /* prevent overlap with fixed header */
}

/* ===== INNER CONTAINER ===== */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ===== LOGO ===== */
.brand img {
  max-width: 140px; /* smaller logo size */
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.brand img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px #ffb703);
}

/* ===== NAVIGATION ===== */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  gap: 25px;
}
.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* underline hover effect */
.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffb703;
  transition: width 0.3s ease;
}
.nav ul li a:hover {
  color: #ffb703;
}
.nav ul li a:hover::after {
  width: 100%;
}

/* ===== CALL BUTTON ===== */
.call-btn {
  background: linear-gradient(90deg, #ffb703, #ff416c);
  color: #000;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.call-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255,183,3,0.6);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid #333;
  }
  .nav.open {
    max-height: 300px;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    text-align: center;
  }

  .call-btn {
    display: none; /* hide call button in mobile header */
  }
}

/* ===== HEADER BASE ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(90deg, #000, #1a1a1a, #000);
  padding: 6px 0; /* reduced padding */
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body {
  padding-top: 60px; /* adjust since header is smaller */
}

/* ===== INNER CONTAINER ===== */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ===== LOGO ===== */
.brand img {
  max-width: 110px; /* smaller logo */
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.brand img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 4px #ffb703);
}

/* ===== NAVIGATION ===== */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  gap: 20px; /* slightly tighter spacing */
}
.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px; /* smaller text */
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* underline hover */
.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffb703;
  transition: width 0.3s ease;
}
.nav ul li a:hover {
  color: #ffb703;
}
.nav ul li a:hover::after {
  width: 100%;
}

/* ===== CALL BUTTON ===== */
.call-btn {
  background: linear-gradient(90deg, #ffb703, #ff416c);
  color: #000;
  padding: 6px 14px; /* smaller height */
  border-radius: 20px;
  font-size: 14px; /* smaller text */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.call-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 8px rgba(255,183,3,0.6);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid #333;
  }
  .nav.open {
    max-height: 260px;
  }

  .nav ul {
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
    text-align: center;
  }

  .call-btn {
    display: none;
  }
}
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  /* Show hamburger */
  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    z-index: 1100; /* keep above menu */
  }

  /* Hide desktop nav initially */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: rgba(17, 17, 17, 0.95);
    border-top: 1px solid #333;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  /* When open */
  .nav.open {
    max-height: 320px;
    opacity: 1;
  }

  /* Vertical links */
  .nav ul {
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
    text-align: center;
  }

  .nav ul li a {
    font-size: 16px;
    padding: 6px 0;
    display: inline-block;
  }

  /* Hide call button */
  .call-btn {
    display: none;
  }
}
/* Header Base */
.site-header {
  width: 100%;
  background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Inner Flex */
.header-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Call Button */
.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: bold;
  color: #111;
  background: linear-gradient(90deg, #ffb703, #ff416c);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.call-btn i {
  font-size: 1.2rem;
}

/* ✅ Mobile Adjustments */
@media (max-width: 768px) {
  .brand img {
    height: 40px; /* smaller logo */
  }

  .call-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
    gap: 6px;
  }

  .call-btn i {
    font-size: 1rem;
  }
}
/* Reset default spacing */
body {
  margin: 0;
  padding: 0;
}

/* Fix header padding */
.site-header {
  margin: 0;
  padding: 8px 20px; /* reduce padding */
}
/* Base Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Section Defaults */
section {
  padding: 60px 20px;
}

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

/* Hero Section */
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  flex: 1;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Models Grid */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Inclusions */
.inclusion-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
}

/* Apply Form */
.apply-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.name-fields {
  display: flex;
  gap: 15px;
}

/* Gallery Images */
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-copy ul {
    text-align: left;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .inclusion-list {
    grid-template-columns: 1fr;
  }

  .name-fields {
    flex-direction: column;
  }
}

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

  .hero-image img {
    max-width: 280px;
  }

  .gallery-card img {
    height: 200px;
  }
}


/* Apply Section Styling */
.apply-section {
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  padding: 80px 0;
  text-align: center;
}

.apply-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

/* Button Style */
.btn.glow-btn {
  background-color: #ff4d4d; /* red-pink color */
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
}

/* Hover Effect */
.btn.glow-btn:hover {
  background-color: #ff1a1a;
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.9);
  transform: scale(1.05);
}
