/* Start custom CSS for html, class: .elementor-element-edc83b6 *//* ================= HERO SLIDER ================= */
.hero-slider-wrap{
  position:relative;
  height:90vh;
  overflow:hidden;
}

.hero-slider{
  display:flex;
  height:100%;
  transition:transform 1.2s ease-in-out;
}

/* EACH SLIDE */
.hero-slide{
  min-width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  position:relative;
}

/* OVERLAY (Desktop same) */
.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(11,44,77,.65),
    rgba(11,44,77,.35)
  );
}

/* CONTENT */
.hero-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  z-index:2;
  max-width:900px;
  color:#fff;
}

/* HEADING */
.hero-content h1{
  font-family:'Poppins',sans-serif;
  font-size:48px;
  font-weight:700;
  line-height:1.2;
}

.hero-content h1 span{
  color:#38BDF8;
  border-bottom:3px solid #38BDF8;
}

/* SUB TEXT */
.hero-content p{
  font-family:'Inter',sans-serif;
  font-size:18px;
  margin:22px 0 36px;
  color:#E5E7EB;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:20px;
}

.btn{
  padding:14px 32px;
  border-radius:4px;
  font-family:'Poppins',sans-serif;
  font-size:15px;
  text-decoration:none;
  transition:.3s;
}

.btn-call{
  background:#fff;
  color:#0B2C4D;
}
.btn-call:hover{
  background:#e2e8f0;
}

.btn-shop{
  background:#38BDF8;
  color:#fff;
}
.btn-shop:hover{
  background:#fff;
  color:#0B2C4D;
}

/* ================= HERO SLIDER – MOBILE OPTIMIZED ================= */
@media (max-width: 768px){

  /* HERO HEIGHT */
  .hero-slider-wrap{
    height: 82vh;              /* better fit on phone */
  }

  /* SLIDE */
  .hero-slide{
    background-position: center;
  }

  /* OVERLAY – readable but image visible */
  .hero-slide::before{
    background: linear-gradient(
      to bottom,
      rgba(11,44,77,.60),
      rgba(11,44,77,.40)
    );
  }

  /* CONTENT CENTERED */
  .hero-content{
    position:absolute;
    inset:0;
    left:0;
    top:0;
    transform:none;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:0 16px;
    text-align:center;
    max-width:100%;
  }

  /* HEADING */
  .hero-content h1{
    font-size:26px;          /* phone readable */
    line-height:1.25;
    margin-bottom:12px;
  }

  .hero-content h1 span{
    display:block;           /* next line on phone */
    margin-top:6px;
    border-bottom:none;      /* cleaner on mobile */
  }

  /* SUB TEXT */
  .hero-content p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:22px;
    color:#E5E7EB;
  }

  /* BUTTONS – THUMB FRIENDLY */
  .hero-buttons{
    width:100%;
    max-width:280px;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .btn{
    width:100%;
    padding:14px 16px;
    font-size:14px;
    border-radius:6px;
  }

}
.hero-content h1{
  font-family:'Poppins',sans-serif;
  font-size:48px;
  font-weight:700;
  line-height:1.2;
  color:#FFFFFF; /* Pure white */
  text-shadow:
    0 2px 10px rgba(0,0,0,.35),
    0 6px 25px rgba(0,0,0,.45); /* depth + contrast */
}
@media (max-width: 768px){
  .hero-content h1{
    font-size:28px;
    line-height:1.3;
    text-shadow:
      0 2px 8px rgba(0,0,0,.45),
      0 4px 18px rgba(0,0,0,.55);
  }

  .hero-content h1 span{
    color:#FFFFFF;
    border-bottom:none;
    font-weight:600;
  }
}
/* GLASS BACKGROUND BEHIND TEXT */
.hero-content{
  background:rgba(11,44,77,0.35);     /* glass tint */
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:32px 36px;
  border-radius:10px;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

/* Mobile – thoda compact */
@media(max-width:768px){
  .hero-content{
    padding:22px 18px;
    border-radius:8px;
  }
}
/* GLASS BACKGROUND – DESKTOP & LAPTOP ONLY */
.hero-content{
  background: rgba(11,44,77,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding:32px 36px;
  border-radius:10px;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
/* TABLET & MOBILE – REMOVE GLASS EFFECT */
@media (max-width: 1024px){
  .hero-content{
    background: transparent;        /* glass remove */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 0 16px;                /* clean mobile spacing */
    border-radius: 0;
  }
}
.hero-content{
  border:1px solid rgba(255,255,255,0.15);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b7ce8ae *//* ABOUT + ELEVATION SECTION */
.about-elevation{
  background:#F7F9FC;
  padding:100px 20px;
}

/* CONTAINER */
.ae-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT CONTENT */
.ae-content p{
  font-family:'Inter',sans-serif;
  font-size:16px;
  line-height:1.8;
  color:#1F1F1F;
  margin-bottom:18px;
}

.ae-content strong{
  color:#0B2C4D;
  font-weight:600;
}

.location{
  margin-top:10px;
  font-weight:500;
}

/* TITLE BOX */
.ae-title-box{
  display:inline-block;
  background:#0B2C4D;
  padding:18px 30px;
  border-left:6px solid #2F5D8C;
  margin-bottom:30px;
}

.ae-title-box h2{
  margin:0;
  font-family:'Poppins',sans-serif;
  font-size:32px;
  font-weight:600;
  color:#FFFFFF;
}

.ae-subtitle{
  display:block;
  margin-top:6px;
  font-family:'Inter',sans-serif;
  font-size:14px;
  color:#C9D1DB;
}

/* VIDEO */
.ae-video-wrap{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
  aspect-ratio:16/9;
  background:#000;
}

.ae-video-wrap iframe{
  width:100%;
  height:100%;
  border:0;
}

/* RESPONSIVE */
@media(max-width:900px){
  .ae-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .ae-content{
    text-align:center;
  }

  .ae-title-box{
    margin-left:auto;
    margin-right:auto;
  }
}

@media(max-width:600px){
  .about-elevation{
    padding:70px 16px;
  }

  .ae-title-box h2{
    font-size:26px;
  }

  .ae-content p{
    font-size:15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4ee0354 *//* PRODUCTS SECTION */
.products {
  background-color: #FFFFFF;
  padding: 100px 20px;
}

/* CONTAINER */
.products-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.products-container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 10px;
}

/* SUBTITLE */
.products-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1F1F1F;
  margin-bottom: 60px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.product-card {
  background-color: #F7F9FC;
  padding: 40px 25px;
  border: 1px solid #E2E6EC;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0B2C4D;
  margin-bottom: 20px;
}

/* BUTTON */
.product-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0B2C4D;
  text-decoration: none;
  border: 1px solid #0B2C4D;
  padding: 10px 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card:hover .product-btn {
  background-color: #2F5D8C;
  border-color: #2F5D8C;
  color: #FFFFFF;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-010fd1c *//* SERVICES SECTION */
.services {
  background-color: #0B2C4D; /* Industrial Navy Blue */
  padding: 100px 20px;
}

/* CONTAINER */
.services-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* MAIN HEADING */
.services-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

/* SERVICE TITLE */
.services-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #F7F9FC;
  margin-bottom: 25px;
}

/* TEXT */
.services-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #E1E6EC;
  margin-bottom: 18px;
}

.services-content strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* BUTTONS */
.services-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

/* GET DESIGN */
.btn-design {
  background-color: #F7F9FC;
  color: #0B2C4D;
}

.btn-design:hover {
  background-color: #9AA3AD;
  color: #0B2C4D;
}

/* CONTACT */
.btn-contact {
  background-color: #2F5D8C; /* Machine Blue */
  color: #FFFFFF;
}

.btn-contact:hover {
  background-color: #FFFFFF;
  color: #0B2C4D;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-content h2 {
    font-size: 32px;
  }

  .services-content h3 {
    font-size: 22px;
  }

  .services-buttons {
    flex-wrap: wrap;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-efea396 *//* WHY CHOOSE SECTION */
.why-choose {
  background-color: #F7F9FC; /* Industrial Off-White */
  padding: 100px 20px;
}

/* CONTAINER */
.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.why-container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 60px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  background-color: #FFFFFF;
  padding: 40px 22px;
  border: 1px solid #E2E6EC;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* ICON */
.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background-color: #0B2C4D; /* Industrial Navy */
  color: #FFFFFF;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* TITLE */
.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0B2C4D;
  margin-bottom: 12px;
}

/* TEXT */
.why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #1F1F1F;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-container h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f29c4ad *//* WORK GALLERY SECTION */
.work-gallery {
  background-color: #F7F9FC;
  padding: 100px 20px;
}

/* CONTAINER */
.wg-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.wg-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 20px;
}

.wg-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #1F1F1F;
  margin-bottom: 35px;
}

.wg-content strong {
  color: #0B2C4D;
}

/* BUTTON */
.wg-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 34px;
  background-color: #0B2C4D;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.wg-btn:hover {
  background-color: #2F5D8C;
}

/* RIGHT GRID */
.wg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}

/* ITEMS */
.wg-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.wg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.wg-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(11,44,77,0.9), transparent);
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

/* HOVER */
.wg-item:hover img {
  transform: scale(1.08);
}

/* SIZE VARIANTS */
.wg-item.tall {
  grid-row: span 2;
}

.wg-item.wide {
  grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wg-container {
    grid-template-columns: 1fr;
  }

  .wg-content {
    text-align: center;
  }

  .wg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wg-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .wg-item.wide,
  .wg-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ec61776 *//* =========================
   SHOP PROMOTION SECTION
   ========================= */

.shop-promo {
  background-color: #0B2C4D; /* Industrial Navy Blue */
  padding: 90px 20px;
}

/* CONTAINER */
.shop-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #FFFFFF;
}

/* HEADING */
.shop-container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* TEXT */
.shop-container p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #E1E6EC;
  margin-bottom: 35px;
}

.shop-container strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* BUTTON */
.btn-shop-now {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 42px;
  background-color: #2F5D8C; /* Machine Blue */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
}

/* HOVER */
.btn-shop-now:hover {
  background-color: #FFFFFF;
  color: #0B2C4D;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .shop-container h2 {
    font-size: 30px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4d14e01 *//* =========================
   CONTACT & LOCATION
   ========================= */

.contact-location {
  background-color: #F7F9FC; /* Industrial Off-White */
  padding: 100px 20px;
}

/* CONTAINER */
.cl-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.cl-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 15px;
}

.cl-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1F1F1F;
  margin-bottom: 25px;
}

/* INFO */
.cl-info p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #1F1F1F;
  margin-bottom: 10px;
}

.cl-info a {
  color: #0B2C4D;
  text-decoration: none;
  font-weight: 500;
}

/* BUTTONS */
.cl-buttons {
  margin-top: 30px;
  display: flex;
  gap: 18px;
}

.btn-call,
.btn-whatsapp {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* CALL */
.btn-call {
  background-color: #0B2C4D; /* Brand Navy */
  color: #FFFFFF;
}

.btn-call:hover {
  background-color: #2F5D8C; /* Machine Blue */
}

/* WHATSAPP */
.btn-whatsapp {
  background-color: #FFFFFF;
  color: #0B2C4D;
  border: 1px solid #0B2C4D;
}

.btn-whatsapp:hover {
  background-color: #0B2C4D;
  color: #FFFFFF;
}

/* MAP */
.cl-right iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cl-container {
    grid-template-columns: 1fr;
  }

  .cl-left {
    text-align: center;
  }

  .cl-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}/* End custom CSS */