

/* ---------- Reset & Variables ---------- */
:root{
  --bg: #f6f8fb;
  --surface: #ffffff;
  --muted: #6b7280;
  --text: #0f172a;
  --primary: #0b74ff;
  --accent: #00c896;
  --radius: 12px;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}

/* ---------- Layout helpers ---------- */
.container{max-width:1140px;margin:0 auto;padding:0 20px}

/* ---------- Header / Nav ---------- */
.site-header{background:var(--surface);box-shadow:0 6px 18px rgba(12,15,30,0.06);position:sticky;top:0;z-index:60}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.logo{display:flex;align-items:center;gap:10px}
.logo-icon{width:40px;height:40px;object-fit:contain}
.brand{font-size:18px;color:var(--primary)}
.brand strong{font-weight:700;color:#08397a}

.main-nav{display:flex;gap:14px;align-items:center}
.main-nav .nav-link{color:#344054;text-decoration:none;padding:8px 10px;border-radius:8px;transition:all .18s}
.main-nav .nav-link:hover{background:rgba(11,116,255,0.08);color:var(--primary)}
.main-nav .active{color:var(--primary);font-weight:600}
.btn{display:inline-block;padding:8px 14px;border-radius:10px;text-decoration:none;font-weight:600}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{transform:translateY(-2px)}
.btn-outline{border:1px solid rgba(12,15,30,0.06);background:transparent;color:var(--text)}

/* Mobile nav toggle */
.nav-toggle{display:none;background:transparent;border:0;font-size:20px;color:#344054}

/* ---------- Hero ---------- */
.hero{padding:70px 0;background:linear-gradient(180deg, rgba(11,116,255,0.95), rgba(0,198,255,0.9));color:#fff;text-align:center;border-bottom:1px solid rgba(255,255,255,0.06)}
.hero h1{font-size:40px;line-height:1.05;margin-bottom:14px}
.lead{color:rgba(255,255,255,0.9);max-width:820px;margin:0 auto 20px}
.hero-cta .btn{margin:0 8px}

/* ---------- features ---------- */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:34px;padding:36px 0}
.feature{background:var(--surface);padding:22px;border-radius:12px;text-align:center;box-shadow:0 6px 20px rgba(12,15,30,0.04)}
.feature i{color:var(--primary);margin-bottom:10px}

/* ---------- Card Grid ---------- */
.section-title{text-align:center;margin:30px 0 8px;font-size:22px;color:var(--text)}
.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:18px;margin:18px 0}
.card{display:block;background:var(--surface);padding:18px;border-radius:12px;text-align:center;text-decoration:none;color:var(--text);box-shadow:0 8px 24px rgba(12,15,30,0.04);transition:transform .18s,box-shadow .18s}
.card img{width:72px;height:72px;object-fit:contain;margin-bottom:12px}
.card h4{font-size:16px}
.card:hover{transform:translateY(-8px);box-shadow:0 14px 40px rgba(12,15,30,0.08)}

/* ---------- Page hero / categories ---------- */
.page-hero{padding:36px 0;text-align:center}
.categories{padding:20px 0}

/* ---------- Affiliations / marquee ---------- */
.affiliations{padding:20px 0}
.marquee{overflow:hidden;border-radius:10px;background:var(--surface);padding:14px 10px}
.marquee-track{display:flex;gap:40px;align-items:center;white-space:nowrap;animation:marquee 18s linear infinite}
.marquee-track img{height:48px;width:auto;opacity:.95;filter:grayscale(0.04) contrast(.95)}
.marquee:hover .marquee-track{animation-play-state:paused}

@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ---------- Contact grid ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 320px;gap:28px;padding:26px 0}
.contact-form{background:var(--surface);padding:20px;border-radius:12px;box-shadow:0 10px 30px rgba(12,15,30,0.05)}
.contact-form label{display:block;margin-bottom:12px;color:var(--muted);font-size:14px}
.contact-form input, .contact-form textarea{width:100%;padding:10px;border:1px solid #e6e9ef;border-radius:8px;margin-top:6px}
.contact-info{background:var(--surface);padding:20px;border-radius:12px;box-shadow:0 10px 30px rgba(12,15,30,0.05)}

/* ---------- Footer ---------- */
.site-footer{background:#091428;color:#c6d0df;padding:36px 0;margin-top:40px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr 300px;gap:20px;align-items:start}
.footer-about p{color:#a9b3c2}
.footer-links a{display:block;color:#b9c3d4;text-decoration:none;margin:6px 0}
.footer-contact p{margin:6px 0}
.footer-bottom{text-align:center;padding:16px 0;border-top:1px solid rgba(255,255,255,0.03);margin-top:20px;color:#92a0b6}

/* ---------- social icons ---------- */
.social-icons{margin-top:10px}
.social-icons a{display:inline-block;margin-right:10px;color:#c2d2e6;font-size:20px;text-decoration:none;transition:transform .16s,color .16s}
.social-icons a:hover{color:var(--primary);transform:translateY(-3px)}

/* ---------- responsive ---------- */
@media (max-width:900px){
  .features{grid-template-columns:repeat(1,1fr)}
  .footer-grid{grid-template-columns:1fr;gap:16px}
  .contact-grid{grid-template-columns:1fr}
}

@media (max-width:760px){
  .nav-toggle{display:block}
  .main-nav{position:fixed;right:0;top:0;bottom:0;width:260px;background:var(--surface);padding:80px 20px;transform:translateX(110%);transition:transform .18s;flex-direction:column;gap:12px;box-shadow:-8px 0 30px rgba(12,15,30,0.08)}
  .main-nav.open{transform:translateX(0)}
  .main-nav .btn-primary{margin-top:8px}
}

/* small screens: adjust hero */
@media (max-width:520px){
  .hero h1{font-size:28px}
  .hero{padding:48px 0}
  .logo-icon{width:34px}
}



/* Products Page */
.products-hero {
  background: url("image/our1.jpg") no-repeat center center/cover;
  /* 👆 replace products-bg.jpg with your actual image file */
  
  color: rgb(6, 6, 6);              /* make text white for contrast */
  text-align: center;        /* center text */
  padding: 100px 20px;       /* space around text */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 800px;
  
}

.products-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* readability */
}

.products-hero p {
  font-size: 20px;
  max-width: 700px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6); /* readability */
}


.products-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.products-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.product-card a {
  text-decoration: none;
  font-weight: 600;
  color: #0077ff;
  font-size: 18px;
}

.product-card a:hover {
  color: #0056cc;
}


/*FOOTER FIXING /*

/* Make footer always at bottom */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.footer {
  background: #0d1b2a;
  color: #ddd;
  padding: 40px 60px;
  margin-top: auto;  /* pushes footer down */
}

/*carrer page style */
/* Careers Page */
.careers-section {
  padding: 60px;
  max-width: 1000px;
  margin: auto;
}

.careers-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.job-card, .apply-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.job-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #0077ff;
}

.job-card p {
  margin: 6px 0;
  color: #444;
}

.apply-card {
  background: #eaf3ff;
  border-left: 4px solid #0077ff;
}

.apply-card a.apply-btn {
  display: inline-block;
  background: #0077ff;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  margin-top: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.apply-card a.apply-btn:hover {
  background: #005fcc;
}


/*about us */

/* About Us Page */
.about-hero {
  background: linear-gradient(to right, #0077ff, #00c6ff);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
}

.about-overview {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  line-height: 1.7;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Mission, Vision, Values */
.about-details {
  background: #f9f9f9;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.detail-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  flex: 1 1 250px;
  max-width: 320px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.detail-card i {
  font-size: 40px;
  color: #0077ff;
  margin-bottom: 15px;
}

.detail-card h3 {
  margin-bottom: 10px;
}



/* Contact Us PAge */

/* Contact Us Page */
.contact-hero {
  background: linear-gradient(to right, #0077ff, #00c6ff);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
}

.contact-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form h2, .contact-info h2 {
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, 
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.contact-form button {
  background: #0077ff;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0056cc;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-info i {
  color: #0077ff;
  margin-right: 8px;
}

.map-section {
  margin-top: 40px;
}


/* MAin  PAge */

/* Career */
/* Small Hero for Careers */
.small-hero {
  height: 40vh;
  background: linear-gradient(to right, #0077ff, #00c6ff);
}

/* Why Join Us */
.why-join {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.value-card i {
  font-size: 36px;
  color: #0077ff;
  margin-bottom: 15px;
}

.value-card:hover {
  transform: translateY(-5px);
}

/* Job Openings */
.careers-openings {
  padding: 60px 20px;
  text-align: center;
}

.job-card {
  background: white;
  margin: 20px auto;
  padding: 25px;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
}

.job-card h3 {
  margin-bottom: 10px;
  color: #0077ff;
}

.job-card p {
  margin-bottom: 10px;
}


/* general reset */

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Navbar */
header {
  background: #fff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

header .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

header .logo img {
  height: 40px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav ul li a:hover {
  color: #0078ff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, #0078ff, #00c6ff);
  color: white;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: 0.3s;
  
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 80px;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background: #0a1a2f;
  color: #ddd;
  padding: 50px 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-container h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.footer-container ul {
  list-style: none;
}

.footer-container ul li {
  margin-bottom: 8px;
}

.footer-container ul li a {
  text-decoration: none;
  color: #bbb;
}

.footer-container ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  color: #bbb;
  font-size: 18px;
}

.social-icons a:hover {
  color: #00c6ff;
}

/* Page Content Padding */
main {
  padding: 40px;
}

/* why interested in us changes  */
/* Careers page - Interested section */
.interested-section {
  background: linear-gradient(135deg, #007bff, #00c6ff); /* modern gradient */
  padding: 60px 30px;
  border-radius: 12px;
  margin: 80px auto; /* space from footer */
  text-align: center;
  max-width: 900px;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.interested-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.interested-section p {
  font-size: 18px;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.9);
}

.interested-section a {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #007bff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.interested-section a:hover {
  background: #0056b3;
  color: #fff;
}


/* ADDING AFFILIATIONS */
/* Affiliations */


/* Logistics */
.logistics {
  text-align: center;
  padding: 60px 20px;
  background: #f3f7fc;
}
.logistics h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.logistics p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.icon-circle {
  background: #e6f0ff;
  color: #007bff;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* Hero Section */
.hero {
  background: #444; /* You can replace with gradient or image */
  color: white;
  text-align: center;
  padding: 120px 20px;
  min-height: 100vh; /* Full-screen hero look */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: #66ccff; /* Light blue highlight */
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #eaeaea;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
  background: #0066ff;
  color: #fff;
}

.btn.primary:hover {
  background: #0052cc;
}

.btn.secondary {
  background: #fff;
  color: #333;
}

.btn.secondary:hover {
  background: #f3f3f3;
}
.products {
  padding: 60px 20px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #555;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.subcategory-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.subcategory-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.subcategory-card h3 {
  text-align: center;
  padding: 15px;
  font-size: 18px;
  background: #f9f9f9;
}

.subcategory-card:hover {
  transform: translateY(-6px);
}

.subcategory-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 40px; /* keep h3 visible */
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subcategory-card:hover .overlay {
  opacity: 1;
}

.view-btn {
  background: #0077ff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #0056cc;
}

/*agro produst gridview */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 in a row */
  gap: 30px;
  margin-top: 40px;
}

.subcategory-card {
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.subcategory-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.subcategory-card h3 {
  margin: 15px 0;
}

.subcategory-card:hover {
  transform: translateY(-5px);
}

/* Overlay for VIEW DETAILS */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subcategory-card:hover .overlay {
  opacity: 1;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.modal-content img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}


/* for modal content */
.modal-content {
  position: relative;   /* important so close button positions correctly */
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 500px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

/* Close button as a box */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #ecdcdc;
  cursor: pointer;
  background: #f2ebeb;       /* light grey background for box */
  border-radius: 180%;     /* circular box */
  width: 30px;
  height: 30px;
  line-height: 30px;      /* vertically center the "×" */
  text-align: center;
  box-shadow: 0 2px 5px rgba(232, 51, 51, 0.2);
  transition: all 0.2s ease;
}

.close:hover {
  background:#e0e2f0 ;
  color: #d4d6e0;
}

/*Button */
/* Background for the whole section */
/* Background section */


/* Description under heading */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px auto;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}


.back-btn {
  background: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #0056b3;
}
/* Hero Section with Background */
.category-hero {
  background: #f0f4ff;  /* light blue (change to #f8f0ff for light purple) */
  padding: 40px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Back Button */


/* Heading */
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

/* Description */
.hero-content p {
  font-size: 1rem;
  color: #555;
}

.back-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 6px 16px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.back-btn:hover {
  background: #0056b3;
}
.back-btn-container {
  text-align: left;
  margin: 20px 0;
  padding-left: 20px;  /* ✅ adds space from the left side */
}

.back-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.back-btn:hover {
  background: #0056b3;
}
/* Make heading background visible */
.category-hero {
  background-color: #f0f4ff;  /* Light blue background */
  width: 100%;               /* Cover full width */
  padding: 40px 20px;        /* Add breathing space */
  margin-bottom: 20px;
  display: block;
}

/* Keep content aligned inside */
.category-hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.category-hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

/* Small description */
.category-hero p {
  font-size: 1rem;
  color: #555;
}
/* Hero Section with Full-Width Background */
.category-hero {
  background-color: #64b3fe;  /* Light blue (or use #f8f0ff for light purple) */
  width: 100%;               /* Stretch across full width */
  padding: 60px 0;           /* More vertical spacing */
  margin-bottom: 30px;
}

/* Keep text centered inside */
.category-hero .hero-content {
  max-width: 1200px;   /* Controls content width */
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;     /* Side padding so text isn’t glued to edges */
}

/* Heading */
.category-hero h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #222;
}

/* Small description */
.category-hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}
h1, h2, h3 {
  font-weight: 900;   /* extra bold */
  color: #e1dddd;        /* darker shade */
}
/* Who We Are */
.about-overview {
  padding: 70px 10%;
  display: flex;
  align-items:left;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
  margin-left: 0%;
}

.about-text {
  flex: 2;
  text-align:start;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: left;
  color: #333;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 600%;
  max-width: 650px;
  border-radius: 15px;
  height:;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Mission, Vision, Values */
/* Mission, Vision, Values Section */
.about-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 boxes in a row */
  gap: 30px; /* space between them */
  margin: 50px auto;
  max-width: 2000px; /* makes them wider overall */
  padding: 0 20px;
}

.detail-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 260px;      /* makes them taller */
    min-width: 420px;   /* force each box to stretch wider */

}
.detail-card i {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 15px;
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

  /* Rectangle shape */
  height: 920px;   /* not too tall */
  grid-template-columns: repeat(3, 1fr);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.detail-card i {
  font-size: 3rem;
  color: #2563eb; /* nice blue */
  margin-bottom: 15px;
}

.detail-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.detail-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Achievements */
.achievements {
  padding: 80px 10%;
  text-align: center;
  background: #f9f9f9;
}

.achievements h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.achievement-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: scale(1.05);
}

.achievement-card i {
  font-size: 2rem;
  color: #007BFF;
  margin-bottom: 15px;
}

.achievement-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.counter {
  font-size: 2rem;
  font-weight: 900;
  color: #222;
}
.careers {
  padding: 40px;
}

.careers-container {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Left bigger than right */
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.jobs-section h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
}

.job-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.job-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: bold;
}

.job-card p {
  margin: 8px 0;
  color: #444;
}

.interested-box {
  background: #f4f8ff;
  border: 1px solid #dce7ff;
  border-radius: 10px;
  padding: 25px;
}

.interested-box h3 {
  margin-top: 0;
  font-size: 22px;
  font-weight: bold;
}

.interested-box p {
  margin: 10px 0;
  color: #333;
}

.interested-box a {
  color: #eaeef4;
  font-weight: bold;
  text-decoration: none;
}

.apply-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #4579ea; /* nice blue */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.apply-btn:hover {
  background: #1e40af; /* darker blue */
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
  transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 768px) {
  .careers-container {
    grid-template-columns: 1fr; /* stack on small screens */
  }

  
}
.job-card {
  display: block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(187, 20, 20, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #0073ff;
}
.email-text {
  font-size: 18px;
  font-weight: bold;
  color: #e63946; /* red (you can change it to any color) */
  margin-bottom: 12px;
}
.apply-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2563eb; /* blue */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.apply-btn:hover {
  background: #1e40af;
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
  transform: translateY(-2px);
}
/* Hero Section (Global Sourcing Partner) */
/* Hero Section */
.hero {
  padding: 70px 20px;
  background: #f8f9fb;
}



.hero-image {
  flex: 1;
  text-align: center;
  margin-top: -40px; /* moves image upwards */
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px; /* keeps rounded corners */
}




/* Make text area bigger than image */




.hero-image img:hover {
  transform: scale(1.05); /* slight zoom on hover */
}

/* Heading */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* push items to the left */
  gap: 40px; /* space between text and image */
}

.hero-text {
  flex: 1;
  margin-left: 0;     /* remove extra margin */
  padding-left: 40px; /* adjust this number to bring text closer to the edge */
  text-align: left;
}

.hero-text h1 {
  font-size: 48px;          /* make heading big */
  font-weight: 700;         /* bold */
  text-transform: lowercase; /* force small letters */
  margin-left: 0;           /* remove extra space */
  text-align: left;         /* align left */
}
.hero-container {
  justify-content: flex-start; /* push everything to left side */
}



/* Paragraph */
.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #333;
  line-height: 1.8;
  max-width: 600px;
}

/* Features (no box, neat alignment) */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 25px;
}

.hero-features div {
  font-size: 1.15rem;
  color: #0073e6;
  font-weight: 600;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: #0073e6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #005bb5;
}

/* Responsive */
@media (max-width: 768px) {
  
  .hero-text {
    text-align: left;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2.4rem;
  }
}


/* Full-width section styling */

/* Section background */


.logistics-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
}

.logistics-content p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Grid for service cards */
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;  /* space between cards */
}

/* Service card box */
.service-card {
  background: #fff;          /* white card background */
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 200px;              /* control width of cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Circle for icons */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #007bff; /* blue circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.icon-circle i {
  color: #fff;
  font-size: 1.6rem;
}

/* Service text */
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-top: 8px;
}
/* Full-width background */
.logistics-section {
  background: hsl(240, 15%, 94%);   /* blue background */
  padding: 60px 0;
  margin: 0;
  width: 100vw;          /* span full viewport width */
  position: relative;
  left: 50%;             /* break out of parent container */
  transform: translateX(-50%);
  box-sizing: border-box;
}

/* Content inside remains centered */
.logistics-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.section-full {
  text-align: center;   /* centers everything inside */
  margin: 40px 0;
}

.section-full h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;          /* make heading darker & bolder */
}

.affiliation-logo {
  height: 80px;         /* adjust size of logos */
  margin: 0 15px;
  vertical-align: middle;
}
/* Remove default body margin */
body {
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  width: 100%;
  margin: 0;
  padding: 0;         /* remove padding that pushes content inside */
}

/* Container inside hero */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;  /* keeps image + text balanced */
  margin: 0 auto;
  padding: 0;         /* no side padding */
}

/* Text block */
.hero-text {
  flex: 1;
  text-align: left;
  margin: 0;
  padding-left: 0;
}

/* Heading style */
.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 20px 0;
}
.hero-text {
  margin-left: -150px;  /* adjust this number until it aligns perfectly */
  margin-top: -180px;
}




.affiliations h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #222;
}

html, body {
  margin: 0;
  padding: 0;
}

.affiliations {
  text-align: center;
  padding: 50px 0;
  background: #dfe4f6;
  width: 100vw;
  margin: 0;
  position: relative;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

/* Force scroll container to touch edges */
.scroll-container {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Force logos to start from very left */
.scroll-content {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-left 12s linear infinite;
  margin: 0;
  padding-left: 0;   /* ✅ remove left padding */
}

.section-full {
  text-align: center;
  padding: 60px 20px;
  background: repeating-linear-gradient(
    45deg,
    #f9f9f9,
    #f9f9f9 20px,
    #e6f0ff 20px,
    #e6f0ff 40px
  ); /* diagonal stripe pattern */
}

.section-full h2 {
  font-size: 28px;
  margin-bottom: 35px;
  color: #1a237e;
  font-weight: bold;
}

.affiliation-logo {
  height: 90px;
  margin: 0 25px;
  border: none;
  background: transparent;
  box-shadow: none;
  filter: grayscale(30%) brightness(95%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.affiliation-logo:hover {
  filter: none; /* logos become colorful on hover */
  transform: scale(1.1); /* small zoom effect */
}


@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.affiliations {
  width: 100vw;
  margin-left: calc(-50vw + 50%);  /* ✅ pushes it full bleed */
  background: #fafafa;
  padding: 50px 0;
}



.affiliations h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #04040b;
}



.affiliation-logo {
  height: 100px;
  border: none;
  background: transparent;
  box-shadow: none;
  filter: grayscale(20%) brightness(95%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.affiliation-logo:hover {
  filter: none;
  transform: scale(1.15);
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.affiliations h2 {
  margin-left: 0;
  padding-left: 0;
}
.scroll-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;   /* prevents logos from breaking into new lines */
}

.scroll-content {
  display: inline-flex;  /* makes all logos stay in a single row */
  align-items: center;
  gap: 40px;             /* spacing between logos */
  animation: scroll-left 50s linear infinite;
}

.scroll-content img {
  height: 120px;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;        /* prevents logos from squishing */
}
/*video css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #fff;
  background: #faf7f7;
  line-height: 1.5;
}

/* Hero Section */

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark layer for text readability */
  z-index: 1;
}

/* Hero Content */

/* ---------- HERO (paste this at the END of your CSS) ---------- */
.hero {
  position: relative;
  min-height: 80vh;              /* adjust hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* video + overlay stacking */
.hero-video {
  position: absolute;
  top: 0px; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;                       /* top:0;right:0;bottom:0;left:0; */
  background: rgba(0,0,0,0.55);   /* darken video for readability */
  z-index: 1;
}

/* content above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* heading (you have an h1 in HTML) */
.hero-content h1 {
  font-size: 3.5rem;   /* desktop size */
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

/* <-- THIS targets the paragraph you want to resize --> */
.hero-content p {
  font-size: 1.25rem;       /* increase this value to make text bigger */
  line-height: 1.6;         /* better readability */
  color: #e6f0fb;           /* light color for contrast on dark overlay */
  max-width: 760px;
  margin: 0.4rem auto 1.4rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.6rem; }
  .hero-content p  { font-size: 1.05rem; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p  { font-size: 0.95rem; }
}
.hero-content {
  position: relative;
  top: 30px;        /* moves whole block upward */
}
/* Header */
header {
  width: 100%;
  background-color: white;   /* white background */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;   /* more vertical space (top/bottom) */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Logo text */
header .logo {
  font-size: 28px;
  font-weight: bold;
  color: #0a2540;   /* dark blue */
}

/* Navigation */
header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  text-decoration: none;
  color: #0a2540;   /* dark blue links */
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;  /* adds clickable height */
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

header nav ul li a:hover {
  background-color: #0a2540; 
  color: white;   /* invert on hover */
}
/* Footer Styling */
footer {
  background-color: #0a2540; /* dark navy */
  color: white;
  padding: 40px 80px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  margin: 10px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-links h3,
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff;
  border-bottom: 2px solid #f4b400;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #f4b400;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f4b400;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: #ccc;
}
/* Make Quick Links + Products side by side */
.footer-middle {
  display: flex;
  gap: 60px;          /* space between the two lists */
}

.footer-links {
  min-width: 180px;
}

/* Arrows before each link */



.footer-links ul li a::before {
  content: "»";
  color: #f4b400;    /* orange arrow */
  margin-right: 8px;
  font-weight: bold;
}
/* Brand */
.footer-brand h2 {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}





/* General heading color (site-wide) */
h1, h2, h3, h4, h5, h6 {
  color: #112266; /* white for headings */
  font-weight: bold;
}
.hero-title {
  color: #ffffff;        /* white text for header */
  font-size: 48px;    /* adjust size if needed */
  font-weight: bold;
}
.highlight {
  display: block;                 /* puts it on its own line Text for delivering excellence */
  margin-top: -5px;               /* space from the line above */
  font-size: clamp(20px, 6vw, 52px);  /* responsive big size */
  font-weight: 900;               /* very bold */
  color: #33b5ff;                 /* bright blue */
  line-height: 1.1;               /* keeps it compact */
  text-shadow: 0 3px 4px rgba(0,0,0,0.3); /* makes it pop over video */
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  
}




/* Hero section (Products page) text color */
.products-hero h1,
.products-hero p {
  color: white; /* White text on background image */
  text-align: center;
}

/* Footer heading and text color */
.footer h3,
.footer p,
.footer a {
  color: white;
}

/* NEW CONTACT PAGE CSS */
/* ---------------------- Global ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #f8f9fc;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---------------------- Header ---------------------- */
header {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #0073e6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo i {
  color: #0073e6;
}
nav ul {
  display: flex;
  gap: 25px;
}
nav ul li a {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #0073e6;
}

/* Hamburger Menu (mobile) */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* ---------------------- Contact Page ---------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}
h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 32px;
}
p.center {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.contact-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.form-box, .info-box {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.form-box h3, .info-box h3 {
  margin-bottom: 15px;
  color: #0073e6;
}
iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 8px;
}
.info-item {
  margin-bottom: 20px;
}
.info-item strong {
  display: block;
  margin-bottom: 5px;
  color: #222;
}

.map {
  margin-top: 40px;
}
.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display:block;
}

/* ---------------------- Footer ---------------------- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fc;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

p.center {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.contact-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Left Form Box */
.form-box {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 8px;
}

/* Right Info Section (NO background, just text) */
.info-text {
  flex: 1;
  padding: 10px;
  background: none;
  box-shadow: none;
}

.info-text h3 {
  margin-top: 0;
  color: #333;
}

.info-item {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

.info-item i {
  color: skyblue;
  margin-right: 10px;
  font-size: 18px;
}

hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.social-section a {
  margin-right: 15px;
  font-size: 22px;
  color: skyblue;
  transition: 0.3s;
}

.social-section a:hover {
  color: #0077b5; /* Hover LinkedIn blue (others can be styled separately) */
}

.map {
  margin-top: 40px;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}


/* Remove box look completely */
.contact-info {
    background: none;
    box-shadow: none;
    padding: 0;
}

/* Title */
.contact-info h3 {
    color: #0056b3;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Paragraph styling */
.contact-info p {
    margin: 8px 0;
    font-size: 1rem;
    color: #333;
}

/* Blue icons */
.contact-info i {
    color: #0056b3;
    margin-right: 8px;
}

/* Social media links */
.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #0056b3;
    font-size: 1.3rem;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6600; /* orange hover effect */
}
/* Layout */
.contact-section {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-top: 30px;
}

.contact-form {
    flex: 1;
    min-height: 600px;
}

.contact-info {
    flex: 1;
}

/* Title */
.contact-info h3 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Each item */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 32px;   /* big icons */
    color: #0056b3;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.info-item p {
    margin: 3px 0 0;
    color: #555;
    line-height: 1.4;
}

/* Social icons */
.contact-info hr {
    border: none;
    border-top: 2px solid #ddd;
    margin: 20px 0;
}

.social-links h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}

.social-links a {
    color: #0056b3;
    font-size: 1.6rem;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6600;
}
/* Full-width map without touching footer */
.map {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  line-height: 0; /* remove inline gap */
  overflow: hidden;
}

.map iframe {
  width: 100vw;
  height: 420px;   /* adjust height to your needs */
  border: 0;
  border-radius: 0;
  display: block;
  margin: 0;
  padding: 0;
}
/* new header  */
header {
  background: #fff;
  padding: 25px 50px;          /* more top & bottom padding = taller header */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;

  position: fixed;             /* stick to top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* push page content down so it doesn't hide under the header */
body {
  margin: 0;
  padding-top: 120px;   /* increase this to match new header height */
}

header .logo {
  display: flex;
  align-items: center;
  font-size: 26px;      /* bigger text for logo */
  font-weight: bold;
}

header .logo img {
  height: 50px;         /* larger logo image */
  margin-right: 12px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;            /* more spacing between links */
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;      /* bigger links */
}

nav ul li a:hover {
  color: #0078ff;
}
.content, .hero, main, section {
  padding-left: 50px;   /* prevents text from sticking to the edge */
  padding-right: 10px;  /* optional, for balance */
  box-sizing: border-box;
}
.sourcing-heading {
  font-size: 28px;       /* adjust as you like */
  font-weight: 700;
  color: #131314;        /* dark blue just for this heading */
  padding-left: 0%;
  margin-bottom: 15px;
}
/* picture setting */
/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Modal Image */
.modal-content img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  
}


/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #e3d9d9;
  cursor: pointer;
}
.close:hover {
  color: red;
}
/* Main product grid layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 🔹 wider boxes */
  gap: 30px;
  padding: 40px 60px; /* a bit more side padding for breathing space */
  justify-content: center;
}

/* Each product card */
.product-card {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover effect */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Product image */
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

/* Product title */
.product-card h3 {
  font-size: 1.2rem;
  color: #002366;
  margin: 15px 0 20px;
  font-weight: 600;
}

/* Remove underline from links */
.product-card a {
  text-decoration: none;
  color: inherit;
}
/*terms*/
/* Terms Page Styling (fits your existing theme) */

.policy-hero {
  background: #131110;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #0073e6;
}

.policy-hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: #020845;
}

.policy-hero p {
  font-size: 15px;
  color: #090808;
  font-weight: 600;
  margin-top: 6px;
}

.policy-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 25px;
  font-size: 15px;
  color: #010101;
  line-height: 1.75;
}

.policy-container h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  color: #0a2540;
  border-left: 4px solid #0073e6;
  padding-left: 10px;
}

.policy-container p {
  margin: 12px 0;
}

.policy-container ul, 
.policy-container ol {
  margin: 10px 0 18px 25px;
}

.policy-container li {
  margin-bottom: 6px;
}
/*Privacy css */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #e9e8f2, #dfe1e9);
  color: #222;
  line-height: 1.7;
  padding-bottom: 50px;
}

/* Hero Section */
.policy-hero {
  text-align: center;
  padding: 140px 90px;
  margin-top: -25px;
  color: #fff;
  background: rgba(154, 163, 220, 0.35);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(4, 17, 61, 0.3);
}

.policy-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
}

.policy-hero p {
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.9;
}

/* Main Card Container */
.policy-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(246, 246, 246, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  animation: slideUp .8s ease;
  border-left: 6px solid #fff;
  border-right: 6px solid #fff;
}

/* Headings */
.policy-container h2 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #060e42;
  position: relative;
}

.policy-container h2::after {
  content: "";
  width: 55px;
  height: 4px;
  background: #06156a;
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 4px;
}

/* Paragraphs */
.policy-container p {
  font-size: 16px;
  margin-bottom: 14px;
}

/* List style */
.policy-container ul {
  margin-left: 30px;
  margin-bottom: 15px;
}

.policy-container li {
  font-size: 15.5px;
  margin-bottom: 6px;
}

/* Contact box */
pre {
  background: #e8f7ff;
  padding: 14px;
  border-left: 4px solid #008aff;
  border-radius: 6px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}

/* Animation */
@keyframes slideUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .policy-container {
    padding: 28px 20px;
  }

  .policy-hero h1 {
    font-size: 36px;
  }
}
/*new footer css*/
/* -------------------- CUSTOM FOOTER -------------------- */
.custom-footer {
  background: #0b132b;
  color: #eaeaea;
  padding: 60px 40px 20px;
  font-family: "Inter", sans-serif;
}

.custom-footer .footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.custom-footer .footer-logo {
  width: 140px;
  margin-bottom: 12px;
}

.custom-footer .footer-brand p {
  font-size: 14px;
  color: #c8c8c8;
  margin-bottom: 15px;
}

.custom-footer .footer-links h3,
.custom-footer .footer-contact h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.custom-footer .footer-links ul {
  list-style: none;
  padding: 0;
}

.custom-footer .footer-links ul li {
  margin-bottom: 8px;
}

.custom-footer .footer-links ul li a {
  color: #c8c8c8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-footer .footer-links ul li a:hover {
  color: #f4b400;
}

.custom-footer .footer-contact p {
  margin: 6px 0;
  color: #c8c8c8;
  font-size: 15px;
}

.custom-footer .social-icons a {
  display: inline-block;
  color: #ccc;
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.custom-footer .social-icons a:hover {
  color: #f4b400;
  transform: translateY(-3px);
}

.custom-footer .footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .custom-footer .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .custom-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .custom-footer .social-icons a {
    margin: 0 6px;
  }
}
.custom-footer .footer-logo {
  width: 240px;     /* adjust to your liking */
  height: auto;     /* keeps proportions */
  margin-bottom: 18px;
}
.custom-footer .footer-contact i {
  color: #fefefe;          /* light blue accent color */
  margin-right: 10px;      /* space between icon and text */
  font-size: 16px;
  width: 18px;             /* keeps icons aligned */
}
/* Match underline style for Contact Us heading */
.custom-footer .footer-contact h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #f4b400;  /* same color as your brand accent */
}
/* --- Footer Brand Title --- */
.custom-footer .footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;         /* bold */
  margin-top: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero {
  background: #ffffff; /* keep your white background */
  width: 100vw;        /* make section span full viewport width */
  margin-left: calc(-50vw + 50%);  /* realign it with page center */
}
/* Remove the unwanted white gap only between header and hero */
header + .hero {
  margin-top: -48px;
  padding-top: 0;
}
/* Fix footer gap only on Home Page */
.home-page .hero {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.home-page footer {
  margin-top: -37px;
  padding-top: 60px;
}
/* Full-width hero section for Products pages */

.products-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.products-hero p {
  font-size: 18px;
  color: #e9f6ff;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive layout */
@media (max-width: 768px) {
  .products-hero {
    padding: 60px 15px;
  }
  .products-hero h1 {
    font-size: 30px;
  }
  .products-hero p {
    font-size: 16px;
  }
}
.products-hero {
 position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 63vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: -28px;

  background:
    linear-gradient(rgba(224, 227, 233, 0.7), rgba(5, 12, 32, 0.7)),
    url("image/p2.jpg") center/cover no-repeat;
}

.products-hero h1 {
  font-size: 60px;          /* make it large */
  font-weight: 900;         /* boldest weight */
  letter-spacing: 1.5px;    /* spacing for clarity */
  margin-bottom: 90px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4); /* helps text stand out */
}

.products-hero p {
  font-size: 22px;
  font-weight: 500;
  max-width: 800px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  margin-top: -65px;
  margin-bottom: 200px;
}
.about-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 63vh;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin-top: -25px;

  /* 🌆 Background image + dark overlay */
  background:
    linear-gradient(
      rgba(11, 19, 43, 0.7),   /* top: dark navy overlay */
      rgba(11, 19, 43, 0.5)    /* bottom: lighter navy overlay */
    ),
    url("image/p4.jpg") center/cover no-repeat;
}
.about-hero h1 {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  color:  #f1f1f1;
  margin-left: -50px;
}

.about-hero p {
  font-size: 22px;
  font-weight: 500;
  max-width: 800px;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
/*new vision mission*/
.about-details {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 40px;
  background: transparent;
  box-shadow: none;
}

.detail-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* 🔹 Hover effect: zoom + deeper shadow */
.detail-card:hover {
  transform: scale(1.08); /* zoom effect */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 2; /* keeps hovered card above others */
}

.detail-card i {
  font-size: 48px;
  color: #0056ff;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

/* Optional: icon animation on hover */
.detail-card:hover i {
  transform: scale(1.2);
}

.detail-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.detail-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}
.detail-card:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 86, 255, 0.25);
}
.hero.small-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero.small-hero {
  position: relative;
  width: 100%;
  height: 63vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;


  /* 🌈 Full overlay gradient covering the entire image */
  background:
    linear-gradient(
      rgba(11, 19, 43, 0.7),   /* top color: dark navy */
      rgba(11, 19, 43, 0.7)    /* bottom color: same shade */
    ),
    url("image/hand.jpg") center/cover no-repeat;
}


.hero.small-hero h1 {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  color: #e4e8ef;
}

.hero.small-hero p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #f1f1f1;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
.hero {
  height: 75vh;
}
.hero.small-hero {
  position: relative;
  width: 100%;
  min-height: 63vh !important; /* 🔹 forces visible height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(
      rgba(11, 19, 43, 0.7),
      rgba(11, 19, 43, 0.7)
    ),
    url("image/hand.jpg") center/cover no-repeat;
}
/* only affects Contact page */
.contact-page header {
  margin: 0;
  padding: 0;
}

.contact-page .contact-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 63vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: -28px;

  background:
    linear-gradient(rgba(11, 19, 43, 0.7), rgba(11, 19, 43, 0.7)),
    url("image/contactus.jpg") center/cover no-repeat;
}

.contact-page .contact-hero .container {
  background: transparent;
  padding: 60px 20px;
}

.contact-page .contact-hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  color:#ffffff
}

.contact-page .contact-hero p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  color: #e9e9ff;
}
.category-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #0b132b;
  padding: 60px 20px;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: -25px;

  /* 🌈 Elegant navy → white gradient background */
  background: linear-gradient(
    135deg,
    rgba(6, 30, 101, 0.95) 0%,
    rgba(15, 4, 97, 0.3) 100%
    
  );
}

.category-hero .hero-content {
  max-width: 900px;
}

.category-hero h2 {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.category-hero p {
  font-size: 22px;
  line-height: 1.6;
  color: #f1f4f9;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
.category-hero .hero-content {
  max-width: 100%;           /* allow full width */
  width: 100%;               /* take entire space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;       /* center horizontally */
  text-align: center;        /* keep text centered */
}

.category-hero p {
  font-size: 22px;
  line-height: 1.6;
  color: #f1f4f9;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
  width: 100%;               /* full available width */
  max-width: 1200px;         /* optional: prevent overly long lines on huge screens */
  margin: 0 auto;            /* center paragraph */
  white-space: normal;       /* allows wrapping only when needed */
  text-align: center;        /* keeps text centered */
}
/* Center and size container */
.back-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

/* Stylish wide button */
.back-btn {
  display: inline-block;
  background-color: #1e3fa2;        /* dark navy */
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 18px 60px;               /* makes button wider & taller */
  border-radius: 50px;              /* rounded edges */
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 5px 15px rgba(11, 19, 43, 0.3);
  margin-bottom: -220px;
  margin-top: -100px;
}

/* Hover effect */
.back-btn:hover {
  background: linear-gradient(135deg, #1c4ca3, #2b6edc);
  transform: scale(1.05);           /* slight zoom effect */
  box-shadow: 0 8px 20px rgba(252, 253, 255, 0.4);
}
/* The modal container content */
.modal-content {
  position: relative;
  display: inline-block;
}

/* Close icon styling */
.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 48px;              /* make icon big */
  font-weight: 900;
  color: #efefef;               /* white text */
  background: rgba(11, 19, 43, 0.7); /* navy transparent circle */
  width: 55px;
  height: 55px;
  border-radius: 50%;           /* circular shape */
  text-align: center;
  line-height: 55px;            /* centers the × vertically */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

/* Hover effect for the close button */
.close:hover {
  background: #c52c2c;          /* golden-yellow highlight */
  color: #0b132b;               /* dark navy text */
  transform: scale(1.1) rotate(90deg); /* smooth rotation */
  box-shadow: 0 6px 25px rgba(248, 180, 0, 0.6);
}
.zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: inline-block;
  border: 3px solid #1e3fa9;
  box-shadow: 0 0 25px rgba(30, 63, 169, 0.4);
}

.zoom-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  transform-origin: center center;
  cursor: zoom-in;
}

/* hover zoom */
.zoom-container:hover img {
  transform: scale(1.5);
}

/* optional: subtle glow */
.zoom-container:hover {
  box-shadow: 0 0 40px rgba(248, 180, 0, 0.5);
}
#modalImg {
  display: block;
  max-width: 90%;
  height: auto;
  margin: 0 auto 25px auto;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
#modalImg {
  display: block;
  max-width: 90%;
  height: auto;
  margin: 0 auto 25px auto;       /* center image with space below */
  border-radius: 15px;            /* smooth corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* soft shadow */
  border: 3px solid rgba(255, 255, 255, 0.15); /* subtle outline */
  transition: all 0.4s ease;
}

/* Hover effect: elegant zoom + glow */
#modalImg:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(30, 63, 169, 0.5);
  border: 3px solid #1e3fa9; /* subtle blue highlight */
}

/* Logo container */
body.homepage .header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important; /* keep links on right side */
  padding: 10px 40px !important;
  height: auto !important;
  overflow: visible !important;
}

/* Move logo slightly left */
body.homepage .logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  margin-left: -30px !important; /* 👈 move logo left — adjust as needed */
}

/* Logo image */
body.homepage .logo-img {
  width: 220px !important;
  height: auto !important;
  max-height: 100px !important;
  object-fit: contain !important;
}

/* Logo text */
body.homepage .logo-text {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #222 !important;
  margin-left: -70px;
}
/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background-color: #fff;
  height: auto;
  overflow: visible;
}

/* Logo */
.logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  margin-left: -30px !important; /* 👈 move logo left — adjust as needed */
}

/* Logo Image */
.logo-img {
 width: 220px !important;
  height: auto !important;
  max-height: 100px !important;
  object-fit: contain !important;
}

/* Logo Text */
.logo-text {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #222 !important;
  margin-left: -70px;
}


