/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 100px; 
  font-family: 'Arial', sans-serif;
  background: #f4f4f4;
  padding-left: 0px;
}

/* ===== HEADER ===== */
.main-header {
  width: 100%;
  height: 70px;
  background: #111;
  color: #fff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: background 0.3s;
}

/* LOGO */
.logo {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;

  /* premium gradient text */
  background: linear-gradient(90deg, #ffffff, #dbeafe, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: all 0.35s ease;
}

/* hover effect */
.logo:hover {
  letter-spacing: 4px;
  transform: scale(1.1);
  text-shadow:
    0 4px 15px rgba(255,255,255,0.4),
    0 0 25px rgba(59,130,246,0.6);
}


.logo::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  transition: width 0.35s ease;
}

.logo:hover::after {
  width: 100%;
}


















/* SEARCH BAR */
.search-area {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* INPUT FIELD */
.search-area input {
  width: 260px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  outline: none;
  font-size: 14px;

  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.search-area input::placeholder {
  color: rgba(255,255,255,0.7);
}

/* focus effect */
.search-area input:focus {
  border-color: #93c5fd;
  box-shadow:
    0 0 0 2px rgba(59,130,246,0.35),
    0 6px 20px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.18);
}

/* SEARCH BUTTON */
.search-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(37,99,235,0.4);
  transition: all 0.3s ease;
}

/* hover */
.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.6);
}

/* click feedback */
.search-btn:active {
  transform: scale(0.95);
}






/* NAVIGATION */

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}

.nav-links li a:hover {
  color: #ffcc00;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 20px;
  left: 0;
  background: #222;
  width: 180px;
  border-radius: 8px;
  display: none;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown-menu li {
  padding: 10px 20px;
  transition: all 0.3s;
}

.dropdown-menu li a {
  color: #fff;
  text-decoration: none;
}

.dropdown-menu li:hover {
  background: #333;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* MOBILE MENU ICON */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
}


.menu-icon:hover {
  color: #ffcc00;
}










/* ===== SEARCH SUGGESTION DROPDOWN ===== */
.search-area {
  position: relative;
}

.search-suggestions {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  padding: 0;
  margin: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.search-suggestions li {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #111;
  transition: background 0.2s;
}

.search-suggestions li:hover {
  background: #f1f1f1;
}

/* Mobile adjustments */
@media(max-width: 768px) {
  .search-suggestions li {
    font-size: 13px;
  }
}






/* ===== TICKER ===== */
.top-ticker {
  width: 100%;
  background: #1428A0;
  color: #fff;
  font-weight: 600;
  overflow: hidden; 
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1;
}

.ticker-wrapper {
  overflow: hidden;
  width: 100%;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: tickerScroll 40s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .top-ticker {
    font-size: 14px;
    height: 35px;
  }
}





/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Footer Columns */
.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffcc00;
  text-decoration: underline;
}




/* Footer Social Column */
.footer-column.social {
    background: linear-gradient(135deg, #111, #222);
    padding: 20px 15px;
    margin: 0;          
    color: #fff;            
    text-align: center;
    }

.footer-column.social h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;           
    flex-wrap: wrap;      
}

/* Each Social Link */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* Icon Images */
.social-link img {
    width: 100px;              
    height: 50px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Effect */
.social-link:hover img {
    transform: scale(1.2);
    filter: brightness(1.5) invert(1);
}

/* Platform-specific hover effects (optional) */
.social-link[title="Facebook"]:hover img { filter: hue-rotate(210deg) brightness(1.5) invert(1); }
.social-link[title="Twitter"]:hover img { filter: hue-rotate(180deg) brightness(1.5) invert(1); }
.social-link[title="Instagram"]:hover img { filter: saturate(1.5) brightness(1.5) invert(1); }
.social-link[title="YouTube"]:hover img { filter: hue-rotate(0deg) brightness(1.5) invert(1); }

/* Responsive */
@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
    }
    .social-link img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
    .social-link img {
        width: 24px;
        height: 24px;
    }
}









/* ===== CARDS SECTION ===== */
.mobile-cards {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Arial', sans-serif;
}

.section-title {
  font-size: 28px;
  color: #111;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}



/* CARD */
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 180px;  
}


.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: contain;   
  background: #fff;
}


.card-content {
  padding: 10px 10px;
}

.card-content h3 {
  font-size: 16px; 
  margin-bottom: 6px;
}

.card-content p {
  font-size: 13px;     
  margin-bottom: 6px;
}

.card-content .price {
  font-size: 15px;     
}


/* CARD BUTTONS */
.card-buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.card-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

/* View Spec Button */
.btn.view-spec {
  background: #eee;
  color: #111;
}

.btn.view-spec:hover {
  background: #ffcc00;
  color: #111;
}

/* Buy Now Button */
.btn.buy-now {
  background: #ffcc00;
  color: #111;
}

.btn.buy-now:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}










/* ===================== MOBILE RESPONSIVE ===================== */

/* General body adjustments for small screens */
@media (max-width: 1024px) {
  body {
    padding-top: 90px; /* header thoda chhota feel ho */
  }

  .main-header {
    height: 60px;
    padding: 8px 15px;
  }

  .logo {
    font-size: 26px;
  }

  .nav-links {
    gap: 15px;
    font-size: 14px;
  }

  .search-area input {
    width: 200px;
  }

  .search-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Tablets / Medium screens */
@media (max-width: 768px) {
  .main-header {
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    padding: 10px 15px;
  }

  .logo {
    font-size: 24px;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: -100%;
    background: #111;
    width: 200px;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    transition: right 0.3s ease;
  }

  .nav-links.show {
    right: 0;
  }

  .menu-icon {
    display: block;
  }

  .search-area input {
    width: 180px;
  }

  .search-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Cards adjustments */
  .cards-container {
    justify-content: center;
  }

  .card {
    max-width: 45%;
    margin-bottom: 15px;
  }

  .mobile-cards {
    padding: 80px 15px;
  }

  /* Footer columns stack */
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .search-area input {
    width: 140px;
    font-size: 12px;
  }

  .search-btn {
    padding: 5px 10px;
    font-size: 11px;
  }

  .card {
    max-width: 90%;
  }

  .section-title {
    font-size: 22px;
  }

  .top-ticker {
    font-size: 12px;
    height: 30px;
  }

  .social-link img {
    width: 24px;
    height: 24px;
  }

  .mobile-cards {
    padding: 60px 10px;
  }

  .nav-links {
    width: 180px;
    top: 60px;
    padding: 15px;
  }
}
