/* Hydraxxx Electric Water Guns - Main Stylesheet */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Bangers&display=swap');

/* Base Styles */
:root {
  --primary-color: #0077cc;
  --secondary-color: #00aaff;
  --accent-color: #00ddff;
  --dark-blue: #005599;
  --light-blue: #e6f7ff;
  --white: #ffffff;
  --black: #333333;
  --gray: #f5f5f5;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

p {
  font-size: 15px;
  line-height: 1.8em;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bangers', cursive;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 119, 204, 0.2);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-title p {
  margin-top: 30px;
}

/* Header & Navigation */
.header {
  width: 100%;
   background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--black);
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--black);
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: url('../images/electric-water-gun.jpg') no-repeat center center/cover;
  /* opacity: 0.1; */
  z-index: 0;
}

.hero-content {
    border-radius: 10px;
    padding: 20px !important;
    position: relative;
    z-index: 1;
    text-align: left !important;
    background: #ffffffcc;
}

.Unleash {
    background: #fafafa;
    padding: 80px 0px;
}

.Unleash h1 {
    text-align: center !important;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.Unleash p {
     text-align: center !important;
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin: 0px auto;
}

.Unleash-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

/* Features Section */
.features {
  background-color: var(--white);
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 119, 204, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  color: var(--white);
  font-size: 30px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.feature-card p {
  color: #666;
  margin-bottom: 15px;
}

/* Product Info */
.product-info {
  background-color: var(--gray);
  padding-bottom: 40px;
}

.product-specs {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-specs h3 {
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.specs-table {
  width: 100%;
}

.specs-table tr {
  border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 0;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--dark-blue);
}

/* Modern Gallery Styles */
.modern-gallery {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.gallery-hero {
  position: relative;
  overflow: hidden;
}

.hero-background-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-background-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  opacity: 0.2;
}

.modern-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 119, 204, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.featured-item {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.8), rgba(0, 170, 255, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.overlay-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.overlay-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.view-icon {
  font-size: 2rem;
  display: block;
  margin-top: 10px;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 119, 204, 0.2);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

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

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
}

/* Legacy Gallery Styles - Keep for compatibility */
.gallery {
  background-color: var(--white);
}

.gallery-two-columns {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.gallery-column {
  margin: 0;
  padding: 0;
}

.left-column {
  width: 66.66%;
  float: left;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.right-column {
  width: 33.33%;
  float: right;
  margin: 0;
  padding: 0;
}

.gallery-item {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item.vertical-image {
  order: -1;
}

.gallery-item.feature-image {
  width: 100%;
  height: 100%;
}

.gallery-item.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 119, 204, 0.8), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-caption h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--light-blue), var(--white));
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-right: 15px;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-error {
  color: #ff3333;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--light-blue), var(--white));
  color: var(--black);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}


.footer-links {
  list-style: none;
  display: flex;
}

.footer-links li {
  margin-right: 20px;
}

.footer-links a {
  color: var(--white);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-left: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.lightbox-content, .lightbox-caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

.close-button {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close-button:hover,
.close-button:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .modern-gallery {
    padding: 80px 0;
  }
  
  .modern-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .gallery-item.featured-item {
    grid-column: span 1;
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex !important;
    position: relative;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    z-index: 1000;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links, .social-links {
    justify-content: center;
    margin-top: 20px;
  }
  
  .modern-gallery {
    padding: 60px 0;
  }
  
  .modern-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-item.featured-item {
    grid-column: span 1;
  }
  
  .overlay-content h3 {
    font-size: 1.5rem;
  }
  
  .overlay-content h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .gallery-two-columns {
    flex-direction: column;
    gap: 20px;
  }
  
  .left-column, .right-column {
    flex: 1;
  }
  
  .gallery-item {
    flex-basis: 100%;
  }
  
  .modern-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-hero h1 {
    font-size: 2.5rem !important;
  }
  
  .gallery-hero p {
    font-size: 1.1rem !important;
  }
}