 
 html {
  scroll-behavior: smooth;
}

 
 
 
 * {
   font-family: "Roboto", sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
       
    }
    a,ul,ol,li{
      list-style: none;
      text-decoration: none;
      color: inherit;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }

     
    .logo {
  font-weight: bold;
  font-size: 20px;
}

    .logo-img {
      height: 80px;
      width: auto;
    }

   /* ---------- General Navbar Styles ---------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: #fff;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo-img {
  height: 60px;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #0f0052;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #007bff;
}

/* ---------- Call Button ---------- */
.cta-btn {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #0056b3;
}

/* ---------- Hamburger Icon ---------- */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  nav.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .cta-btn {
    display: none;
  }
}

  .hero {
  padding: 10px 24px;
  background-color: #f9f9f9;
  
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #0f0052;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #272727;
  margin-bottom: 24px;
  max-width: 500px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.hero-btn:hover {
  background-color: #0056b3;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
/* End of hero section--------------------------------------------------------------------------------hero section */
section{
 opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
section.animate {
  opacity: 1;
  transform: scale(1);
}
/* category section--------------------------------------------------------------------------------category section */
 
/* about section--------------------------------------------------------------------------------about section */

.about-section {
  padding: 60px 24px;
  background-color: #f9f9f9;
}


.about-section-dark {
  padding: 60px 24px;
background: linear-gradient(to right, #000552, #005eac);
color: #fff;
}

.about-content-dark h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
   }

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 2rem;
  color: #0f0052;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: #464646;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.about-btn:hover {
  background-color: #0056b3;
}


/* End of product section--------------------------------------------------------------------------------product section */


.product-section {
  padding: 60px 24px;
  background-color: #ffffff;
  text-align: center;
     background-image: url('img/Planet\ Arcadia.png'); /* Replace with your image path */
  background-repeat: no-repeat;                /* Prevents image repetition */
  background-size: cover;                      /* Scales image to fill */
  background-position: center;                 /* Centers the image */
  background-attachment: fixed;                /* Optional: creates parallax effect */
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffffff;
  
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #0f0052;
  margin-bottom: 8px;
}

.price {
  font-size: 1rem;
  color: #007bff;
  margin-bottom: 16px;
}

.buy-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.buy-btn:hover {
  background-color: #0056b3;
}

 /* End of product section--------------------------------------------------------------------------------product section */
 /* form section--------------------------------------------------------------------------------form section */

 .contact-map-section {
  padding: 60px 20px;
  background: #f0f4f8;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form, .map-container {
  flex: 1 1 48%;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #0f0052;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  background: #fafafa;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
  background: #fff;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  padding: 14px 26px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  min-height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form, .map-container {
    flex: 1 1 100%;
  }
}


/* End of form section--------------------------------------------------------------------------------form section */
/* footer section--------------------------------------------------------------------------------footer section */
 .site-footer {
  background: #0e1a2b;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1 1 22%;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 600;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #cdd3db;
  font-size: 15px;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #007bff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1e2e3e;
  margin-top: 40px;
  font-size: 14px;
  color: #8898a9;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-col {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
}


.header-img{
  width: 100%;
  height: auto;
}

.about-section {
  padding: 20px 10px;
  background-color: #fff;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}
.about-section h1 {
  color: #000552;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
  h1 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }
}


 