.elementor-120 .elementor-element.elementor-element-5d76a92{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-120 .elementor-element.elementor-element-36ba7d8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-120 .elementor-element.elementor-element-9baafa3{text-align:center;}.elementor-120 .elementor-element.elementor-element-9baafa3 .elementor-heading-title{color:#000000;}@media(min-width:768px){.elementor-120 .elementor-element.elementor-element-5d76a92{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-8c781ef */@font-face {
  font-family: panatone, panatone1;
  src: url(/images/Helvetica\ Neu\ Bold.ttf), url(/images/HelveticaNeue\ Medium.ttf);
}

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: panatone, Arial, sans-serif;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0px;
}
.mainheading{
    color: white;

}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 25px;
  padding: 0 10px;
}

.shop-btn {
  background: linear-gradient(90deg, #0070d1 0%, #004a99 100%);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: linear-gradient(90deg, #005bb5 0%, #003f7f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.shop-btn span {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.shop-btn:hover span {
  transform: translateX(4px);
}
a{
    text-decoration: none;
}
.btn1 {
  margin-left: 10px;
}

/* ===== PRODUCT SECTION ===== */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

header {
  text-align: center;
  padding: 30px 10px;
}

header h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #2c3e50;
}

header .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #7f8c8d;
}

.product-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-image img {
  width: 100%;
  height: 50%;
  display: block;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-content p {
  color: #7f8c8d;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ===== VIDEO SECTION ===== */
.section2 {
  background: linear-gradient(rgba(0, 0, 0, 0.7)), url(https://maharhammad.com/wp-content/uploads/2025/10/gallery-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
  padding: 80px 20px;
}

.section2 .mainheading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section2 .description {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 10px;
}

.vsec {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
  border: 2px solid yellowgreen;
  border-radius: 8px;
  overflow: hidden;
}

.vsec .video {
  width: 100%;
  height: auto;
}

/* ===== MENU SECTION ===== */
.menu-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  background-color: #f5f5f5;
}

.menu-content,
.menu-image {
  flex: 1;
  min-width: 300px;
}

.menu-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: #ffffff;
  padding: 80px 10%;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form p {
  color: #555;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.btn {
  background: linear-gradient(90deg, #0070d1 0%, #004a99 100%);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(90deg, #005bb5 0%, #003f7f 100%);
  transform: translateY(-2px);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 992px) {
  .menu-section {
    flex-direction: column;
    text-align: center;
  }

  .menu-image {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .section2 {
    padding: 60px 10px;
  }

  .vsec {
    width: 95%;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    text-align: center;
  }

  .menu-section {
    padding: 60px 5%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .shop-btn {
    font-size: 12px;
    padding: 10px 22px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .product-content h3 {
    font-size: 1.1rem;
  }

  .product-content p {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 25px;
  }
}/* End custom CSS */