/* ========== GLOBAL STYLES ========== */
 body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  img {
    -webkit-user-drag: none;
    
  }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #eef3f8;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== HEADER ========== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #003366;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 45px;
  height: 40px;
  object-fit: cover;
  margin-right: 0.75rem;
}


.logo-text {
  font-family:"Alfa Slab One", serif,'Orbitron',sans-serif ,"Squada One" ;
  font-size: 1.8rem;        /* Adjust size */
  font-weight: 700;
  font-style: italic;
  color: #ffffff;            /* Matches the blue in the image */
  letter-spacing: 2px;
  text-transform: uppercase;
}



nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #00509e;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}


.hero-text {
  color: #ffffff;
  max-width: 800px;
  animation: fadeInUp 1s ease-in-out;
}

.hero-text h1 {
  font-size: 80px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px; 
  background: linear-gradient( #004c99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
}

.hero-text .btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #851313,#b33131);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.hero-text .btn:hover {
  background: linear-gradient(135deg,#b33131, #851313);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(54, 25, 25, 0.45);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("hero-bg2-blurreed.png") no-repeat center center;
  background-position: center;
  background-size: 1900px;
  z-index: -1;
  filter: blur(7px); /* optional: dark + soft blur */


}

/* ========== SPECIALTIES SECTION ========== */
.specialties {
  background-color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}

.specialties h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #f0f7ff;
  padding: 1.5rem;
  border-left: 5px solid #0077cc;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 51, 102, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #004c99;
}

/* ========== MAIN CONTENT SECTIONS ========== */
main.content {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 51, 102, 0.08);
}

main h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;
}

main h2 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: #004080;
}

/* ========== PROJECTS GALLERY ========== */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background-color: #f0f7ff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.project-card h3 {
  padding: 0.75rem;
  font-size: 1.1rem;
  background-color: #e0f0ff;
  color: #004080;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;

}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #003366;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00509e;
}

/* ========== FOOTER ========== */
footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}

footer .socials {
  margin-bottom: 0.75rem;
}

footer .socials a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

footer .socials a:hover {
  color: #a5cfff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
    width: 100%;
    justify-content: space-between;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  main.content {
    padding: 1.5rem;
  }
}
/* Staff Section Styles */
.staff-section {
  padding: 50px 20px;
  background-color: #e6f0ff; /* light blue background */
  text-align: center;
}

.staff-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #003366; /* dark blue */
}

.staff-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.staff-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-10px);
}

.staff-card img {
  display: block;
  margin: 0 auto 15px auto; /* centers horizontally and adds bottom margin */
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #003366;
}


.staff-card h3 {
  margin-bottom: 8px;
  color: #004080;
}

.staff-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}
.staff-card2 {
  background: rgba(153, 223, 160, 0.247);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}
.staff-card2:hover {
  transform: translateY(-10px);
}

.staff-card2 img {
  display: block;
  margin: 0 auto 15px auto; /* centers horizontally and adds bottom margin */
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #003366;
}


.staff-card2 h3 {
  margin-bottom: 8px;
  color: #004080;
}

.staff-card2 p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

/* ========== GALLERY SECTION ========== */
.gallery {
  background-color: #eaf4ff;
  padding: 3rem 1.5rem;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366;
}

.gallery-slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(250px * 10); /* 10 images */
  animation: scrollGallery 30s linear infinite;
}

.slide {
  width: 250px;
  height: 160px;
  margin: 0 1rem;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide:hover {
  transform: scale(1.05);
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.business-photos {
  padding: 60px 20px;
  background-color: #f5f9ff;
  text-align: center;
}

.business-photos h2 {
  font-size: 2rem;
  color: #0a3d62;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease-in-out;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  animation: fadeInUp 1s ease-in-out;
}

.photo-gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.tilt-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.tilt-card {
 background-color: #f0f7ff;
  padding: 1.5rem;
  border-left: 5px solid #0077cc;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 51, 102, 0.1);
  transition: transform 0.3s ease;
   background: #f0f7ff;
  padding: 2rem;
  width: 300px;
  border-radius: 1.5rem;
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  cursor: pointer;
}

.tilt-card:hover {
  box-shadow: 0 0 40px rgba(0, 123, 255, 0.6);
  transform: scale(1.03);
}

.tilt-card h3 {
  color: #007bff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.tilt-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}
.about-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 20px;
}

.about-card {
  color: #000000;
  background: #f0f7ff;
  border-radius: 20px;
  border-left: 5px solid #0077cc;
  padding: 30px;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0, 51, 102, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  justify-content: center; /* center cards horizontally */
  gap: 30px;   
  flex-wrap: nowrap; 
}

/* Blue flash effect on touch/click */
.about-card:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: rgba(0, 123, 255, 0.15); /* lighter so less harsh */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: smooth-flash 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes smooth-flash {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}

.about-card:hover {
  box-shadow: 0 0 40px rgba(0, 123, 255, 0.6);
  transform: scale(1.03);
}

.about-card h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
  color: #0ea5e9;
}

.about-card p {
  font-size: 1em;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .about-cards {
    flex-wrap: wrap;     /* allow wrapping */
  }

  .about-card {
    width: 100%;         /* full width */
    max-width: 400px;    /* optional max width */
    margin: 0 auto;
  }
}
body {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}
.top-info-bar {
  background-color: #ba1616;
  color: white;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.top-info-bar a {
  color: white;
  text-decoration: underline;
}
/* Contact Section */
.contact-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 2rem;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-section input,
.contact-section textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
  transition: 0.3s border;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #007bff;
  outline: none;
}

.contact-section button {
  background: #003366;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s background;
}

.contact-section button:hover {
  background: #0056b3;
}

#form-status {
  color: #007bff;
  font-weight: bold;
}
/* Mobile menu button */
.floating-menu {
  display: none;
  position: fixed;
  top: 9px;
  right: 20px;
  background-color: #ba1616;
  color: white;
  font-size: 26px;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  cursor: pointer;
}
.floating-menu:hover {
  background-color: #851313;
  transition: background-color 0.3s ease;
}


/* Slide-in nav */
.mobile-slide-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  max-height: 260px; /* Cut after last item */
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  padding: 40px 20px;
  z-index: 999;
  transition: transform 0.3s ease;
  overflow-y: auto;
  border-bottom-left-radius: 15px;
}


/* Show when active */
.mobile-slide-nav.active {
  display: block;
}

/* List styling */
.mobile-slide-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-slide-nav li {
  margin-bottom: 20px;
}

.mobile-slide-nav a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
  transition: color 0.3s ease;
}

.mobile-slide-nav a:hover {
  color: #007BFF;
}
@media (max-width: 768px) {
  .floating-menu {
    display: block;
  }

  nav.desktop-nav {
    display: none;
  }
}
/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  nav.desktop-nav {
    display: none !important;
  }
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 70%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding-top: 80px;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-nav.active {
  transform: translateX(0);
}
/* Basic styles for mobile menu container */
.mobile-menu {
  position: fixed;      /* Fix it on the screen */
  top: 0;               /* Put it at the top */
  left: 0;
  width: 100%;          /* Full width */
  background-color: #fff; /* White background or your brand color */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow for depth */
  z-index: 9999;        /* Make sure it’s on top */
  display: none;        /* Hide by default */
  flex-direction: column;
  padding: 1rem;
  border-radius: 0 0 10px 10px; /* Rounded bottom corners */
}

/* When menu is active/open */
.mobile-menu.active {
  display: flex;       /* Show menu */
}

/* Style the menu items */
.mobile-menu a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

/* Last menu item no border */
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Hide mobile menu by default */
.mobile-menu {
  display: none;
}

/* Show mobile menu on screens smaller than 768px (typical mobile width) */
@media (max-width: 768px) {
  .mobile-menu {
    display: flex; /* or block, whatever fits your layout */
  }
}

/* Optional: Show mobile menu if screen is portrait, regardless of width */
@media (orientation: portrait) {
  .mobile-menu {
    display: flex;
  }
}
.poster-container {
  display: inline-block;
  width: 80vw;       /* 80% of the viewport on mobile */
  max-width: 400px;  /* caps the size on larger screens */
  aspect-ratio: 3/4; /* maintain consistent shape like a poster */
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  margin: 0 auto 30px; /* center and space out the poster */
}

.poster-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-container:hover {
  transform: scale(1.03);
}
.poster-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full screen height */
  background: #f5f5f5; /* Optional background */
  padding: 20px;
  box-sizing: border-box;
}

.poster-container {
  width: 80vw;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.poster-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poster-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #fffcfc; /* Optional */
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.poster-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.poster-heading {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.poster-container {
  width: 80vw;
  max-width: 400px;
  aspect-ratio: 3/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.poster-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.curved-section {
  position: relative;
  background: #221eff;
  color: rgb(255, 0, 0);
  padding: 100px 20px;
  clip-path: ellipse(150% 100% at 50% 0%);
}
html {
  scroll-behavior: smooth;
}
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  color: white;
  font-family: 'Montserrat', sans-serif;
}
.features i {
  font-size: 30px;
  color: #d32f2f;
}
.features p {
  margin-top: 10px;
  font-size: 16px;
}


@media (max-width: 768px) {
  .hero {
    height: auto;
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    background: url(mobile-hero-bg.jpg) center/cover no-repeat;
      
  }

  .hero-content {
    padding: 0;
    width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero a.btn {
    padding: 10px 20px;
    font-size: 16px;
     
  }






}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: url(hero-bg2-blurreed.png);
}

.hero::before, 
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
 
  
}

.hero::before {
  opacity: 1;
}




.portal-section {
  padding: 100px 20px;
  position: relative;
  color: #1a1a1a;
}

.portal-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.portal-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.portal-box {
  border: 1px solid #c9c9c9;
  padding: 40px;
  background: #0ea4e936;
  border-left: 5px solid #0077cc;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  border-radius: 20px;
  position: relative;
  margin-bottom: 60px;
}

.portal-icon {
  position: absolute;
  top: 50%;
  left: -120px;
  border-left: 5px solid #0077cc;
  transform: translateY(-50%);
  background: #0ea4e93b;
  width: 80px;
  height: 80px;
  border-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-icon img {
  width: 60px;
  
}

.btn-portal {
  display: inline-block;
  background: rgb(255, 0, 0);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.benefit img {
  width: 55px;
  opacity: 0.8;
}

.benefit p {
  margin-top: 10px;
  font-weight: 600;
}

/* --- Fade-in Animation --- */
.fade-section {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease;
}

.fade-section.active {
  opacity: 1;
  transform: translateY(0);
}




/* SHOP PAGE */

.shop-section {
    padding: 60px 10%;
    background: #f5f5f5;
}

.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info p {
    font-size: 14px;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.shop-btn {
    padding: 10px 20px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.shop-btn:hover {
    background: #444;
}
.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-btn {
    display: block;
    padding: 10px;
    background: #25D366;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

.call-btn {
    display: block;
    padding: 10px;
    background: #000;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.call-btn:hover {
    background: #444;
}


.product-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-slider img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: none;
}

.product-slider img.active {
    display: block;
}

.product-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

.product-slider .prev {
    left: 10px;
}

.product-slider .next {
    right: 10px;
}

.product-slider button:hover {
    background: rgba(0,0,0,0.8);
}




/* SHOP HERO*/





.shop-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}


.shop-hero-text {
  color: #ffffff;
  max-width: 9000px;
  animation: fadeInUp 1s ease-in-out;
}

.shop-hero-text h1 {
  font-size: 200px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px; 
  background: linear-gradient( #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-hero-text p {
  font-size: 2.0rem;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
}

.shop-hero-text .btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #851313,#b33131);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.shop-hero-text .btn:hover {
  background: linear-gradient(135deg,#b33131, #851313);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(54, 25, 25, 0.45);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.shop-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Product-3(3).JPG") no-repeat center center;
  background-position: center;
  background-size: 1600px;
}