* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}

body {
  background: #f4f7fb;
  color: #222;
  overflow-x: hidden;
}

/* TOPBAR */
.topbar {
  background: #0b3c70;
  color: white;
  padding: 8px 0;
}
.topbar-container {
  max-width: 1200px;
  margin: auto;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enquiry-btn {
  background: #ffcc00;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: black;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.enquiry-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .topbar-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* NAVBAR */
.navbar {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  width: 90%;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;

  align-items: center;
  position: relative; /* 🔥 THIS FIXES THE MOBILE MENU */
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 50px;
}
.logo h2 {
  font-size: 18px;
  color: #0b3c70;
}
.logo span {
  font-size: 12px;
  color: #555;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: #0b3c70;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: #ffcc00;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}
.dropdown-menu a:hover {
  background: #0b3c70;
  color: white;
}

/* DESKTOP */
@media (min-width: 900px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid #eee;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    max-height: 220px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .dropdown-menu.active {
    display: block;
  }
}

.topbar-container,
.nav-container {
  max-width: 100%;
}

/* ---------------------------------------------- */
.sk-banner-slider {
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.sk-banner-track {
  position: relative;
  height: 520px;
}

.sk-banner {
  position: absolute;
  inset: 0;
  background-size:100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: 1s ease;
  display: flex;
  align-items: center;
}

.sk-banner.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}



/* Text */
.sk-banner-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 550px;
  color: white;
}

.sk-banner-content h2 {
  font-size: 38px;
  margin-bottom: 18px;
  font-weight: 700;
}

.sk-banner-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
}

.sk-banner-btn {
  background: #ffd000;
  color: #0b3c70;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.sk-banner-btn:hover {
  background: #fff;
}

@media (max-width: 768px) {
  .sk-banner-track {
    height: 300px;
  }

  .sk-banner-content {
    padding: 30px;
    max-width: 100%;
  }

  .sk-banner-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .sk-banner-content p {
    font-size: 14px;
  }

  .sk-banner-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}


/* HERO */
.hero {
  background: #e9f1fb;
  padding: 80px 20px;
}
.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 {
  color: #0b3c70;
  font-size: 42px;
}
.hero-text p {
  margin: 20px 0;
  color: #444;
}
.hero-btn {
  display: inline-block;
  background: #0b3c70;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.6s ease;
}
.hero-btn:hover {
  transform: scale(1.05);
  color: #0b3c70;
  background: white;
}
.hero-image img {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

/* ===== HOT & POPULAR PRO ===== */
.hpp-pro {
  background: #f4f7fb;
  padding: 40px 20px;
}

.hpp-wrap {
  max-width: 1200px;
  margin: auto;
}

.hpp-title {
  text-align: center;
  margin-bottom: 70px;
}

.hpp-title h2 {
  font-size: 38px;
  color: #0b3c70;
}

.hpp-title p {
  margin-top: 10px;
  color: #555;
}

.hot-products {
  padding: 50px 6%;
  padding-top: 0;
  background: #f5f8fc;
  text-align: center;
}

.hot-products h2 {
  font-size: 36px;
  color: #0b2c55;
  margin-bottom: 10px;
}

.hot-products p {
  font-size: 17px;
  color: #666;
  margin-bottom: 50px;
}

/* Slider Layout */
.hot-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.hot-slider {
  overflow: hidden;
}

.hot-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  padding: 20px;
}

/* Product Card */
.hot-card {
  min-width: 300px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s;
}

.hot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hot-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 20px;
  background: #fff;
}
.hot-img {
  width: 100%;
  height: 260px;
  overflow: hidden; /* crop borders */
  background: #fff;
}

.hot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2); /* remove inner border */
}


/* Text */
.hot-info {
  padding: 20px;
  border-top: 1px solid #eee;
}

.hot-info h3 {
  font-size: 18px;
  color: #0b2c55;
  font-weight: 600;
}

/* Navigation Buttons */
.hot-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0b2c55;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hot-nav:hover {
  background: #134b8a;
}

.hot-prev {
  left: -20px;
}

.hot-next {
  right: -20px;
}

/* Responsive */
@media (max-width: 900px) {
  .hot-card {
    min-width: 260px;
  }
}

@media (max-width: 600px) {
  .hot-products h2 {
    font-size: 28px;
  }
  .hot-products{
    padding-bottom: 10px;
  }
  .sk-banner{
    height: 200px;
  }
  .sk-banner-track{
    height: 200px;
  }
  

  .hot-card {
    min-width: 80%;
  }

  .hot-prev {
    left: 0;
  }

  .hot-next {
    right: 0;
  }
}
/* ---------------------------------------------------- */
.circle-products {
  background: #f6f9fd;
  padding-top: 40px;
  padding-bottom: 40px;
}

.circle-head {
  text-align: center;
  margin-bottom: 50px;  
}

.circle-head h2 {
  font-size: 36px;
  color: #0b2c55;
}

.circle-head p {
  color: #666;
}

/* Container */
.circle-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Circle */
.circle-item {
  width: 200px;
  text-align: center;
  text-decoration: none;
  color: #0b2c55;
}

.circle-img {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.01);
  transition: 0.4s ease;
}

/* Label */
.circle-item span {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 20px;
}

/* Hover */
.circle-item:hover img {
  transform: scale(1.18);
}

/* Mobile */
@media (max-width: 700px) {
  .circle-wrap {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .circle-item {
    flex: 0 0 auto;
  }
}

/* ===== Mobile Premium Carousel ===== */
@media (max-width: 700px) {

  .circle-wrap {
    gap: 24px;
    padding: 10px 10px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .circle-wrap::-webkit-scrollbar {
    display: none;
  }

  .circle-item {
    flex: 0 0 70%;
    scroll-snap-align: center;
    transition: 0.4s ease;
    opacity: 1;
    transform: scale(0.9);
  }

  /* Highlight center card */
  .circle-item:focus-within,
  .circle-item:hover {
    opacity: 1;
    transform: scale(1);
  }

  .circle-img {
    width: 100%;
    height: 260px;
    border-radius: 22px;
  }

  .circle-img img {
    transform: scale(1.08);
  }

  .circle-item span {
    font-size: 18px;
    margin-top: 16px;
  }
}

 

.hot-card,
.ps-card,
.pop-card {
  will-change: transform;
}

/* ===== ABOUT MODERN ===== */
.about-modern {
  background: white;
  padding: 70px 20px;
}

.about-top {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left h2 {
  font-size: 40px;
  color: #0b3c70;
}

.about-left p {
  margin-top: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 500px;
}

.about-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-tags span {
  background: #e9f1fb;
  color: #0b3c70;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.about-right img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* Cards */
.about-cards {
  max-width: 1200px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  background: #f4f7fb;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
  color: #0b3c70;
  margin-bottom: 15px;
}

.about-card p,
.about-card li {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.about-card ul {
  padding-left: 20px;
}

/* Values */
.about-values {
  max-width: 1200px;
  margin: 80px auto 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.value-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #0b3c70;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(11, 60, 112, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .about-top {
    grid-template-columns: 1fr;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
  .about-values {
    flex-wrap: wrap;
  }
}
.mp-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Card */
.mp-item {
  flex: 1 1 calc(33.33% - 24px);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  text-decoration: none;
  transition: 0.3s ease;
}

/* Image */
.mp-img {
  height: 220px;
  background: #f5f7fb;
  overflow: hidden;
}

.mp-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: 0.4s ease;
}

/* Text */
.mp-text {
  padding: 18px 20px;
}

.mp-text h3 {
  font-size: 18px;
  color: #0b2c55;
  margin-bottom: 6px;
}

.mp-text p {
  font-size: 14px;
  color: #777;
}

/* Hover */
.mp-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.mp-item:hover img {
  transform: scale(1.08);
}

/* Wide card */
.mp-item.wide {
  flex: 1 1 calc(66.66% - 24px);
}

/* Mobile */
@media (max-width: 900px) {
  .mp-item,
  .mp-item.wide {
    flex: 1 1 100%;
  }

  .mp-img {
    height: 200px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------- */
/* ================================
   PRODUCT CATEGORY SECTION
================================ */

.main-products {
  padding: 90px 0;
  background: #f6f9fd;
}

.mp-wrap {
  max-width: 1200px;      /* MATCHES your site container */
  margin: auto;
  padding: 0 20px;
}

/* Header */
.mp-header {
  text-align: center;
  margin-bottom: 50px;
}

.mp-header h2 {
  font-size: 34px;
  color: #0b2c55;
  margin-bottom: 10px;
}

.mp-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: auto;
}

/* ================= FLEX LAYOUT ================= */

.mp-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Card */
.mp-item {
  flex: 1 1 calc(33.33% - 24px);
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-decoration: none;
  transition: 0.3s ease;
}

/* Wide card */
.mp-item.wide {
  flex: 1 1 calc(66.66% - 24px);
}

/* Image box */
.mp-img {
  height: 220px;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mp-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: 0.4s ease;
}

/* Text */
.mp-text {
  padding: 18px 20px;
  border-top: 1px solid #eee;
}

.mp-text h3 {
  font-size: 18px;
  color: #0b2c55;
  margin-bottom: 6px;
}

.mp-text p {
  font-size: 14px;
  color: #777;
}

/* Hover effects */
.mp-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.mp-item:hover img {
  transform: scale(1.08);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .mp-item,
  .mp-item.wide {
    flex: 1 1 100%;
  }

  .mp-img {
    height: 200px;
  }
}




/* ===== MODERN FOOTER ===== */
.footer-modern {
  background: linear-gradient(135deg, #0b3c70, #041c36);
  color: #fff;
  padding: 100px 20px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
}

.footer-brand h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #cdd9f0;
  line-height: 1.7;
}

.footer-social a {
  margin-top: 20px;
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  color: #ffcc00;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: #cdd9f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffcc00;
  padding-left: 6px;
}

.footer-contact p {
  color: #cdd9f0;
  line-height: 1.6;
}

.footer-owner {
  margin: 20px 0;
  font-weight: 600;
}
.footer-owner a{
  color: #cdd9f0;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.footer-owner a:hover {
  color: #ffcc00;
}

.footer-actions {
  display: flex;
  gap: 15px;
}
.name {
  margin-bottom: 15px;
}
.footer-action {
  background: #ffcc00;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer-action:hover {
  transform: scale(1.1);
}

.footer-action.outline {
  background: transparent;
  border: 2px solid #ffcc00;
  color: #ffcc00;
}
.footer-brand .logo h2 {
  color: white;
}

/* Bottom */
.footer-copy {
  margin-top: 70px;
  padding: 25px;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  color: #cdd9f0;
  font-size: 13px;
}
.footer-copy a {
  text-decoration: none;
  font-weight: bold;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-actions {
    justify-content: center;
  }
}
/* ===== MAP SECTION ===== */
.ske-map {
  background: #e9f1fb;
  padding: 100px 20px;
}

.map-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}

.map-info h2 {
  font-size: 36px;
  color: #0b3c70;
  margin-bottom: 15px;
}

.map-info p {
  color: #555;
  line-height: 1.7;
}

.map-contact {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-contact div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #0b3c70;
}

.map-contact i {
  color: #ffcc00;
  font-size: 18px;
}

/* MAP BOX */
.map-box {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.map-box iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .map-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .map-contact {
    align-items: center;
  }
  .main-products{
    padding-bottom: 30px;
  }
}


.ske-enquiry-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.ske-enquiry-modal.show{
  display: flex;
}

.ske-enquiry-box{
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  animation: pop 0.3s ease;
}

@keyframes pop{
  from{transform:scale(0.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.ske-close{
  float: right;
  cursor: pointer;
  font-size: 24px;
}

.ske-product{
  background: #eef4ff;
  padding: 10px;
  margin: 15px 0;
  border-radius: 8px;
  font-weight: 600;
}

.ske-row{
  display: flex;
  gap: 10px;
}

.ske-row input,
.ske-row select,
textarea,
.ske-phone input{
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

textarea{
  margin: 10px 0;
  resize: none;
}

.ske-phone{
  display: flex;
  align-items: center;
  gap: 10px;
}

.ske-phone span{
  background:#eee;
  padding:12px;
  border-radius:8px;
}

button{
  width:100%;
  background:#e53900;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:10px;
  margin-top:10px;
  font-size:16px;
  cursor:pointer;
}

button:hover{
  background:#c92f00;
}

.ske-success{
  display:none;
  color:green;
  text-align:center;
  margin-top:10px;
}
.ske-enquiry-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.ske-enquiry-modal.show{
  display: flex;
}

.ske-enquiry-box{
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: popup .3s ease;
}

@keyframes popup{
  from{ transform:scale(.9); opacity:0 }
  to{ transform:scale(1); opacity:1 }
}

.ske-close{
  position:absolute;
  top:10px;
  right:14px;
  font-size:24px;
  cursor:pointer;
}

.ske-success{
  display:none;
  color:green;
  margin-top:10px;
}
