/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.8);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #36b1ef;
}
.nav a {
  color: #fff;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}
.nav a:hover {
  color: #36b1ef;
}

/* Hero */
.hero {
  background: url('https://source.unsplash.com/1600x900/?mountains,water') no-repeat center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  margin-bottom: 1.5rem;
}
.hero button {
  padding: 0.75rem 1.5rem;
  background: #36b1ef;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}
.hero button:hover {
  background: #36b1ef;
}


/* Section Two - Products */
.products {
  background: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 900;
  color: #36b1ef;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 4px 15px rgba(8, 109, 211, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.product-card img {
  max-width: 140px;
  height: auto;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #36b1ef;
}

/* About Section */
.about {
  padding: 80px 10%;
  background: #111;
  color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* responsive */
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h4 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #35d7fb; /* accent color */
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}


/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: #fff;
  color: #111;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
  min-width: 280px;
}

.contact-left h5 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.contact-left h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-left p {
  font-size: 1rem;
  color: #555;
}

.contact-left i {
  margin-right: 8px;
  color: #ff4081; /* accent color */
}

/* Right form */
.contact-right {
  flex: 2;
  min-width: 350px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  position: relative;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #999;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: none;
  border-bottom: 2px solid #ddd;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom: 2px solid #00aaff;
}

textarea {
  resize: none;
}

/* Footer with button and privacy */
.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-submit {
  background: #00aaff;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #0088cc;
}

.privacy {
  font-size: 0.9rem;
  color: #555;
}

.privacy input {
  margin-right: 8px;
}


/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px;
   width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 900px;
  margin: auto;
}

.footer h6 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-about, .footer-links, .footer-social {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social .social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social .social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(0) invert(0.7) sepia(1) hue-rotate(20deg) saturate(5);
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #888;
}

 
/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #222;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
}
.close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero with sliding background */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out; /* slide in 0.2s */
}

.hero-content {
  z-index: 2;
  background: rgba(0,0,0,0.4);
  padding: 20px 40px;
  border-radius: 10px;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
}
.arrow.left { left: 20px; }
.arrow.right { right: 20px; }
.arrow:hover { background: rgba(0,0,0,0.8); }

