/* ================== ROOT COLORS ================== */
:root {
  --ocean-blue: #0077b6;
  --deep-blue: #023e8a;
  --green-accent: #00b050;
  --text-dark: #111;
  --white: #fff;
}

/* ================== BASE STYLES ================== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--white);
 
}

.text-oceanBlue {
  color: #1E40AF;
}

 

/* ================== HERO SECTION ================== */
.hero {
  height: 100vh;
  background: url('A_high-resolution_digital_photograph_showcases_an_.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.animate-zoomHero {
  animation: zoomInOut 20s ease-in-out infinite;
  filter: brightness(90%);
}

@keyframes zoomInOut {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ================== WHATSAPP BUTTON ================== */
.whatsapp-float {
  position: fixed;
  width: 60px; height: 60px;
  bottom: 30px; right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  margin-top: 14px;
}

/* ================== MISSIONS SECTION ================== */
.missions {
  background: var(--text-dark);
  color: var(--white);
  padding: 100px 10%;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 700;
  color: var(--ocean-blue);
}

.mission-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.mission-row.reverse {
  flex-direction: row-reverse;
}

.mission-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.circle-border {
  border: 10px solid var(--ocean-blue);
  outline: 10px solid var(--white);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-border img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-text {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.mission-text h3 {
  font-size: 1.8rem;
  color: #1E40AF;
  margin-bottom: 10px;
}

.mission-text p {
  font-size: 1rem;
  color: #ddd;
}





/* ================= MOBILE MENU STYLE ================= */
@media (max-width: 768px) {
    
    /* Mobile menu icon rotation */
#menuToggle {
  transition: transform 0.35s ease;
}

/* When menu is open */
#menuToggle.active {
  transform: rotate(90deg);
}

#mobileNav {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
}

/* Only apply flex when NOT hidden */
#mobileNav:not(.hidden) {
  display: flex;
}

  #mobileNav a {
    width: 70%;
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
    transition: 0.25s ease;
  }
  
    #mobileNav a.mobile-link {
    display: block;
    width: 70%;
    margin: 10px auto;
    padding: 14px 0;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;

    /* Modal shadow */
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);

    transition: 0.25s ease;
  }

  #mobileNav a:last-child {
    border-bottom: none;
  }

  /* Hover effect */
  #mobileNav a:hover {
    transform: scale(1.05);
    font-weight: bold;
    background: #f9fafb;
  }

}


/* ================== RESPONSIVE FIXES ================== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    background: var(--deep-blue);
    flex-direction: row;
    width: 200px;
    padding: 20px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-icon {
    display: block;
  }

  .mission-row {
    flex-direction: column;
  }

  .mission-text {
    text-align: center;
  }

  .circle-border {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
  }
}

.services-section {
  background: #fff;
  color: #111;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
  transition: transform 8s ease-in-out;
}

.service-card img:hover {
  transform: scale(1.1);
}


/* ---------- Special Deals (black BG) ---------- */
.special-deals-section {
  background: #000;            /* black background for deals */
  color: #fff;
  padding: 60px 4%;
  overflow: hidden;
}

.deals-header { text-align:center; margin-bottom: 30px; }
.deals-header .section-sub { color: #cfd8dc; margin-top:8px; }

/* Carousel layout */
.deals-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.deals-viewport {
  overflow: hidden;
  flex: 1 1 auto;
  outline: none;
}

.deals-track {
  display: flex;
  gap: 24px;
  padding: 10px 0;
  transition: transform 400ms cubic-bezier(.22,.9,.18,1);
  will-change: transform;
}

.deal-card {
  background: #fff;
  color: #111;
  width: calc((100% - 48px) / 3); /* three visible cards leaving gaps */
  min-width: 300px;               /* ensure readable size */
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Media in card */
.deal-media {
  height: 260px;
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 8s ease-in-out;
}

.deal-card:hover .deal-media img { transform: scale(1.06); }

/* Card body */
.deal-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.deal-title { color: #1E40AF; font-size: 1.15rem; margin: 0; }
.deal-desc { color: #444; line-height: 1.5; margin: 0; }
.deal-meta { display:flex; align-items:center; text-align:center; justify-content:space-between; gap:12px; margin-top:auto; }
.offer-end { color: #777; font-size:0.92rem; }
.btn { padding: 8px 14px; border-radius: 999px; font-weight:600; text-decoration:none; display:inline-block; }
.btn-green { background: var(--green-accent); color: #fff; }

/* Arrows */
.deals-arrow {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: none;
  width:48px; height:48px;
  border-radius:8px;
  cursor:pointer;
  flex: 0 0 auto;
  display:flex; align-items:center; justify-content:center;
  transition: background 0.2s, transform 0.15s;
  z-index: 40;
}
.deals-arrow:hover { transform: scale(1.05); background: rgba(255,255,255,0.12); }
.deals-arrow:disabled { opacity:0.45; cursor: not-allowed; }



 /* ---------- Featured Products (white BG) ---------- */
.featured-products-section {
  background: #fff;
  color: #111;
  padding: 60px 4%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  align-items: start;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  padding-right: 6px;
}

/* Featured item card */
.featured-item {
  background: transparent;
  text-align: center;
  padding: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.featured-item img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto 8px;
}

.featured-item figcaption {
  color: #1E40AF;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Responsive adjustments ---------- */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 640px) {
  .featured-products-section {
    padding: 40px 8%;
  }

  .featured-grid {
    grid-template-columns: 1fr; /* full width one per row */
    gap: 24px;
  }

  .featured-item {
    width: 100%;
  }
}

/* ---------- Responsive adjustments ---------- */
 

@media (max-width: 640px) {
  .deal-card {
    width: 85%;                /* one per screen, small portion of next visible */
    flex: 0 0 85%;
    scroll-snap-align: start;  /* snap cleanly when scrolling */
  }

  .deals-viewport {
    overflow-x: auto;          /* enable horizontal scroll */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;     /* hide scrollbar (Firefox) */
  }

  .deals-viewport::-webkit-scrollbar {
    display: none;             /* hide scrollbar (WebKit) */
  }

  .deals-track {
    gap: 18px;                 /* spacing between cards */
  }

  .deals-arrow {
    display: none;             /* hide arrows on mobile */
  }
}


/* ---------- Customer Reviews ---------- */
.reviews-section {
  background: #fff;
  color: #111;
  padding: 70px 5%;
  text-align: center;
}

.reviews-header h2 {
  font-size: 2rem;
  color: #1E40AF;
  margin-bottom: 6px;
}

.reviews-header p {
  color: #555;
  margin-bottom: 40px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.review-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 25px 30px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-card h3 {
  color: var(--ocean-blue);
  margin-bottom: 8px;
}

.review-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.stars {
  color: #ffb400;
  font-size: 1.1rem;
}

/* ---------- Submit a Review Subsection ---------- */
.submit-review-section {
  background: #1E40AF;
  color: #fff;
  border-radius: 18px;
  padding: 40px 6%;
  text-align: left;
}

/* Yes/No Buttons */
.yesno-btns {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-green,
.btn-grey {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-green {
  background: var(--green-accent);
  color: #fff;
}

.btn-grey {
  background: #333;
  color: #fff;
}

/* Review Form */
.review-form {
  display: none;
  margin-top: 25px;
  background: #fff;
  color: #111;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  flex-direction: column;
  gap: 16px;
  animation: slideDown 0.5s ease forwards;
}

/* Slide Animation */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  flex: 100%;
}

.form-field label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Inputs & Textareas */
input, select, textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1rem;
  color: #111;
}

textarea {
  resize: none;
}

/* Star Rating */
.rating-stars label {
  font-weight: 600;
  margin-right: 10px;
  color: #111;
}

.stars-input span {
  font-size: 1.6rem;
  cursor: pointer;
  color: #ccc;
  transition: color 0.2s;
}

.stars-input span.active {
  color: #ffb400;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  input, select, textarea {
    font-size: 16px;
  }

  .submit-review-section {
    font-size: 16px;
  }
}


/* ---------- Newsletter Section ---------- */
.newsletter-section {
  background: #f1f3f4; /* light grey background */
  text-align: center;
  padding: 60px 6%;
  color: #111;
}

.newsletter-content h2 {
  color: #1E40AF;
   
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.newsletter-content p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 999px;
  font-size: 1rem;
}

.newsletter-form button {
  background: var(--green-accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #28a745;
} 


 