

body {
    /* background-color: #000; */
    color: #fff;
    overflow-x: hidden;
}

.navbar {
    background: #000;
    height: 105px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo img {
    height: 140px;
    width: auto;
}

/* Links Layout */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    transition: 0.3s;
}

/* Dropdown Styling */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    background: #111;
    min-width: 180px;
    top: 100%;
    left: 0;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.dropdown-content a {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #222;
}

.dropdown-content a:hover { background: #c00; }

/* Desktop Hover */
@media (min-width: 1101px) {
    .dropdown:hover .dropdown-content { display: block; }
}

/* Colors */
.btn-red { background: #c00; padding: 10px 18px !important; border-radius: 2px; }
.text-red { color: #c00 !important; }
.text-orange { color: #ff8c00 !important; }

/* Icons */
.nav-icons { display: flex; align-items: center; gap: 15px; font-size: 22px; }
.badge {
    background: #c00;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    position: relative;
    top: -10px;
    left: -10px;
}

.mobile-toggle { display: none; cursor: pointer; }

/* Responsive Breakpoint */
@media (max-width: 1100px) {
    .mobile-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%; /* Default hidden */
        background: #000;
        width: 100%;
        height: calc(100vh - 75px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: 0.4s ease-in-out;
        overflow-y: auto;
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        font-size: 16px;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #222;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        border: none;
        padding-left: 20px;
    }
    
    .dropdown.open .dropdown-content { display: block; }
}
/* slider */
/* (Existing Navbar CSS will be here) */

/* Video Slider Specific CSS */
.video-slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px); /* Navbar ki height minus */
    overflow: hidden;
}

.video-wrapper {
    display: flex; /* Helps in managing slides */
    height: 100%;
    position: relative;
}

.video-slide {
    min-width: 100%; /* Har slide puri width lega */
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-slide.active {
    opacity: 1;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video puri jagah cover karega */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Thoda dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.video-overlay h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.shop-now-btn {
    background: #c00;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.shop-now-btn:hover { background: #e00; }

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.nav-btn:hover { background: rgba(0, 0, 0, 0.8); }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fff;
}

/* Responsive adjustments for video slider */
@media (max-width: 768px) {
    .video-overlay h1 {
        font-size: 2em; /* Smaller font on mobile */
    }
    .shop-now-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}
/* Container styling */
.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 boxes */
    gap: 15px;
    padding: 40px 5%;
    background-color: #f4f4f4; /* Light grey background */
}

/* Individual Card Styling */
.feature-card {
    background-color: #333333; /* Dark grey background from image */
    color: #ffffff;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-radius: 4px;
}

/* Icon Styling */
.feature-card i {
    font-size: 28px;
    color: #ffffff;
    margin-top: 5px;
}

/* Text Content */
.card-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.card-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}

/* --- Responsive Rules --- */

/* Tablet View */
@media (max-width: 1024px) {
    .features-section {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .features-section {
        grid-template-columns: 1fr; /* 1 column */
        padding: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
}/* Product Section Styling */
.product-container {
    padding: 60px 5%;
    background-color: #fff;
}

.section-title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 28px;
    text-transform: uppercase;
}

/* Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 items */
    gap: 25px;
}

/* Card Styling */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Image & Badge */
.product-image {
    position: relative;
    padding: 20px;
    background: #fcfcfc;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1e2d3b; /* Dark navy jesa image mein hai */
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 10px;
    border-radius: 50%;
}

/* Text Info */
.product-info h3 {
    font-size: 18px;
    color: #333;
    margin: 15px 0 5px;
}

.rating {
    color: #333;
    font-size: 12px;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

/* Button */
.add-to-cart {
    background-color: #e63946; /* Red color */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background-color: #c02a35;
}

/* --- Responsive Rules --- */

/* Tablet View (2 per line) */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View (1 per line) */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 22px;
    }
}
/* Container styling */
.seafood-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5; /* Light grey background */
  padding: 40px 80px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Text alignment and spacing */
.banner-content {
  flex: 2;
}

.promo-text {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: #000;
}

.main-title {
  font-size: 28px;
  margin: 10px 0;
  font-weight: 600;
  color: #000;
}

.location-text {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: #000;
}

/* Button styling */
.shop-button {
  display: inline-flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: opacity 0.3s ease;
}

.shop-button:hover {
  opacity: 0.8;
}

.cart-icon {
  margin-right: 10px;
  font-size: 16px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .seafood-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .banner-action {
    margin-top: 25px;
  }
}
.stats-section {
  background-color: #0f0f0f; /* Dark background from image */
  color: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; /* Allows wrapping on mobile */
  font-family: Arial, sans-serif;
  text-align: center;
}

.stat-item {
  margin: 20px;
  min-width: 150px;
}

.header-item h2 {
  font-size: 1.5rem;
  font-weight: bold;
  max-width: 200px;
  text-align: left;
}

.counter {
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
}

.stat-item span {
  font-size: 2.5rem;
  font-weight: bold;
}

.stat-item p {
  margin-top: 10px;
  font-size: 1rem;
  text-transform: capitalize;
}

/* Tablet & Mobile adjustment */
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
  }
  .header-item h2 {
    text-align: center;
    max-width: 100%;
    margin-bottom: 30px;
  }
}:root {
  --bg-dark: #121212;
  --accent-green: #8bc34a; /* The green color from your image */
  --accent-hover: #a2d16d; /* A lighter green for hover */
  --text-gray: #b0b0b0;
  --transition: all 0.3s ease; /* Smooth timing for all effects */
}

/* --- LOGO HOVER --- */
.footer-logo { 
  width: 150px; 
  margin-bottom: 20px; 
  transition: var(--transition);
  cursor: pointer;
}

.footer-logo:hover {
  transform: scale(1.05); /* Makes logo slightly larger */
  filter: brightness(1.2); /* Makes it pop more */
}

/* --- LINK HOVERS --- */
.footer-col ul li a { 
  color: var(--text-gray); 
  text-decoration: none; 
  transition: var(--transition);
  display: inline-block; /* Required for transform effects */
}

.footer-col ul li a:hover { 
  color: var(--accent-green); 
  transform: translateX(8px); /* Moves link slightly to the right */
}

/* --- BUTTON HOVER --- */
.subscribe-form button {
  background-color: var(--accent-green);
  border: none;
  padding: 10px 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-form button:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 15px rgba(139, 195, 74, 0.4); /* Green glow effect */
  border-radius: 4px; /* Slight rounding on hover */
}

/* --- SOCIAL ICON HOVER --- */
.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: var(--transition);
  display: inline-block;
}

.social-icons a:hover {
  color: var(--accent-green);
  transform: translateY(-5px); /* Bounces icon upward */
}

/* --- INPUT FIELD HOVER --- */
.subscribe-form input {
  padding: 10px;
  border: 1px solid transparent;
  width: 70%;
  transition: var(--transition);
  outline: none;
}

.subscribe-form input:focus {
  border: 1px solid var(--accent-green);
  background-color: #fff;
}
:root {
  --bg-dark: #121212;
  --accent-green: #8bc34a; /* The green color from your image */
  --accent-hover: #a2d16d; /* A lighter green for hover */
  --text-gray: #b0b0b0;
  --transition: all 0.3s ease; /* Smooth timing for all effects */
}

/* --- LOGO HOVER --- */
.footer-logo { 
  width: 150px; 
  margin-bottom: 20px; 
  transition: var(--transition);
  cursor: pointer;
}

.footer-logo:hover {
  transform: scale(1.05); /* Makes logo slightly larger */
  filter: brightness(1.2); /* Makes it pop more */
}

/* --- LINK HOVERS --- */
.footer-col ul li a { 
  color: var(--text-gray); 
  text-decoration: none; 
  transition: var(--transition);
  display: inline-block; /* Required for transform effects */
}

.footer-col ul li a:hover { 
  color: var(--accent-green); 
  transform: translateX(8px); /* Moves link slightly to the right */
}

/* --- BUTTON HOVER --- */
.subscribe-form button {
  background-color: var(--accent-green);
  border: none;
  padding: 10px 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-form button:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 15px rgba(139, 195, 74, 0.4); /* Green glow effect */
  border-radius: 4px; /* Slight rounding on hover */
}

/* --- SOCIAL ICON HOVER --- */
.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: var(--transition);
  display: inline-block;
}

.social-icons a:hover {
  color: var(--accent-green);
  transform: translateY(-5px); /* Bounces icon upward */
}

/* --- INPUT FIELD HOVER --- */
.subscribe-form input {
  padding: 10px;
  border: 1px solid transparent;
  width: 70%;
  transition: var(--transition);
  outline: none;
}

.subscribe-form input:focus {
  border: 1px solid var(--accent-green);
  background-color: #fff;
}
:root {
  --bg-dark: #121212;
  --accent-green: #8bc34a;
  --text-gray: #b0b0b0;
}

body { margin: 0; font-family: 'Arial', sans-serif; }

/* Stats Section Styles */
.stats-section {
  background-color: #0f0f0f;
  color: white;
  padding: 50px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.counter { font-size: 3rem; font-weight: bold; }
.stat-item span { font-size: 2.5rem; color: white; }

/* Footer Styles */
.main-footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 60px 0 20px;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-logo { width: 150px; margin-bottom: 20px; }

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent-green);
  position: absolute;
  bottom: -5px;
  left: 0;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-gray); text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: white; }

/* Subscribe Form */
.subscribe-form { display: flex; margin-top: 15px; }
.subscribe-form input {
  padding: 10px;
  border: none;
  width: 70%;
}
.subscribe-form button {
  background-color: var(--accent-green);
  border: none;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-container { flex-direction: column; text-align: left; }
  .stats-section { flex-direction: column; text-align: center; }
  .header-item h2 { text-align: center; max-width: 100%; }
}
:root {
  --bg-dark: #121212;
  --accent-green: #8bc34a; /* The green color from your image */
  --accent-hover: #a2d16d; /* A lighter green for hover */
  --text-gray: #b0b0b0;
  --transition: all 0.3s ease; /* Smooth timing for all effects */
}

/* --- LOGO HOVER --- */
.footer-logo { 
  width: 150px; 
  margin-bottom: 20px; 
  transition: var(--transition);
  cursor: pointer;
}

.footer-logo:hover {
  transform: scale(1.05); /* Makes logo slightly larger */
  filter: brightness(1.2); /* Makes it pop more */
}

/* --- LINK HOVERS --- */
.footer-col ul li a { 
  color: var(--text-gray); 
  text-decoration: none; 
  transition: var(--transition);
  display: inline-block; /* Required for transform effects */
}

.footer-col ul li a:hover { 
  color: var(--accent-green); 
  transform: translateX(8px); /* Moves link slightly to the right */
}

/* --- BUTTON HOVER --- */
.subscribe-form button {
  background-color: var(--accent-green);
  border: none;
  padding: 10px 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-form button:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 15px rgba(139, 195, 74, 0.4); /* Green glow effect */
  border-radius: 4px; /* Slight rounding on hover */
}

/* --- SOCIAL ICON HOVER --- */
.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: var(--transition);
  display: inline-block;
}

.social-icons a:hover {
  color: var(--accent-green);
  transform: translateY(-5px); /* Bounces icon upward */
}

/* --- INPUT FIELD HOVER --- */
.subscribe-form input {
  padding: 10px;
  border: 1px solid transparent;
  width: 70%;
  transition: var(--transition);
  outline: none;
}

.subscribe-form input:focus {
  border: 1px solid var(--accent-green);
  background-color: #fff;
}
/* --- Floating Button Container --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366; /* Official WhatsApp Green */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  
  /* Infinite Pulse Animation */
  animation: whatsapp_pulse 2s infinite;
}

/* --- Hover Effect --- */
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e; /* Darker green on hover */
}

/* --- Tooltip (Optional) --- */
.tooltip {
  visibility: hidden;
  width: 100px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  right: 75px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* --- Pulse Keyframes --- */
@keyframes whatsapp_pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
  .tooltip { display: none; } /* Hide tooltip on mobile to save space */
}
/* Slider Container */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Snap effect for mobile swipe */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide Scrollbar */
.slider::-webkit-scrollbar {
    display: none;
}

.slider img {
    flex: 0 0 100%; /* Har image 100% width legi */
    width: 100%;
    object-fit: cover;
    scroll-snap-align: start;
        height: 420px;

}

/* Navigation Arrows */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 10;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.prev-btn:hover, .next-btn:hover {
    background: rgba(0,0,0,0.8);
}.dots-container {
    text-align: center;
    padding: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #25D366; /* WhatsApp Green color */
    width: 25px; /* Thora lamba dikhega active dot */
    border-radius: 10px;
}
/* WRAPPER */
.tilt-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  width: 100%;
  max-width: 9990px;
}

/* CARD */
.tilt-card {
  position: relative;
  height: 420px;
  border-radius: 62px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  cursor: pointer;
}

/* IMAGE */
.tilt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #141111;
  transform: translateZ(50px);
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .tilt-wrapper {
    grid-template-columns: 1fr;
  }

  .tilt-card {
    height: 320px;
  }
}
/* ===== NAV SEARCH ===== */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

#searchToggle {
  font-size: 22px;
  cursor: pointer;
}

/* Hidden input */
#searchInput {
  width: 0;
  opacity: 0;
  margin-left: 10px;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
  transition: all 0.4s ease;
}

/* Show input */
.nav-search.active #searchInput {
  width: 220px;
  opacity: 1;
}

/* Suggestions */
.search-suggestions {
  position: absolute;
  top: 42px;
  left: 40px;
  width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
  z-index: 9999;
}

.search-suggestions div {
  padding: 10px;
  cursor: pointer;
}

.search-suggestions div:hover {
  background: #f2f2f2;
}

/* Mobile fullscreen */
@media (max-width: 768px) {
  .nav-search.active {
    position: fixed;
    inset: 0;
    background: #fff;
    justify-content: center;
    z-index: 99999;
  }

  .nav-search.active #searchInput {
    width: 80%;
    font-size: 18px;
  }

  .search-suggestions {
    left: 10%;
    width: 80%;
  }
}
/* Container styling */
.fish-guide-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  /* border-bottom: 3px solid #0056b3; */
  display: inline-block;
  padding-bottom: 10px;
  width: 100%;
}

/* Flexbox layout for the rows */
.fish-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 30px;
}

.fish-image {
  flex: 1;
  text-align: right; /* Aligns image to the center-right */
}

.fish-image img {
  max-width: 300px; /* Adjust based on your actual assets */
  height: auto;
}

.fish-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .fish-item {
    flex-direction: column; /* Stacks image on top of text */
    text-align: center;
  }
  
  .fish-image {
    text-align: center;
  }

  .fish-image img {
    max-width: 80%; /* Scales image for mobile */
  }
}

/* process */
:root {
  --primary-blue: #007bff;
  --dark-text: #222;
  --body-text: #555;
}

.process-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  margin: 10px auto;
}

/* Grid Layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.process-item {
  padding: 10px;
}

.icon-wrapper {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.process-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.process-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--body-text);
  text-align: center;
}

/* Help Footer Section */
.help-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border-top: 1px solid #eee;
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.help-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.help-text p {
  max-width: 600px;
  color: var(--body-text);
}

.btn-contact {
  background: #001529;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 2px;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .help-footer {
    text-align: center;
    justify-content: center;
  }
}
/* end */
.marquee-container {
  width: 100%;
  background-color: #111; /* Dark background from image */
  color: #ffffff;
  overflow: hidden; /* Hides the text as it leaves the screen */
  padding: 12px 0;
  font-family: 'Arial Black', Gadget, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  gap: 50px; /* Spacing between items */
  animation: scroll 20s linear infinite;
}

.item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.icon {
  font-size: 1.2rem;
}

/* The Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* Moves exactly half way to loop perfectly */
  }
}

/* Responsive adjustment: Faster scroll or smaller text on mobile */
@media (max-width: 600px) {
  .marquee-container {
    font-size: 12px;
    padding: 8px 0;
  }
  .marquee-content {
    animation-duration: 15s; /* Speeds up for small screens */
  }
}
.marquee-container {
  width: 100%;
  background-color: #111;
  color: #ffffff;
  overflow: hidden;
  padding: 12px 0;
  font-family: 'Arial Black', Gadget, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  align-items: center;

  /* Sticky Positioning */
  position: -webkit-sticky; /* Support for Safari */
  position: sticky;
  top: 0;                   /* Stick to the very top */
  z-index: 1000;            /* Ensure it stays above all other content */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: adds depth */
}
* Contact Section */
.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Info */
.contact-info {
  background: linear-gradient(135deg, #383535, #00c6ff);
  color: #fff;
  padding: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  font-size: 32px;
}

.contact-info p {
  margin: 20px 0;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
}

.contact-info ul li {
  margin: 12px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.socials {
  margin-top: 20px;
}

.socials a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  transform: translateY(-4px);
}

/* Form */
.contact-form {
  padding: 40px;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 6px;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #777;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -8px;
  background: #fff;
  padding: 0 6px;
  font-size: 12px;
  color: #007bff;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

button:hover {
  background: #0056d2;
}

#formMsg {
  margin-top: 10px;
  font-size: 14px;
}

/* Map */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
    .video-slider-container {
        height: 60vh; /* Mobile par screen choti karein */
    }

    .video-overlay h1 {
        font-size: 1.8rem !important; /* Text chota karein takay screen se bahar na jaye */
        padding: 0 15px;
    }

    .shop-now-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* Product Grid Fix */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Automatic adjustment */
    gap: 20px;
    padding: 20px;
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr; /* Single column on small mobile */
    }
    
    .features-section {
        grid-template-columns: 1fr !important;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .slider-btn {
        padding: 10px;
        font-size: 12px;
    }
    .video-slider-container {
        height: 50vh; /* Mobile height */
    }
}
/* Basic Reset */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: sans-serif; }

.gallery-container {
  display: grid;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
}

/* Typography & Buttons */
.subtitle { color: #0b0a0a; font-weight: bold; margin-bottom: 5px; }
h1 { font-size: 2.5rem; margin-bottom: 5px; color: #e0d9d9; }
.tag { font-size: 0.8rem; letter-spacing: 2px; color: #444; }
button {
  margin-top: 20px;
  padding: 10px 30px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

/* Background Mockups (Replace with your image URLs) */
.card-jewelry { background-image: url('img/1.jpg'); }
.card-footwear { background-image: url('img/2.jpg'); }
.card-collection { 
  background-image: url('img/1.jpg');
  align-items: flex-start; /* Title is at the top in your image */
  justify-content: center;
  text-align: center;
}

/* RESPONSIVE LAYOUT */

/* Tablet & Desktop: 2 Columns */
@media (min-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  /* Make 'Collection' span two rows on the right */
  .card-collection {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 620px; /* Adjust based on your content */
  }
  
  .card-jewelry, .card-footwear {
    grid-column: 1;
  }
}
/* stiy */
.navbar {
    background: #000;
    height: 105px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222;
    /* Sticky Magic */
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999; /* Ensure it stays above video and badges */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Fix for body to prevent layout jumping */
body {
    margin: 0;
    padding: 0;
}.logo img {
    height: 130px; /* Reduced to fit inside the 105px navbar */
    width: auto;
    vertical-align: middle;
}@media (max-width: 1100px) {
    .nav-links {
        top: 105px; /* Match the height of your navbar */
        height: calc(100vh - 105px);
    }
}
.nav-search {
    display: flex;
    align-items: center;
    position: relative;
    background: #222;
    padding: 5px 10px;
    border-radius: 20px;
}

#searchInput {
    background: transparent;
    border: none;
    color: white;
    padding: 5px 10px;
    outline: none;
    width: 0; /* Shuru mein hidden rahega */
    transition: width 0.4s ease;
}

/* Jab active ho toh width barh jaye */
#searchInput.active {
    width: 200px;
}

#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    border: 1px solid #333;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #222;
}

.suggestion-item:hover {
    background: #c00;
} 
.reviews-section {
    padding: 60px 5%;
    background: #938a8a;
    color: #333;
    text-align: center;
}

.reviews-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.reviews-header p {
    font-style: italic;
    color: #121111;
    margin-bottom: 50px;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Mobile par automatic niche chala jayega */
}

.review-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-bubble {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    min-height: 180px;
    width: 100%;
}

/* Speech Bubble Tail (The Pointer) */
.review-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    filter: drop-shadow(0 2px 0 #eee);
}

.quote-icon {
    font-size: 30px;
    color: #ccc;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.5;
}

.rating {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.review-bubble p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.fb-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #3b5998;
    font-size: 24px;
}

/* User Info Styling */
.review-user {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-left: 10px;
}

.review-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d41010;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.review-user span {
    margin-left: 15px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #141414;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .reviews-header h1 { font-size: 1.8rem; }
    .reviews-grid { gap: 40px; }
    .review-item { max-width: 100%; }
}

.cart-icon {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-icon .icon {
    position: relative;
    font-size: 22px;
    color: #d71a05;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.cart-icon .icon:hover {
    color: #0b50e4;
    transform: translateY(-2px);
}

/* Badge */
.cart-icon .badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Different icon colors on hover */
.cart-icon .home:hover { color: #10b981; }
.cart-icon .cart:hover { color: #f97316; }
.cart-icon .user:hover { color: #6366f1; }

/* Mobile Responsive */
@media (max-width: 600px) {
    .cart-icon {
        gap: 14px;
    }

    .cart-icon .icon {
        font-size: 20px;
    }

    .cart-icon .badge {
        font-size: 10px;
        padding: 2px 5px;
    }
}
/* Floating Button */
.wechat-btn {
    position: fixed;
    bottom: 100px;   /* ← yahan se upar ho gaya */
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b4f6c, #1b9aaa);
    box-shadow: 0 6px 15px rgba(27,154,170,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
}
.wechat-btn i {
    color: #fff;
    font-size: 30px;
}

/* Popup Background */
.wechat-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 34, 51, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* Popup Box */
.popup-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    max-width: 340px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
}

.popup-box h3 {
    color: #0b4f6c;
    margin-bottom: 10px;
}

.popup-box img {
    width: 200px;
    border-radius: 10px;
    border: 2px solid #1b9aaa;
    margin-bottom: 10px;
}

/* WeChat ID */
.wechat-id {
    background: #f1fbfd;
    border: 1px dashed #1b9aaa;
    padding: 10px;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 15px;
    color: #0b4f6c;
}
.wechat-id span {
    font-weight: bold;
}

/* Fallback Buttons */
.fallback {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.fallback a {
    flex: 1;
    text-decoration: none;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.call-btn {
    background: #0b4f6c;
}

.whatsapp-btn {
    background: #25D366;
}

/* Note */
.note {
    font-size: 13px;
    color: #555;
    margin-top: 10px;
}

/* Close */
.close-btn {
    margin-top: 14px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 600px) {
    .wechat-btn {
        width: 50px;
        height: 50px;
    }
    .wechat-btn i {
        font-size: 26px;
    }
}

/* ============================================
   SHOPPING CART FEATURES
   ============================================ */

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 7px;
    border-radius: 50%;
    display: none;
    min-width: 20px;
    text-align: center;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: #fff;
    color: #000;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transition: right 0.3s ease;
    border-left: 4px solid #25D366;
}

.cart-notification.show {
    right: 20px;
}

.cart-notification i {
    color: #25D366;
    font-size: 1.5rem;
}

.cart-notification span {
    font-weight: 500;
}

/* Add to Cart Button Hover Effect */
.add-to-cart {
    position: relative;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 600px) {
    .cart-notification {
        right: -300px;
        max-width: 280px;
    }
    
    .cart-notification.show {
        right: 10px;
    }
}