/* ===================== RESET & COMMON ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

html, body {
  overflow-x: hidden; /* prevent horizontal scroll */
  background: #fff;
  color: #111;
  line-height: 1.6;
}

/* ===================== CONTAINER ===================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ===================== HEADER ===================== */
header {
  background: #000;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a.active {
  color: #ff7a00;
  border-bottom: 2px solid #fff;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  background: url("https://images.unsplash.com/photo-1600180758890-6b94519a8ba6") center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.btn {
  background: #ff6600;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #e65c00;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  max-height: 700px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* ===================== SECTIONS ===================== */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  color: #ff7a00;
  font-size: 32px;
  margin-bottom: 30px;
}

/* ===================== PRODUCTS GRID ===================== */
.products,
.product-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 0;
  text-align: center;
  background: #f9f9f9;
}

.product-card {
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 5px;
}

.product-card h3 {
  margin-bottom: 10px;
}

.product-card p,
.product-card .mrp {
  margin-bottom: 15px;
  font-size: 0.95rem;
  font-weight: bold;
}

/* ===================== PRODUCT DETAIL ===================== */
.product-detail {
  text-align: center;
  padding: 60px 0;
}

.product-detail h1 {
  font-size: 32px;
  color: #ff7a00;
  margin-bottom: 20px;
}

.product-detail .product-image {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.product-detail h2 {
  font-size: 24px;
  color: #000;
  margin-bottom: 15px;
}

.product-detail p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
  color: #333;
}

/* ===================== WHY CHOOSE US ===================== */
.why-choose {
  padding: 60px 0;
  text-align: center;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.feature {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* ===================== ABOUT US ===================== */
.about-us {
  padding: 60px 0;
  text-align: center;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 60px 0;
  background: #f2f2f2;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ===================== PROFESSIONAL UNITS ===================== */
.professional-units {
  padding: 60px 20px;
  text-align: center;
  background: #f7f7f7;
}

.unit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.unit-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.unit-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.unit-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333;
}

.unit-card p {
  font-size: 0.9rem;
  color: #555;
}

/* ===================== TOP BANNER ===================== */
.top-banner {
  background: #ff6600;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

.top-banner h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.top-banner p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.top-banner .btn {
  background: #fff;
  color: #ff6600;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
}

.top-banner .btn:hover {
  background: #f2f2f2;
}

/* ===================== FOOTER ===================== */
footer {
  background: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer .social-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

footer .social-links a:hover {
  text-decoration: underline;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width: 1024px) {
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
}

@media(max-width: 768px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    flex-direction: column;
    text-align: center;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px 20px;
    border-left: 1px solid #333;
  }
    nav.show { display: flex; } 
  nav a { margin: 10px 0; }
  nav.active { display: flex; }

  .hero { flex-direction: column-reverse; padding: 60px 0; }
  .hero h1 { font-size: 28px; }
  .hero-container { flex-direction: column-reverse; gap: 30px; }

  .product-grid, .features, .testimonial-cards, .unit-grid {
    flex-direction: column;
    align-items: center;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #f8f8f8;
  color: #222;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: #fff;
  color: #222;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


.logo {
  font-size: 2.0rem;
  font-weight: 900;
  color: #f37021;
  text-decoration: none;
}



.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 60vh;
  background: url('/images/MainPageBanner.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(255,255,255,0.2);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #222;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #f37021;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* SECTIONS */
.section {
  padding: 60px 0;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f37021;
}

.section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

/* MISSION & VISION CARDS */
.mission-vision .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mission-vision .card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 5px 20px rgba(243,112,33,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-vision .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(243,112,33,0.25);
}

.mission-vision .card h3 {
  margin-bottom: 15px;
  color: #f37021;
}

.mission-vision .card p {
  font-size: 1rem;
  color: #555;
}

/* WHY TRUST */
.trust-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1rem;
}

.trust-list li {
  margin: 12px 0;
  position: relative;
  padding-left: 25px;
  color: #333;
}

.trust-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f37021;
}

/* FOOTER */
footer {
  background: #222;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}
/* ===================== NAVBAR ===================== */
header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff7a00;
  text-decoration: none;
} */

/* Desktop Nav */
nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

nav a.active {
  color: #ff7a00;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #000;
    width: 220px;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    display: none;
  }

  nav a {
    margin: 10px 0;
    width: 100%;
  }

  nav.active {
    display: flex;
  }
}
/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 14px 18px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background: #e65c00;
  transform: translateY(-4px);
}
.logo img {
  height: 85px;        /* logo size */
  width: auto;
  display: block;
}

.navbar {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}
/* dropdown base */
.dropdown {
  position: relative;
}

/* hidden menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 100px;
  display: none;
  list-style: none;
  padding: 5px 0;
  z-index: 999;
}

/* show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* menu items */
.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: #ff7a00;
}
/* ===================== DEALER CERTIFICATE ===================== */
.dealer-certificate {
  background: #f8f8f8;
  text-align: center;
}

.dealer-certificate h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.certificate-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #444;
}

.certificate-box {
  display: flex;
  justify-content: center;
}

.certificate-box img {
  max-width: 900px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: #fff;
  padding: 10px;
}
@media (max-width: 768px) {

  /* mobile menu container */
  .nav-menu,
  .nav-menu ul {
    text-align: center;
  }

  /* menu links */
  .nav-menu li a {
    display: block;
    text-align: center;
    width: 100%;
  }

  /* dropdown menu */
  .dropdown-menu {
    position: static;      /* mobile ke liye */
    width: 100%;
    text-align: center;
  }

  .dropdown-menu li a {
    text-align: center;
  }
}
/* ===== SQUAD PROFESSIONAL BANNER ===== */

.sqd-pro-banner {
  background: #0b0b0b;
  padding: 60px 0;
}

.sqd-pro-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.sqd-pro-content {
  flex: 1;
  color: #fff;
}

.sqd-pro-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sqd-pro-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 25px;
}

.sqd-pro-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6a00;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: 0.3s;
}

.sqd-pro-btn:hover {
  background: #ff6a00;
}

.sqd-pro-media {
  flex: 1;
  text-align: center;
}

.sqd-pro-media img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .sqd-pro-wrap {
    flex-direction: column-reverse;
    text-align: center;
  }

  .sqd-pro-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .sqd-pro-banner {
    padding: 40px 0;
  }

  .sqd-pro-title {
    font-size: 28px;
  }

  .sqd-pro-desc {
    font-size: 15px;
  }
}
/* ===== SQUAD CATALOG BANNER ===== */

.sqd-catalog-wrap{
  margin-bottom:40px;
}

.sqd-catalog-card{
  background:#fff;
  border-radius:14px;
  padding:25px;
  display:flex;
  gap:25px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  align-items:center;
}

.sqd-catalog-left{
  flex:1;
  text-align:center;
}

.sqd-catalog-left img{
  max-width:100%;
  border-radius:10px;
}

.sqd-sole-img{
  margin-top:15px;
  max-width:70%;
}

.sqd-catalog-right{
  flex:1;
}

.sqd-catalog-right h2{
  font-size:28px;
  letter-spacing:1px;
  margin-bottom:5px;
}

.sqd-catalog-right h3{
  color:#c40000;
  margin-bottom:15px;
}

.sqd-spec-table{
  width:100%;
  font-size:14px;
  margin-bottom:20px;
}

.sqd-spec-table td{
  padding:6px 0;
  border-bottom:1px solid #eee;
}

.sqd-icons{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  font-size:13px;
}

.sqd-icons div{
  display:flex;
  align-items:center;
  gap:8px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .sqd-catalog-card{
    flex-direction:column;
    text-align:center;
  }
}
/* TOP NOTICE LINE */
.top-line {
  background: #111;              /* DARK BACKGROUND */
  color: #ffb266;                /* soft orange text */
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 2px solid #ff6a00;
}

.top-line span {
  color: #ff6a00;
  margin-right: 6px;
}

/* MAIN ORANGE BANNER */
.top-banner {
  background: linear-gradient(90deg, #ff6a00, #ff8c1a);
  padding: 40px 0;
  text-align: center;
}

.top-banner h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.top-banner p {
  color: #ffe6cc;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-line {
    font-size: 11px;
  }
  .top-banner h2 {
    font-size: 20px;
  }
}
