/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full website background image */
body {

  background-size: cover;        /* cover the entire screen */
  background-repeat: no-repeat;  /* do not repeat */
  background-attachment: fixed;  /* keep image fixed on scroll */
  background-position: center;   /* center the image */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #222;
}

/* ====== Header Styling ====== */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}





.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.welcome {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.brand {
  font-size: 20px;
  color: #007bff;
  font-weight: bold;
  margin: 0;
}




.logo1{
    color: aqua;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #0077cc;
}

a .fa-user {
  font-size: 22px; /* icon ko bada karne ke liye */
  color: #333; /* optional: icon ka color set karne ke liye */
  transition: transform 0.2s ease; /* hover par smooth animation */
}

a .fa-user:hover {
  transform: scale(1.2); /* hover par thoda zoom effect */
  color: #000; /* optional: hover par thoda dark shade */
}



/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
  }
}
  
/* Quick Contact Sidebar Button */
    .quick-contact-btn {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: hsl(0, 13%, 95%);
    color: hsl(264deg 43.57% 29.62%);
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: 0.3s;
}
    /* .quick-contact-btn:hover {
      background: hsl(263, 74%, 59%);
    } */

    /* Overlay Form */
    .overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }
    .overlay.active {
      display: flex;
    }
    .form-box {
      background: #fff;
      padding: 20px;
      width: 400px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .form-box h2 {
      margin: 0 0 15px;
      text-align: center;
      color: #333;
    }
    .form-box input, 
    .form-box textarea {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .form-box button {
      background: #0f1724;
      color: #fff;
      padding: 10px;
      border: none;
      border-radius: 6px;
      width: 100%;
      cursor: pointer;
      font-weight: bold;
    }
    .form-box button:hover {
      background: #1a2940;
    }
    .close-btn {
      position: absolute;
      top: 20px; right: 30px;
      font-size: 22px;
      color: #fff;
      cursor: pointer;
    }

    




.slider {
  height: 200px;
  position:relative;
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(250px * 10); /* 5 images * 2 loops */
  animation: scroll 30s linear infinite;
}

.slide {
  width: 250px;
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    width: 180px;
    height: 150px;
  }

  .slide-track {
    width: calc(180px * 10);
  }
}



  .tiles-section {
      text-align: center;
      
      background-color: #fff;
    }

    .tiles-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 50px;
      color: hsl(0, 0%, 3%); /* Blue */
      margin-bottom: 10px;
    }

    .divider {
      width: 60px;
      height: 4px;
      background-color: #facc15; /* Yellow */
      margin: 10px auto 20px;
      border-radius: 2px;
    }

    .tiles-section p {
      max-width: 700px;
      margin: 0 auto 40px;
      color: #333;
      font-size: 16px;
      line-height: 1.6;
    }

    .tiles-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .tile-box {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.4s ease;
    }

    .tile-box img {
      width: 100%;
      display: block;
      transition: transform 0.5s ease;
    }

    .tile-box:hover img {
      transform: scale(1.1);
    }

    .tile-overlay {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(30, 58, 138, 0.8); /* Blue overlay */
      color: white;
      text-align: center;
      padding: 15px 0;
      font-size: 18px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: background 0.3s ease;
    }

    .tile-box:hover .tile-overlay {
      background: rgba(250, 204, 21, 0.9); /* Yellow on hover */
      color: #1e3a8a;
      font-weight: bold;
    }


/* Responsive Design */

/* For Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
  .tiles-section h2 {
    font-size: 36px; /* Reduce font size for tablets */
  }

  .tiles-section p {
    font-size: 14px; /* Smaller font size for paragraphs */
    max-width: 90%; /* Max width adjustment */
  }

  .tiles-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust grid columns */
    gap: 1px; /* Reduce gap between tiles */
  }

  .tile-box {
    border-radius: 8px; /* Slightly smaller border radius */
  }

  .tile-overlay {
    font-size: 16px; /* Reduce font size for overlay text */
    padding: 12px 0; /* Adjust padding for overlay */
  }
}

/* For Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .tiles-section h2 {
    font-size: 28px; /* Even smaller font size for mobile */
  }

  .tiles-section p {
    font-size: 12px; /* Smaller font size for paragraphs */
    max-width: 100%; /* Full width for paragraphs */
  }

  .tiles-gallery {
    grid-template-columns: 1fr; /* Stack the tiles in a single column */
    gap: 1px; /* Reduce gap between tiles */
  }

  .tile-box {
    border-radius: 5px; /* Even smaller border radius for mobile */
  }

  .tile-overlay {
    font-size: 14px; /* Further reduce font size for mobile overlay text */
    padding: 10px 0; /* Adjust padding for mobile overlay */
  }
}
/* Tile Section*/
/* Full Section Cover */
.tile-section1 {
  width: 100%;
  min-height: 10vh; /* covers full height of screen */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff; /* you can change if needed */
  box-sizing: border-box;
}

/* Container (images stacked vertically) */
.tile-container1 {
  display: flex;
  flex-direction: column; /* stack vertically */
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  gap: 1px;
  padding: 0;
}

/* Each Tile Box */
.tile-box1 {
  position: relative;
  width: 100%;
  height: 125vh; /* each image takes half screen height */
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image inside tile */
.tile-box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image fills container */
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay text strip */
.tile-overlay1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 56, 126, 0.9); /* deep blue */
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hover effects (for desktop only) */
.tile-box1:hover img {
  transform: scale(1.05);
}
.tile-box1:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.tile-box1:hover .tile-overlay1 {
  background: rgba(250, 204, 21, 0.9); /* Yellow hover */
  color: #1e3a8a;
  font-weight: bold;
}

/* ---------------- Responsive ---------------- */

/* Responsive adjustments */
@media (max-width: 1024px) { /* Tablet */
  .tile-section1 {
    flex-direction: column; /* Stack content vertically */
    padding: 0; 
  }
}

@media (max-width: 768px) { /* Mobile */
  .tile-section1 {
    flex-direction: column;
    padding: 0; 
  }
}
/* Tablets */
@media (max-width: 992px) {
  .tile-box1 {
    height: 45vh;
  }
  .tile-overlay1 {
    font-size: 1.3rem;
    padding: 1px 0;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  .tile-box1 {
    height: 40vh;
  }
  .tile-overlay1 {
    font-size: 1.1rem;
    padding: 1px 0;
  }
  .tile-box1:hover img {
    transform: none;
  }
}


/* End Tile Section */


.scroll-wrapper {
    display: flex;
    flex-direction: column;
    animation: scrollImages 10s linear infinite;
}

.scroll-wrapper img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Auto-scroll keyframes */
@keyframes scrollImages {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Responsive stacking for mobile */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center; /* optional */
  }

  .about-images {
    width: 100%;
    max-height: none;
    animation: none; /* auto-scroll disable on mobile */
  }

  .scroll-wrapper {
    flex-direction: row; /* horizontal scroll */
    overflow-x: auto;
    animation: none;
  }

  .scroll-wrapper img {
    width: 90%;
    height: auto;
    border-radius: 10px;
    flex: 0 0 auto;
  }
}



    


.features {
    display: flex;
    justify-content: center;
    gap: 25px; /* Slightly reduced gap */
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    width: 260px; /* Slightly smaller width */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Fixed opacity */
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px); /* Slightly smaller lift */
}

.card i {
    font-size: 32px; /* Reduced icon size */
    color: #007bff;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 20px; /* Corrected font size (was too big at 40px) */
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}


/* Products Section */
.products {
  text-align: center;
  padding: 10px 20px;
  background: #f9f9f9;
}

.products h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.product-image {
  position: relative;
  width: 100%;
  height: 350px; /* ✅ Fixed height for all images */
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Crop and fill equally */
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.product-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 14px;
  margin: 0;
}


/* product section increase */

.product-categories1 {
  padding: 60px 20px;
  
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  text-align: center;
}

.product-categories1 h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #0077cc;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.category-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

/* Circular Card */

.category-card1 {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background: #fff;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.category-card1:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

/* Image Slider in Circle */
.image-slider1 {
  position: relative;
  width: 100%;
  height: 100%;
}


.image-slider1 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  animation: fadeCircle 12s infinite;
}

/* Delay for multiple images */

.image-slider1 img:nth-child(1) { animation-delay: 0s; }
.image-slider1 img:nth-child(2) { animation-delay: 4s; }
.image-slider1 img:nth-child(3) { animation-delay: 8s; }

/* Animation */
@keyframes fadeCircle {
  0% { opacity: 0; transform: scale(1.1) rotate(10deg); }
  10%, 30% { opacity: 1; transform: scale(1) rotate(0deg); }
  40% { opacity: 0; transform: scale(1.05) rotate(-10deg); }
  100% { opacity: 0; }
}

/* Overlay Text */
.overlay1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(0,0,0,0.6);
  text-align: center;
  padding: 12px;
  border-radius: 0 0 50% 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}


.category-card1:hover .overlay1 {
  opacity: 1;
}

.overlay1 h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.explore-btn {
  display: inline-block;
  padding: 6px 16px;
  background: #0077cc;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: #005fa3;
}


 





/* Footer section */


.footer {
  background: #111; /* Dark background for contrast */
  color: #f5f5f5;
  text-align: center;
  padding: 20px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #d1a218;
}

.app-links img {
  width: 130px;
  margin: 10px 5px 0 0;
}

.download-btn {
  background: #f6c800;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: blue;
}

.connect-btn {
  background: #f6c800;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.connect-btn:hover {
  background: blue;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: #000;
  background: #fff;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #d1a218;
  color: #000;
}

.footer-column p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6c800;
}

.footer-bar p {
  margin: 0;
  color: #111; /* Dark text for readability */
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-bar p:hover {
  color: #f5d07f; /* Gold accent for hover */
}


/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin: 5px;
  }

  .connect-btn {
    width: 100%;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .nav__links {
    flex-direction: column;
    align-items: center;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}