/* ===== GLOBAL RESPONSIVE BASE ===== */

html{
  scroll-behavior:smooth;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

body{
  overflow-x:hidden;
}
/* ===== PETOLIX PREMIUM STRIP ===== */
.petolix-about-strip{
  background:#d4a90a;
  padding:60px 20px;
  border-top:4px solid #0b1e3c;
  border-bottom:4px solid #0b1e3c;
  animation: fadeUp 1s ease;
}

.petolix-title{
  text-align:center;
  font-size:36px;
  font-weight:800;
  color:#0b1e3c;
  margin-bottom:30px;
  letter-spacing:1px;
}

.petolix-text{
  max-width:1100px;
  margin:0 auto 22px;
  font-size:17px;
  line-height:1.8;
  color:#111;
  animation: fadeUp 1.2s ease;
}

.petolix-highlight{
  max-width:1100px;
  margin:25px auto 0;
  font-size:18px;
  font-weight:700;
  color:#0b1e3c;
  animation: fadeUp 1.4s ease;
}

/* animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* mobile */
@media (max-width:768px){
  .petolix-title{
    font-size:26px;
  }
  .petolix-text{
    font-size:15px;
  }
}
/* ===== PREMIUM FADE UP ANIMATION ===== */
.fade-up{
  opacity:1;
  transform:translateY(0);
  transition:all .8s ease;
}

.fade-up.animate{
  opacity:0;
  transform:translateY(40px);
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}
/* ===== WHY CHOOSE PREMIUM CARDS ===== */

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  max-width:1200px;
  margin:0 auto;
}

.why-card{
  background:#ffffff;
  padding:28px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:all .35s ease;
  border:1px solid #eee;
}

.why-card h3{
  color:#123d6b;
  margin-bottom:12px;
}

.why-card p{
  color:#555;
  font-size:15px;
  line-height:1.7;
}

/* hover premium effect */
.why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.15);
  border-color:#f4c542;
}

/* mobile spacing */
@media(max-width:768px){
  .why-card{
    padding:22px;
  }
}
/* ===== PREMIUM EXPORT CTA ===== */

.export-cta{
  padding:70px 20px;
  background:linear-gradient(135deg,#123d6b,#0d2f52);
  text-align:center;
  margin-top:60px;
}

.export-cta-box{
  max-width:900px;
  margin:auto;
  color:#fff;
}

.export-cta-box h2{
  font-size:32px;
  margin-bottom:18px;
  color:#f4c542;
}

.export-cta-box p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:30px;
  opacity:.95;
}

.export-cta-btn{
  display:inline-block;
  background:#f4c542;
  color:#123d6b;
  padding:14px 32px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.export-cta-btn:hover{
  background:#fff;
  transform:translateY(-3px);
}
/* ===== EXPORT STATS ===== */

.export-stats{
  background:#123d6b;
  padding:70px 20px;
  margin-top:60px;
}

.stats-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:25px;
  text-align:center;
}

.stat-box{
  color:#fff;
}

.stat-box h3{
  font-size:42px;
  color:#f4c542;
  margin-bottom:8px;
}

.stat-box p{
  font-size:15px;
  opacity:.9;
}
/* ===== PREMIUM STATS SECTION ===== */

.export-stats{
  background: linear-gradient(135deg,#0f2f57,#123d6b);
  padding: 70px 20px;
  color:#fff;
}

.export-stats .container{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.export-stats .stat-box{
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:35px 20px;
  transition: all .35s ease;
  backdrop-filter: blur(6px);
}

/* hover premium effect */
.export-stats .stat-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  border-color:#f4c542;
}

.export-stats .counter{
  font-size:48px;
  font-weight:700;
  color:#f4c542;
  margin-bottom:8px;
}

.export-stats p{
  font-size:15px;
  opacity:.9;
}

/* ===== MOBILE RESPONSIVE ===== */

@media(max-width:992px){
  .export-stats .container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:576px){
  .export-stats .container{
    grid-template-columns: 1fr;
  }
}
/* ===== ABOUT HERO PREMIUM ===== */

.page-hero{
  position:relative;
  width:100%;
  height:420px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* hero background image */

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}


.about-hero h1{
  color:#fff;
  font-size:42px;
  margin-bottom:10px;
}

.about-hero p{
  color:#f4c542;
  font-size:18px;
  font-weight:500;
}

/* mobile */
@media(max-width:768px){
  .about-hero{
    height:320px;
  }
  .about-hero h1{
    font-size:28px;
  }
}
/* ===== ABOUT PAGE LAYOUT FIX ===== */

.topbar{
  background:#123d6b;
  color:#fff;
  text-align:center;
  padding:6px;
  font-size:14px;
}

header{
  background:#f4c542;
  padding:10px 0;
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.menu{
  list-style:none;
  display:flex;
  gap:30px;
}

.menu a{
  text-decoration:none;
  color:#123d6b;
  font-weight:600;
}

/* HERO */
.hero{
  height:260px;
  background:url('export.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
}

/* ABOUT GRID */
.about-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:60px 0;
}

.about-wrap img{
  width:100%;
  border:8px solid #eee;
}

/* VALUES BOX */
.values{
  background:#f7f7f7;
  padding:40px;
  margin-top:30px;
  border-radius:10px;
}

.values h3{
  margin-bottom:15px;
}

/* MOBILE */
@media(max-width:768px){
  .about-wrap{
    grid-template-columns:1fr;
  }
}
/* ===== WHY CHOOSE GRID ===== */
.why-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.why-card{
  background:#ffffff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:.35s;
  border:1px solid #eef2f7;
}

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

.why-card h3{
  color:#123d6b;
  font-size:18px;
  margin-bottom:10px;
}

.why-card p{
  color:#555;
  line-height:1.6;
}
/* PREMIUM INFO SECTION */

.premium-info{
  padding:70px 0;
  background:linear-gradient(180deg,#ffffff,#f7faff);
}

.premium-box{
  background:#fff;
  padding:35px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  margin-bottom:30px;
  transition:.35s;
  border:1px solid #eef2f7;
}

.premium-box:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.premium-box h2{
  color:#123d6b;
  margin-bottom:12px;
}

.premium-btn{
  display:inline-block;
  margin-top:15px;
  background:#f4c542;
  color:#123d6b;
  padding:12px 26px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.premium-btn:hover{
  background:#123d6b;
  color:#fff;
}
/* ===== ULTRA ABOUT SECTION ===== */

.about-ultra-section{
  padding:80px 0;
  background:linear-gradient(180deg,#ffffff,#f7faff);
}

.about-ultra-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

/* IMAGE SIDE */

.about-ultra-image{
  position:relative;
}

.about-ultra-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
  position:relative;
  z-index:2;
}

.image-glow{
  position:absolute;
  width:80%;
  height:80%;
  background:#f4c542;
  filter:blur(80px);
  opacity:.25;
  top:10%;
  left:10%;
  z-index:1;
}

/* CONTENT SIDE */

.about-tag{
  display:inline-block;
  background:#f4c542;
  color:#123d6b;
  padding:6px 14px;
  font-size:12px;
  font-weight:700;
  border-radius:30px;
  margin-bottom:15px;
}

.about-ultra-title{
  font-size:38px;
  margin-bottom:18px;
  color:#123d6b;
}

.about-ultra-title span{
  color:#f4c542;
}

.about-ultra-text{
  color:#555;
  line-height:1.8;
  margin-bottom:16px;
}

/* VALUES CARD */

.values-ultra{
  margin-top:25px;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  border:1px solid #eef2f7;
  border-radius:16px;
  padding:25px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.values-ultra h3{
  color:#123d6b;
  margin-bottom:12px;
}

.values-ultra ul{
  padding-left:18px;
}

.values-ultra li{
  margin-bottom:8px;
  color:#444;
}

/* MOBILE */

@media(max-width:768px){
  .about-ultra-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .about-ultra-title{
    font-size:28px;
  }
}
/* ===== PRODUCT DETAILS ULTRA ===== */

.product-details-ultra{
  padding:90px 0;
  background:linear-gradient(180deg,#ffffff,#f7faff);
}

.product-detail-box{
  background:#fff;
  padding:40px;
  border-radius:18px;
  margin-bottom:40px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  border:1px solid #eef2f7;
  transition:.35s;
}

.product-detail-box:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

.product-detail-box h2{
  color:#123d6b;
  margin-bottom:15px;
}

.spec-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:20px;
}

.spec-grid div{
  background:#f7faff;
  padding:14px;
  border-radius:10px;
  border:1px solid #eef2f7;
}

.spec-grid h4{
  color:#123d6b;
  font-size:14px;
  margin-bottom:4px;
}

.product-inquiry-btn{
  display:inline-block;
  margin-top:25px;
  background:#f4c542;
  color:#123d6b;
  padding:12px 26px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.product-inquiry-btn:hover{
  background:#123d6b;
  color:#fff;
}
/* ===== PRODUCTS INTRO ULTRA ===== */

.products-intro-ultra{
  padding:90px 0 70px;
  background:linear-gradient(180deg,#ffffff,#f7faff);
  text-align:center;
}

.products-intro-head h2{
  font-size:36px;
  color:#123d6b;
  margin-bottom:12px;
  font-weight:800;
}

.title-line{
  width:80px;
  height:4px;
  background:#f4c542;
  margin:0 auto 35px;
  border-radius:10px;
}

/* glass card */

.products-intro-card{
  max-width:900px;
  margin:auto;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(10px);
  padding:35px 40px;
  border-radius:18px;
  box-shadow:0 25px 70px rgba(0,0,0,0.08);
  border:1px solid #eef2f7;
  transition:.35s;
}

.products-intro-card:hover{
  transform:translateY(-4px);
  box-shadow:0 35px 90px rgba(0,0,0,0.12);
}

.products-intro-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:14px;
  font-size:16px;
}

/* badges */

.products-intro-badges{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

.products-intro-badges span{
  background:#f7faff;
  border:1px solid #e6eef8;
  padding:8px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  color:#123d6b;
}

/* mobile */

@media(max-width:768px){
  .products-intro-head h2{
    font-size:28px;
  }

  .products-intro-card{
    padding:25px 20px;
  }
}
/* ===== ULTRA PRODUCT UPGRADE ===== */

.ultra-product{
  position:relative;
  overflow:hidden;
}

/* gold top strip */

.product-top-strip{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#f4c542,#ffdf7a,#f4c542);
}

/* title styling */

.product-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:26px;
  font-weight:700;
}

/* icon badge */

.product-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  background:#f7faff;
  border:1px solid #e6eef8;
  border-radius:12px;
  font-size:22px;
}

/* spec cards upgrade */

.spec-grid div{
  background:#f7faff;
  padding:16px;
  border-radius:12px;
  border:1px solid #e6eef8;
  transition:.25s;
}

.spec-grid div:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border-color:#f4c542;
}

/* better paragraph spacing */

.product-detail-box p{
  font-size:15.5px;
  line-height:1.8;
  color:#555;
}

/* smoother hover */

.product-detail-box{
  transition:all .35s cubic-bezier(.2,.8,.2,1);
}

/* mobile polish */

@media(max-width:768px){
  .product-title{
    font-size:22px;
  }
}
/* ===== PRODUCT SPLIT ULTRA (BIG UPGRADE) ===== */

.product-split{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:40px;
  align-items:center;
}

/* left image */

.product-media{
  position:relative;
}

.product-media img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
  transition:.4s;
}

.product-detail-box:hover .product-media img{
  transform:scale(1.04);
}

/* right content */

.product-content{
  position:relative;
}

/* stronger card feel */

.product-detail-box{
  padding:34px;
}

/* mobile */

@media(max-width:900px){
  .product-split{
    grid-template-columns:1fr;
    gap:25px;
  }

  .product-media img{
    height:220px;
  }
}
/* ===== FINAL PREMIUM POLISH ===== */

/* better spacing container */

.product-details-ultra .container{
  max-width:1100px;
}

/* split layout strong */

.product-split{
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:48px;
  align-items:start;
}

/* image control */

.product-media img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 30px 70px rgba(0,0,0,0.18);
}

/* description */

.product-desc{
  margin-bottom:18px;
}

/* spec cards PREMIUM */

.spec-card{
  background:#f7faff;
  padding:16px;
  border-radius:14px;
  border:1px solid #e6eef8;
  transition:.25s;
}

.spec-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,0.10);
  border-color:#f4c542;
}

/* improve grid look */

.spec-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

/* MOBILE FIX (VERY IMPORTANT) */

@media(max-width:900px){
  .product-split{
    grid-template-columns:1fr;
    gap:24px;
  }

  .product-media img{
    height:200px;
  }

  .spec-grid{
    grid-template-columns:1fr;
  }
}
.product-detail-box{
  margin-bottom:60px;
}
/* ===== QUICK CONNECT BAR ===== */

.quick-connect-bar{
  background:#ffffff;
  color:#173f6b; /* your brand blue */
  padding:6px 0;
  font-size:14px;
  font-weight:600;
  border-bottom:1px solid #e6eaf0; /* subtle premium divider */
}

.qc-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ===== GLASS PREMIUM SOCIAL ICONS â€” FIXED ===== */

.qc-right a{
  margin-left:10px;
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:10px;
  font-size:15px;

  /* ðŸ”¥ better glass for white background */
  background:rgba(23,63,107,0.08);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(23,63,107,0.15);

  /* ðŸ”¥ icon visible */
  color:#173f6b;

  transition:all .35s cubic-bezier(.2,.8,.2,1);
  position:relative;
  overflow:hidden;
}

/* ensure icon color */

.qc-right a i{
  color:#173f6b;
}

/* subtle shine */

.qc-right a::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.6),
    transparent 80%
  );
  opacity:0;
  transition:.4s;
}

/* ===== HOVER ULTRA PREMIUM ===== */

.qc-right a:hover{
  transform:translateY(-3px) scale(1.06);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  border-color:#f4c542;
}

.qc-right a:hover::before{
  opacity:.6;
}

/* brand hover colors */

.qc-right a:hover .fa-facebook-f{
  color:#1877f2;
}

.qc-right a:hover .fa-instagram{
  color:#e1306c;
}

/* ===== MOBILE ===== */

@media(max-width:600px){
  .qc-inner{
    flex-direction:column;
    gap:4px;
    text-align:center;
  }
}


/* ===== HERO OVERLAY — PREMIUM FIX ===== */

.page-hero-overlay{
  position:absolute;
  inset:0;
  z-index:2; /* ⭐ VERY IMPORTANT */

  background:linear-gradient(
    90deg,
    rgba(18,61,107,0.82) 0%,
    rgba(18,61,107,0.60) 45%,
    rgba(18,61,107,0.30) 100%
  );
}

/* ensure text always on top */

.page-hero-content{
  position:relative;
  z-index:3; /* ⭐ VERY IMPORTANT */
  color:#fff;
}

/* content */

.page-hero-content{
  position:relative;
  color:#fff;
  z-index:2;
}

.page-hero-content h1{
  font-size:42px;
  margin-bottom:10px;
  font-weight:800;
}

.page-hero-content p{
  color:#f4c542;
  font-size:18px;
  font-weight:500;
}

/* mobile */

@media(max-width:768px){
  .page-hero{
    height:300px;
  }

  .page-hero-content h1{
    font-size:28px;
  }
}
/* ===== CONTACT PREMIUM ===== */

.contact-premium{
  padding:70px 0;
  background:#f8fafc;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.contact-card{
  background:#ffffff;
  padding:30px 24px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:.3s;
  border:1px solid #eef2f7;
}

.contact-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.contact-icon{
  font-size:32px;
  margin-bottom:12px;
}

.contact-card h3{
  margin-bottom:6px;
  color:#173f6b;
}

.contact-card p{
  color:#555;
  font-weight:500;
}

/* mobile */

@media(max-width:768px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}
/* ===== QUOTE PREMIUM ===== */

.quote-premium{
  padding:80px 0;
  background:#f7f9fc;
}

/* grid */

.quote-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:start;
}

/* LEFT CARD */

.quote-card{
  background:#ffffff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
  border:1px solid #eef2f7;
}

.quote-card h2{
  margin-bottom:6px;
  color:#173f6b;
}

.quote-sub{
  color:#666;
  margin-bottom:24px;
}

/* form */

.quote-form input,
.quote-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #dfe6ee;
  font-size:14px;
  margin-bottom:16px;
  transition:.25s;
}

.quote-form input:focus,
.quote-form textarea:focus{
  outline:none;
  border-color:#173f6b;
  box-shadow:0 0 0 3px rgba(23,63,107,0.08);
}

/* row */

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

/* button */

.quote-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,#173f6b,#245a96);
  color:#fff;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:.3s;
}

.quote-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 35px rgba(23,63,107,0.25);
}

/* RIGHT PANEL */

.quote-trust{
  padding:30px;
}

.quote-trust h3{
  color:#173f6b;
  margin-bottom:16px;
}

.quote-trust ul{
  list-style:none;
  padding:0;
  margin:0 0 20px;
}

.quote-trust li{
  margin-bottom:10px;
  font-weight:500;
  color:#444;
}

.trust-badge{
  background:#fff;
  border:1px solid #e6ecf2;
  padding:14px;
  border-radius:12px;
  font-weight:600;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

/* mobile */

@media(max-width:900px){
  .quote-grid{
    grid-template-columns:1fr;
  }

  .form-row{
    grid-template-columns:1fr;
  }
}
/* ===== FOOTER SOCIAL PREMIUM ===== */

.px-social-row{
  margin-top:14px;
  display:flex;
  gap:12px;
  align-items:center;
}

.px-social-row a{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  text-decoration:none;
  color:#fff;
  font-size:14px;

  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);

  transition:all .25s ease;
}

/* hover premium */

.px-social-row a:hover{
  transform:translateY(-3px);
  background:#f4c542;
  color:#123d6b;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* brand hover colors */

.px-social-row a:hover .fa-facebook-f{ color:#1877f2; }
.px-social-row a:hover .fa-instagram{ color:#e1306c; }
.px-social-row a:hover .fa-linkedin-in{ color:#0a66c2; }
/* ===== MOBILE NAV FIX ===== */

@media(max-width:900px){

  .nav-wrapper{
    flex-direction:column;
    gap:12px;
  }

  .menu{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
  }

  .menu a{
    font-size:14px;
  }

  .logo-block img{
    height:55px;
  }
}
/* ===== HERO RESPONSIVE ===== */

@media(max-width:768px){

  h1{font-size:28px !important;}
  h2{font-size:24px !important;}
  h3{font-size:20px !important;}

  section{
    padding:45px 0;
  }

}
/* ===== QUICK BAR MOBILE ===== */

@media(max-width:600px){

  .qc-inner{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }

  .qc-right{
    justify-content:center;
  }
}
/* ============================= */
/* MOBILE HAMBURGER MENU */
/* ============================= */

/* hide toggle on desktop */
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#123d6b;
  border-radius:3px;
  transition:.3s;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  /* show hamburger */
  .menu-toggle{
    display:flex;
  }

  /* hide menu initially */
  .menu{
    position:absolute;
    top:100%;
    right:0;
    background:#f4c542;
    width:220px;
    flex-direction:column;
    gap:0;
    padding:15px 0;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
  }

  /* menu items */
  .menu li{
    padding:10px 20px;
  }

  /* when active */
  .menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
}
/* ===============================
   MOBILE MENU — FINAL RESPONSIVE
   =============================== */

/* hamburger hidden on desktop */
.menu-toggle{
  display:none;
  width:32px;
  cursor:pointer;
  flex-direction:column;
  gap:5px;
}

.menu-toggle span{
  height:3px;
  background:#123d6b;
  border-radius:3px;
  display:block;
}

/* ===== MOBILE ONLY ===== */
@media (max-width:768px){

  /* show hamburger */
  .menu-toggle{
    display:flex;
  }

  /* hide desktop menu */
  .menu{
    position:absolute;
    top:100%;
    right:0;
    width:220px;
    background:#f4c542;
    flex-direction:column;
    gap:0;
    padding:15px 0;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    border-radius:0 0 10px 10px;

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:.3s;
    z-index:999;
  }

  /* when active */
  .menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .menu li{
    padding:10px 20px;
  }

  .menu a{
    display:block;
    width:100%;
  }

  /* header positioning fix */
  header{
    position:relative;
  }

  /* logo smaller on mobile */
  .logo-block img{
    height:55px;
  }
}
/* ===============================
   GLOBAL MOBILE POLISH
   =============================== */

@media (max-width:768px){

  section{
    padding:40px 0;
  }

  h1{font-size:28px;}
  h2{font-size:24px;}
  h3{font-size:20px;}

  .container{
    width:94%;
  }

  /* fix hero text overflow */
  .hero,
  .about-hero{
    text-align:center;
    padding:0 15px;
  }

  /* product cards spacing */
  .product-detail-box{
    padding:22px;
  }

  /* footer spacing */
  footer{
    text-align:left;
  }
}
/* ===== HEADER FIX ===== */

.nav-wrapper{
  position:relative;
}

/* ===== HAMBURGER ===== */

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#123d6b;
  border-radius:3px;
  transition:.3s;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  /* show hamburger */
  .menu-toggle{
    display:flex;
  }

  /* hide desktop menu */
  .menu{
    position:absolute;
    right:15px;
    top:100%;
    background:#f4c542;
    width:220px;
    flex-direction:column;
    padding:18px;
    gap:16px;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,0.18);

    /* hidden by default */
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s ease;
    z-index:9999;
  }

  /* show when active */
  .menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  /* spacing fix */
  .menu li{
    list-style:none;
  }

}
/* ===============================
   MOBILE MENU FIX (RIGHT SIDE)
================================ */

/* default desktop */

.menu-toggle{
  display:none;
  width:32px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  height:3px;
  background:#123d6b;
  margin:6px 0;
  border-radius:3px;
  transition:.3s;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px){

  .nav-wrapper{
    position:relative;
  }

  /* SHOW hamburger on right */

  .menu-toggle{
    display:block;
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:1001;
  }

  /* hide desktop menu */

  .menu{
    position:absolute;
    top:100%;
    right:0;
    background:#f4c542;
    width:220px;
    flex-direction:column;
    padding:20px;
    gap:18px;
    display:none;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    border-radius:10px;
  }

  /* when open */

  .menu.active{
    display:flex;
  }
}
/* PREMIUM SLIDER FADE */
#heroSlider .slide{
  transition: opacity 1.2s ease-in-out;
}
/* ===== HOME SLIDER FIX ===== */

.hero,
.home-slider,
.slider-section {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  margin: 0;
  padding: 0;
}
/* ===== REMOVE WHITE GAP FROM SLIDER ===== */
.hero-slider{
  padding:0 !important;
  margin:0 !important;
}
/* ================================
   ULTRA PREMIUM PETOLIX STRIP
================================ */

.petolix-about-strip{
  background: linear-gradient(135deg,#d4a90a,#f4c542);
  padding:10px 20px 120px; /* ⭐ top | left-right | bottom */
  position:relative;
  overflow:hidden;
}

/* soft glow background */
.petolix-about-strip::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:#ffffff;
  opacity:.08;
  filter:blur(120px);
  top:-150px;
  right:-150px;
  border-radius:50%;
}

/* glass premium card */
.petolix-card{
  background:rgba(255,255,255,0.18);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.35);
  border-radius:22px;
  padding:55px 50px;
  box-shadow:0 30px 80px rgba(0,0,0,0.18);
  max-width:1100px;
  margin:auto;margin:40px auto;
}

/* title upgrade */
.petolix-title{
  text-align:center;
  font-size:42px;
  font-weight:800;
  color:#0b1e3c;
  margin-bottom:28px;
  letter-spacing:.5px;
}

/* text polish */
.petolix-text{
  font-size:17px;
  line-height:1.9;
  color:#0f172a;
  margin-bottom:22px;
  text-align:left;
}

/* premium highlight box */
.petolix-highlight-box{
  margin-top:28px;
  background:#0b1e3c;
  color:#fff;
  padding:18px 24px;
  border-radius:12px;
  font-weight:600;
  text-align:center;
  box-shadow:0 15px 40px rgba(11,30,60,0.35);
}

/* mobile */
@media(max-width:768px){

  .petolix-card{
    padding:35px 22px;
  }

  .petolix-title{
    font-size:26px;
  }

  .petolix-text{
    font-size:15px;
  }
}
/* =================================
   LEVEL MAX — PETOLIX PREMIUM
================================= */

/* animated gold shine */
.petolix-card{
  position:relative;
  overflow:hidden;
}

.petolix-card::after{
  content:"";
  position:absolute;
  top:-120%;
  left:-40%;
  width:60%;
  height:300%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transform:rotate(25deg);
  animation:shineMove 6s linear infinite;
}

@keyframes shineMove{
  0%{left:-40%;}
  100%{left:140%;}
}

/* premium divider */
.petolix-divider{
  width:90px;
  height:4px;
  background:linear-gradient(90deg,#0b1e3c,#f4c542);
  margin:18px auto 30px;
  border-radius:4px;
}

/* trust badges */
.petolix-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin:30px 0 10px;
}

.petolix-badges span{
  background:rgba(11,30,60,.08);
  padding:10px 16px;
  border-radius:30px;
  font-weight:600;
  font-size:14px;
  color:#0b1e3c;
  border:1px solid rgba(11,30,60,.15);
}

/* floating particles background */
.petolix-about-strip::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.15) 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12) 2px, transparent 2px),
    radial-gradient(circle at 60% 20%, rgba(255,255,255,.10) 2px, transparent 2px);
  animation:floatBg 18s linear infinite;
  pointer-events:none;
}

@keyframes floatBg{
  from{transform:translateY(0);}
  to{transform:translateY(-40px);}
}

/* smooth entrance */
.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:all .9s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* mobile polish */
@media(max-width:768px){
  .petolix-badges{
    gap:8px;
  }

  .petolix-badges span{
    font-size:12px;
    padding:8px 12px;
  }
}
/* =================================
   PREMIUM TRUST BAND
================================= */

.trust-band{
  background:#f8fafc;
  padding:80px 20px;
}

.trust-box{
  background:#ffffff;
  border-radius:20px;
  padding:50px 45px;
  box-shadow:0 25px 70px rgba(0,0,0,0.08);
  max-width:1100px;
  margin:auto;
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* subtle top accent */
.trust-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;
  background:linear-gradient(90deg,#123d6b,#f4c542);
}

.trust-title{
  font-size:34px;
  color:#0b1e3c;
  margin-bottom:18px;
  font-weight:800;
}

.trust-text{
  font-size:17px;
  line-height:1.8;
  color:#475569;
  max-width:900px;
  margin:0 auto 35px;
}

/* stats row */
.trust-stats{
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}

.trust-stat h3{
  font-size:34px;
  color:#123d6b;
  margin-bottom:5px;
}

.trust-stat span{
  font-size:14px;
  color:#64748b;
  font-weight:600;
}

/* mobile */
@media(max-width:768px){

  .trust-box{
    padding:35px 20px;
  }

  .trust-title{
    font-size:24px;
  }

  .trust-text{
    font-size:15px;
  }

  .trust-stats{
    gap:25px;
  }
}
/* =================================
   GLOBAL EXPORT MAP — PREMIUM
================================= */

.export-map-section{
  background:linear-gradient(135deg,#0b2545,#071a30);
  padding:90px 20px;
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.export-map-title{
  font-size:40px;
  margin-bottom:15px;
  font-weight:800;
}

.export-map-text{
  max-width:850px;
  margin:0 auto 50px;
  line-height:1.8;
  opacity:.9;
}

.export-map-wrapper{
  position:relative;
  max-width:900px;
  margin:auto;
}

.export-map-img{
  width:100%;
  opacity:.35;
  filter:brightness(1.2);
}

/* glowing export dots */

.map-dot{
  position:absolute;
  width:14px;
  height:14px;
  background:#f4c542;
  border-radius:50%;
  box-shadow:0 0 0 rgba(244,197,66,.7);
  animation:pulseMap 2s infinite;
}

/* locations (you can adjust later) */
.dot1{top:42%; left:48%;} /* India */
.dot2{top:38%; left:65%;} /* Asia */
.dot3{top:35%; left:30%;} /* Europe */
.dot4{top:55%; left:55%;} /* Middle East */

@keyframes pulseMap{
  0%{box-shadow:0 0 0 0 rgba(244,197,66,.7);}
  70%{box-shadow:0 0 0 14px rgba(244,197,66,0);}
  100%{box-shadow:0 0 0 0 rgba(244,197,66,0);}
}

/* mobile */
@media(max-width:768px){
  .export-map-title{
    font-size:26px;
  }
}
/* =================================
   NEXT LEVEL ABOUT SECTION
================================= */

.about-premium{
  background:linear-gradient(180deg,#f8fafc,#eef2f7);
  padding:90px 20px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* image side */
.about-img-wrap{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 35px 90px rgba(0,0,0,.15);
}

.about-img-wrap img{
  width:100%;
  display:block;
  transition:transform .6s ease;
}

.about-img-wrap:hover img{
  transform:scale(1.05);
}

/* floating badge */
.about-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#123d6b;
  color:#fff;
  padding:12px 18px;
  border-radius:30px;
  font-weight:600;
  font-size:14px;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
}

/* content side */
.about-tag{
  color:#e67e22;
  font-weight:700;
  letter-spacing:2px;
  font-size:13px;
}

.about-title{
  font-size:36px;
  margin:12px 0 18px;
  color:#0b1e3c;
  font-weight:800;
}

.about-text{
  color:#475569;
  line-height:1.8;
  margin-bottom:22px;
}

/* feature pills */
.about-features{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}

.about-features span{
  background:#ffffff;
  padding:10px 16px;
  border-radius:30px;
  font-weight:600;
  font-size:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* premium button */
.about-btn{
  display:inline-block;
  background:linear-gradient(135deg,#123d6b,#0b2545);
  color:#fff;
  padding:14px 32px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.about-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 35px rgba(11,30,60,.35);
}

/* mobile */
@media(max-width:768px){
  .about-grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .about-title{
    font-size:26px;
  }
}
/* ================================
   NEXT LEVEL PRODUCTS SECTION
================================ */

.products-premium{
  background:linear-gradient(135deg,#d4a90a,#f4c542);
  padding:90px 20px 100px;
  text-align:center;
}

/* heading */

.products-heading{
  font-size:36px;
  font-weight:800;
  color:#0b1e3c;
  margin-bottom:50px;
  letter-spacing:.5px;
}

/* grid */

.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  max-width:1100px;
  margin:auto;
}

/* card */

.product-card{
  background:rgba(255,255,255,0.92);
  border-radius:22px;
  padding:22px 22px 26px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
  transition:all .45s cubic-bezier(.2,.8,.2,1);
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.6);
}

/* gold top strip */

.product-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#123d6b,#f4c542,#123d6b);
}

/* image wrapper */

.product-img{
  border-radius:16px;
  overflow:hidden;
  margin-bottom:16px;
}

.product-img img{
  width:100%;
  height:190px;
  object-fit:cover;
  transition:transform .6s ease;
}

/* title */

.product-card h3{
  font-size:18px;
  color:#0b1e3c;
  font-weight:700;
}

/* 🔥 HOVER — ULTRA PREMIUM */

.product-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 35px 90px rgba(0,0,0,.18);
}

.product-card:hover img{
  transform:scale(1.08);
}

/* mobile */

@media(max-width:768px){
  .products-heading{
    font-size:26px;
  }
}
.home-hero{
  position:relative;
  height:65vh;
  min-height:520px;
  overflow:hidden;
}

/* MOBILE FIX — VERY IMPORTANT */
@media(max-width:768px){
  .home-hero{
    height:55vh;
    min-height:380px;
  }
}
/* mobile safety — content always visible */
@media(max-width:768px){
  .fade-up{
    opacity:1 !important;
    transform:none !important;
  }
}
/* ===== MOBILE SAFETY (CRITICAL) ===== */

@media (max-width:768px){
  .fade-up{
    opacity:1 !important;
    transform:none !important;
  }
}
/* ===== CONTINUOUS AUTO SLIDER ===== */

.products-slider{
  display:flex;
  gap:30px;
  overflow:hidden;
  position:relative;
}

.product-slide{
  min-width:260px;
  background:#ffffff;
  border-radius:22px;
  padding:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
  text-align:center;
  transition:.4s;
}

.product-slide img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:12px;
}

.product-slide:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:0 35px 90px rgba(0,0,0,.18);
}
.products-slider{
  display:flex;
  gap:30px;
  overflow:hidden;
  position:relative;
  padding:0 40px; /* ⭐ NEW — side breathing space */
}
.products-premium{
  position:relative;
  overflow:hidden;
}

.products-premium::before,
.products-premium::after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:100%;
  z-index:2;
  pointer-events:none;
}

.products-premium::before{
  left:0;
  background:linear-gradient(to right,#f4c542,transparent);
}

.products-premium::after{
  right:0;
  background:linear-gradient(to left,#f4c542,transparent);
}
/* ===== FOOTER PREMIUM (moved from inline HTML) ===== */
.px-footer{
  background: linear-gradient(135deg,#0b2545,#071a30);
  color:#fff;
  padding:60px 0 30px;
  font-family:'Poppins',sans-serif;
}
.px-footer .container{
  width:92%;
  max-width:1200px;
  margin:auto;
}
.px-footer-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
  align-items:start;
}
.px-footer h3{
  font-size:18px;
  margin-bottom:20px;
  position:relative;
  padding-bottom:10px;
}
.px-footer h3:after{
  content:'';
  width:40px;
  height:3px;
  background:#f4c542;
  position:absolute;
  left:0;
  bottom:0;
}
.px-footer p{
  line-height:1.7;
  opacity:.9;
  font-size:14px;
}
.px-contact-item{
  margin:10px 0;
  font-size:14px;
}
.px-footer-links a{
  display:block;
  color:#fff;
  text-decoration:none;
  margin-bottom:8px;
  font-size:14px;
  opacity:.9;
}
.px-footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}
.px-footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  font-size:13px;
  opacity:.8;
}
.px-whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25d366;
  color:#fff;
  padding:14px 18px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  z-index:9999;
  font-size:14px;
  transition: transform 0.2s;
}
.px-whatsapp:hover{
  transform:translateY(-2px);
}

/* ============================================================
   PETOLIX EXPORTS — INTERNATIONAL UPGRADE CSS
   All new sections added below existing styles
   ============================================================ */

/* ── TOPBAR ENHANCED ── */
.topbar {
  background: var(--primary, #123d6b);
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
  letter-spacing: .3px;
}
.topbar a { color: #f4c542; text-decoration: none; font-weight: 600; }

/* ── ACTIVE NAV LINK ── */
.menu a.active {
  border-bottom: 2px solid #123d6b;
  padding-bottom: 2px;
}

/* ── SLIDE CTA BUTTON (product slider) ── */
.product-slide { position: relative; overflow: hidden; }
.product-slide a.slide-cta {
  display: block;
  background: #123d6b;
  color: #fff;
  text-align: center;
  padding: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 16px 16px;
  transition: background .2s;
}
.product-slide a.slide-cta:hover { background: #0a2a4a; }

/* ── WHY-CHOOSE ICON ── */
.why-card h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.why-icon { font-size: 20px; flex-shrink: 0; }

/* ── SCREEN-READER ONLY (hidden H1 for SEO) ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── HERO SLIDE TRANSITION ── */
.slide { transition: opacity 1s ease; }

/* ── CERTIFICATIONS STRIP ── */
.cert-strip {
  background: #f4f7fb;
  padding: 28px 0;
  border-top: 1px solid #e6eef8;
  border-bottom: 1px solid #e6eef8;
}
.cert-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #123d6b;
}
.cert-item .cert-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid #e0ebf8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
}
@media (max-width: 600px) {
  .cert-strip-inner { gap: 18px; }
  .cert-item { font-size: 12px; }
}

/* ── TESTIMONIALS SECTION ── */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f0f4fa, #fff);
}
.testimonials-section h2 {
  text-align: center;
  color: #123d6b;
  font-size: 32px;
  margin-bottom: 10px;
}
.testimonials-section .section-sub {
  text-align: center;
  color: #777;
  font-size: 15px;
  margin-bottom: 50px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,.07);
  border: 1px solid #eef2f7;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 60px;
  color: #f4c542;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .5;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  margin-top: 20px;
}
.testimonial-stars {
  color: #f4c542;
  font-size: 16px;
  margin-bottom: 14px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #123d6b, #1a5ea8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.author-info .name {
  font-size: 14px;
  font-weight: 700;
  color: #123d6b;
}
.author-info .role {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}
.author-flag { font-size: 18px; margin-left: auto; }

/* ── PROCESS SECTION (How We Work) ── */
.process-section {
  padding: 80px 0;
  background: #fff;
}
.process-section h2 {
  text-align: center;
  color: #123d6b;
  font-size: 32px;
  margin-bottom: 10px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 50px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #f4c542, #123d6b);
  z-index: 0;
}
@media (max-width: 768px) { .process-grid::before { display: none; } }
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #123d6b, #1a5ea8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 25px rgba(18,61,107,.3);
  border: 4px solid #fff;
}
.process-step h3 {
  font-size: 16px;
  color: #123d6b;
  margin-bottom: 8px;
  font-weight: 700;
}
.process-step p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ── COUNTRIES WE EXPORT TO ── */
.countries-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0b2545, #123d6b);
  color: #fff;
  text-align: center;
}
.countries-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.countries-section .section-sub {
  opacity: .85;
  font-size: 15px;
  margin-bottom: 40px;
}
.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.country-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: .2s;
}
.country-tag:hover {
  background: #f4c542;
  color: #123d6b;
  border-color: #f4c542;
}

/* ── ABOUT PAGE: TEAM/COMPANY STORY ── */
.company-story {
  padding: 70px 0;
  background: #f9fbff;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) { .story-grid { grid-template-columns: 1fr; } }
.story-content h2 {
  color: #123d6b;
  font-size: 30px;
  margin-bottom: 18px;
}
.story-content p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 16px;
}
.story-highlight {
  background: #fff;
  border-left: 4px solid #f4c542;
  padding: 18px 20px;
  border-radius: 0 12px 12px 0;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: #123d6b;
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.story-stat-box {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.07);
  border: 1px solid #eef2f7;
}
.story-stat-box .num {
  font-size: 36px;
  font-weight: 800;
  color: #123d6b;
  display: block;
}
.story-stat-box .label {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* ── CONTACT PAGE: ENHANCED ── */
.contact-info-section {
  padding: 70px 0;
  background: #fff;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 768px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-details h2 {
  color: #123d6b;
  font-size: 28px;
  margin-bottom: 24px;
}
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.detail-icon {
  width: 48px;
  height: 48px;
  background: #f4f7fb;
  border: 2px solid #e0ebf8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.detail-text strong {
  display: block;
  color: #123d6b;
  font-size: 15px;
  margin-bottom: 4px;
}
.detail-text a, .detail-text span {
  color: #555;
  font-size: 14px;
  text-decoration: none;
}
.detail-text a:hover { color: #123d6b; text-decoration: underline; }
.contact-map-box {
  background: #f4f7fb;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0ebf8;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #888;
}
.contact-map-box .map-placeholder {
  font-size: 48px;
  margin-bottom: 8px;
}

/* ── PRODUCTS PAGE: SPEC TABLE ENHANCEMENT ── */
.spec-card h4 { color: #123d6b; font-size: 13px; margin-bottom: 4px; font-weight: 700; }
.spec-card p  { color: #444; font-size: 13px; line-height: 1.5; }

/* ── MOBILE GLOBAL POLISH ── */
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .countries-grid { gap: 8px; }
  .country-tag { font-size: 12px; padding: 6px 14px; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

