/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --navy: #003366;
  --soft-blue: #4A90E2;
  --gray: #B0B0B0;
  --green: #008000;
  --offwhite: #F5F5F5;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ---------- header layout ---------- */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* brand left, right-controls right */
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  gap: 12px;
}

/* brand: logo + text */
.brand .brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo { height:56px; width:auto; display:block; }
.company-name { font-size:22px; font-weight:700; color:#111; letter-spacing:1px; }

/* right-controls groups social + hamburger */
.right-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* social (horizontal row on the right) */
.social-media { display:flex; gap:10px; align-items:center; }

/* pill / circle base (re-using your styles) */
.social {
  width:44px; height:44px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration:none;
  overflow:hidden;
}
.social svg { width:20px; height:20px; display:block; fill:#333; transition: fill .12s ease; }
.social:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.social:hover svg { fill: #fff; }

@media (max-width: 900px) {
  .social-media,
  .social {
    display: none;
  }
}


/* menu-bar (bottom nav) */
.menu-bar { background:#0d2233; padding:8px 20px; }
.menu-list { display:flex; gap:18px; list-style:none; margin:0; padding:0; align-items:center; }
.menu-list a { color:#fff; text-decoration:none; font-weight:600; padding:6px 8px; }


/* mobile menu hidden by default */
.mobile-menu { display:none; background:#fff; border-top:1px solid #e6e6e6; padding:12px 20px; }
/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .logo { height:48px; }
  .company-name { font-size:18px; }


.enquiry-btn {
    background-color: #e53e3e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.enquiry-btn:hover {
    background-color: #c53030;
}


/* Hero Section */
.hero {
    background:#0d2233;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: left;
    color: #f3f3f3;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#0d2233;
}

.hero-content {
    position: relative;
    z-index: 1;
}
.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero-top h1 {
    margin: 0;
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}
  
/* Download Catalogue Button */
.download-btn {
    background-color: #e63946;   /* Red */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0 20px 0;
    transition: 0.3s ease;
}

.download-btn:hover {
    background-color: #c72e3a;  /* Darker red */
}


.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: 20px;
    margin-top: 20px;
    display: block;
    line-height: 1.4;
    color: #cacbce;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    background-color: #e53e3e;
    color: #fff;
    border: none;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c53030;
}
/* Hide hero section on screens smaller than 900px (mobile/tablet) */
@media (max-width: 900px) {
    .hero {
        display: none;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    background-color: #1a365d;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2d3748;
}
   * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Section */
.gallery {
  padding: clamp(40px, 6vw, 70px) 20px;
  text-align: center;
  background: #f6f8fc;
}

.gallery h2 {
  margin-bottom: 30px;
  font-size: clamp(22px, 4vw, 32px);
  color: #0a2a66;
}

/* Slider Container */
.slider-container {
  position: relative;
  max-width: 1280px;
  margin: auto;
  padding: 0 clamp(20px, 5vw, 60px);
  overflow: hidden;
}

/* Slider Row */
.slider {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  transition: transform 0.45s ease;
  will-change: transform;
}

/* Card */
.card {
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 340px);
  aspect-ratio: 9 / 16;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift (desktop only) */
@media (hover: hover) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  }
}

/* Image */
.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* Overlay structure */
.overlay-card {
  position: relative;
}

/* Image */
.overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text overlay */
.overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: clamp(6px, 2vw, 10px);
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: linear-gradient(to top, rgba(10,42,102,0.9), rgba(10,42,102,0.6));
}

/* Desktop hover */
@media (hover: hover) {
  .overlay-card:hover .overlay-text {
    background: linear-gradient(to top, #ffb703, #ffd166);
    color: #000;
  }
}

/* Mobile padding tweak */
@media (max-width: 768px) {
  .slider-container {
    padding: 0 20px;
  }

  .overlay-text {
    font-weight: 500;
  }
}
/* Navigation Buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #0a2a66;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav:hover {
  background: #ffb703;
  color: #000;
}

.nav.left { left: 12px; }
.nav.right { right: 12px; }

/* Mobile Tweaks */
@media (max-width: 768px) {
  .nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}


/* Footer */
footer {
    background-color:#0d2233;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    margin-bottom: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e53e3e;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e53e3e;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.vm-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #1a365d;
}

.vm-item.vision {
    border-left-color: #1a365d;
}

.vm-item.mission {
    border-left-color: #e53e3e;
}

.vm-item h2 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 28px;
}

.vm-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}
.product-container {
    background-color: #0d2233;
    border-radius: 20px;
    max-width: 1200px;
    margin: 70px auto;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.bio-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.bio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.bio-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #002B5B;
    margin-bottom: 12px;
}

.bio-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.bio-card a {
    text-decoration: none;
    background: #FFB100;
    padding: 10px 18px;
    display: inline-block;
    border-radius: 8px;
    font-weight: 600;
    color: #111;
}

.bio-card a:hover {
    background: #e09a00;
}
 
/* Floating Enquiry Button */
.floating-enquiry-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #e53e3e;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.floating-enquiry-btn:hover {
    background-color: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 62, 62, 0.4);
}

.enquiry-icon {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 10px;
    }

    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
        margin-top: 15px;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        margin: 10px 0;
    }

    .badges {
        flex-direction: row;
        align-items: center;
    }

    .badge {
        margin: 20px 0;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vm-item {
        padding: 30px;
    }

    .floating-enquiry-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        margin: 5px 0;
    }
}
.header-top{
    display:flex;
    align-items:center;
    gap: 15px

} 

  /* About Hero (same style as catalogue hero) */
 /* Modern Hero */
.about-hero-modern {
    position: relative;
    height: 35vh;
    background:#0d2233;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-hero-content-modern {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeUp 1s ease-out;
}

.about-hero-content-modern h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-hero-content-modern p {
    font-size: 20px;
    opacity: 0.9;
    margin-top: 10px;
}
/* Split Intro Section */
.intro-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 50px;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #002B5B;
}

.intro-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 15px;
    color: #444;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    display: flex;
  padding-left: 100px;
    width: 60%;
    border-radius: 18px;

}
/* Expertise Modern */
.expertise-modern {
    padding: 70px 20px;
    text-align: center;
    background: #f8fafc;
}

.expertise-modern h2 {
    font-size: 34px;
    color: #002B5B;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.exp-card {
    padding: 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    font-size: 18px;
    transition: 0.3s ease;
    font-weight: 600;
}

.exp-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: #002B5B;
    color: #fff;
}
/* Modern Manufacturing */
.manufacturing-wide {
    padding: 80px 5%;
    text-align: center;
}

.manufacturing-wide h2 {
    font-size: 34px;
    color: #002B5B;
}

.manufacturing-wide p {
    max-width: 800px;
    margin: auto;
    font-size: 17px;
    color: #444;
    margin-top: 10px;
}

.manufacturing-img-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.manufacturing-img-row img {
    width: 48%;
    border-radius: 15px;
}
/* Client Section */

.clients-hero {
    position: relative;
    height: 35vh;
    background:#0d2233;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.client-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeUp 1s ease-out;
}

.client-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
}

.client-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-top: 10px;
}
.client-section {
    padding: 80px 20px;
    text-align: center;
}

.client-title {
    font-size: 36px;
    font-weight: 800;
    color: #002B5B;
    margin-bottom: 50px;
}

/* Grid Layout */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

/* Individual Client Box */
.client-item {
    text-align: center;
    transition: 0.3s ease;
    padding: 10px;
}

.client-item img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: 0.3s ease;
}

.client-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1D;
}

/* Hover animations */
.client-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.client-item:hover p {
    color: #FFB100;
}

.client-testimonials {
    padding: 60px 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1f36;
    font-weight: 700;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    border-left: 4px solid #1e88e5; /* blue accent */
  }
  
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 28px rgba(0,0,0,0.12);
  }
  
  .testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #3b3b3b;
  }
  
  .testimonial-card cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    color: #1e88e5;
    font-weight: 600;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 70px 0;
  }
  
  .cta-box {
    text-align: center;
    background: #1e88e5;
    color: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.18);
  }
  
  .cta-box h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  /* ============================
   MOBILE VIEW (max-width: 768px)
   ============================ */
@media (max-width: 768px) {

    .section-title {
      font-size: 26px;
      margin-bottom: 30px;
    }
  
    .testimonial-grid {
      grid-template-columns: 1fr; /* One column on mobile */
      gap: 18px;
    }
  
    .testimonial-card {
      padding: 20px;
      border-radius: 14px;
    }
  
    .testimonial-card p {
      font-size: 15px;
      line-height: 1.6;
    }
  
    .testimonial-card cite {
      font-size: 14px;
    }
  
    /* CTA BOX MOBILE */
    .cta-box {
      padding: 30px 20px;
      border-radius: 14px;
    }
  
    .cta-box h2 {
      font-size: 24px;
      line-height: 1.3;
    }
  
    .cta-box p {
      font-size: 16px;
      margin-bottom: 20px;
    }
  
  }
  
  /* ============================
     VERY SMALL DEVICES (max-width: 480px)
     ============================ */
  @media (max-width: 480px) {
  
    .section-title {
      font-size: 22px;
    }
  
    .testimonial-card {
      padding: 18px;
    }
  
    .cta-box h2 {
      font-size: 22px;
    }
  
    .cta-box p {
      font-size: 15px;
    }
  }
  
  
/* ===== Catalogue Page Styling ===== */

/* Hero Section */
.catalogue-hero {
background: #0d2233;
height: 35vh;
padding: 80px 20px;
text-align: center;
color: #fff;
}

.catalogue-hero h1 {
font-size: 42px;
font-weight: 800;
margin-bottom: 10px;
font-family: 'Montserrat', sans-serif;
}

.catalogue-hero p {
font-size: 18px;
opacity: 0.9;
}

/* Catalogue Grid */
.catalogue-section {
padding: 60px 20px;
background: #f8f9fb;
}

.catalogue-grid {
display: grid;
gap: 30px;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalogue-card {
background: #fff;
padding: 25px;
border-radius: 16px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
opacity: 0;
animation: fadeUp 0.8s forwards;
}

.catalogue-card img {
width: 85px;
margin-bottom: 20px;
}

.catalogue-card h3 {
font-size: 20px;
font-weight: 700;
color: #002B5B;
margin-bottom: 10px;
}

.catalogue-card p {
font-size: 15px;
color: #444;
margin-bottom: 20px;
line-height: 1.5;
}

.catalogue-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

/* Download Button */
.download-btn {
background: #FFB100;
color: #1B1B1D;
padding: 12px 20px;
border-radius: 25px;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
transition: background 0.3s ease, transform 0.2s ease;
box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.download-btn:hover {
background: #e99c00;
transform: translateY(-3px);
}

.pdf-icon {
font-size: 20px;
}

/* Fade Up Animation */
@keyframes fadeUp {
0% { opacity: 0; transform: translateY(25px); }
100% { opacity: 1; transform: translateY(0); }
}

 /*    biology list  */
 .title {
    font-weight:700;
    font-size:20px;
    letter-spacing:-0.2px;
  }
  .controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Enhanced Search Bar */
.search {
    border: 1px solid #dcdcdc;
    padding: 10px 14px;
    margin-left: auto;
    border-radius: 12px;
    min-width: 240px;
    background: #ffffff;
    color: #222;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.06), 
        inset 0 1px 2px rgba(0,0,0,0.05);
}

/* Hover Effect */
.search:hover {
    background: #f9f9f9;
    border-color: #c6c6c6;
}

/* Focus Effect (Modern Glow) */
.search:focus {
    outline: none;
    background: #fff;
    border-color: #3b82f6;      /* Blue accent */
    box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
}

/* Placeholder styling */
.search::placeholder {
    color: #888;
    transition: color 0.2s ease;
}

.search:focus::placeholder {
    color: #bbb;
}

  /* Table wrapper: fixed height with scroll for body only */
  .table-wrap{
    width:100%;
    border-radius:10px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.04);
  }

  table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
    min-width:800px; /* ensures horizontal scroll on very narrow screens */
  }

  thead{
    background:linear-gradient(180deg,#fbfbfb,#f2f4f5);
    position:sticky;
    top:0;
    z-index:3;
    box-shadow:0 2px 0 rgba(0,0,0,0.03) inset;
  }

  thead th{
    text-align:left;
    padding:14px 16px;
    font-weight:700;
    font-size:14px;
    color:#222;
    border-bottom:1px solid rgba(0,0,0,0.04);
  }

  /* set column widths */
  th.col-num{ width:64px; max-width:64px; text-align:center; }
  th.col-code{ width:120px; max-width:120px; text-align:right; }

  tbody {
  display: table;
  width: 100%;
  max-height: 520px;
  overflow-y: auto;
}

  tbody tr{
    display:table;
    table-layout:fixed;
    width:100%;
    background:transparent;
    transition: transform .18s ease, box-shadow .18s ease;
  }

  tbody tr:nth-child(odd){ background: #fff; }
  tbody tr:nth-child(even){ background: #e3e3e3; }


  tbody tr:hover{
    background: var(--row-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2,6,23,0.04);
  }

  td{
    padding:14px 16px;
    font-size:14px;
    color:#000000;
    vertical-align:middle;
    border-bottom:1px solid rgba(148, 133, 133, 0.03);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  td.col-num{
    text-align:center;
    font-weight:700;
    color:var(--accent);
    width:64px;
  }

  td.col-title{

    padding-right:8px;
    white-space:nowrap;
    overflow:visible;
    text-overflow:ellipsis;
 
  }
  /* responsive: make table scroll horizontally on small screens */
  @media (max-width:820px){
    .wrap{ padding:0 12px; }
    thead th.col-title, td.col-title{ white-space:normal; }
    tbody{ max-height:420px; }
    table{ min-width:640px; }
  }

  /* custom scrollbar for the tbody */
  tbody::-webkit-scrollbar{ width:10px; height:10px; }
  tbody::-webkit-scrollbar-thumb{ background:rgba(11,58,58,0.12); border-radius:10px; }
  tbody::-webkit-scrollbar-track{ background:transparent; }

  /* small helper text */
  .legend{ margin-top:10px; color:var(--muted); font-size:13px; }
   /* contact Section */
   .contact-hero {
    background:#0d2233;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f3f3f3;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#0d2233;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}


.hero-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    background-color: #e53e3e;
    color: #fff;
    border: none;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c53030;
}
/* =================contact==================*/
.contact-section {
padding: 60px 5%;
background: #fff;
}
.contact-container {
display: flex;
gap: 50px;
flex-wrap: wrap;
justify-content: space-evenly;                
}
.contact-form {
          flex: 1;
      }
      .contact-form h3 {
          color: #0d2233;
          font-size: 40px;
      }
      .contact-form input,
      .contact-form textarea {
          width: 100%;
          padding: 14px;
          margin: 10px 0;
          border: 1px solid #ccc;
          border-radius: 6px;
      }
      .contact-form textarea {
          height: 150px;
      }
      .btn {
          background: rgba(30, 255, 0, 0.422);
          color: rgb(0, 0, 0);
          padding: 12px 25px;
          border: none;
          cursor: pointer;
          border-radius: 6px;
          font-size: 16px;
      }
      
      /* Right Info */
      .contact-info {
        background: rgba(30, 255, 0, 0.234);
        padding: 30px 35px;
        border-radius:60px;
        box-shadow:0 4px 20px rgba(0,0,0,0.08);
        border:1px solid #f9fafb;
        flex:1;
      }
      .contact-info h2 {
          margin-bottom: 10px;
      }
      .info-list p {
          margin: 10px 0;
      }
      @media(max-width:800px) {

      }
/* phycis */
.title {
font-weight:700;
font-size:20px;
letter-spacing:-0.2px;
}

.controls{
display:flex;
gap:8px;
align-items:center;
}
.search-box {
width: 300px;
padding: 10px;
font-size: 16px;
margin-bottom: 15px;
border: 1px solid #777;
border-radius: 6px;
}




/* Table wrapper: fixed height with scroll for body only */
.table-wrap{
width:100%;
border-radius:10px;
overflow:hidden;
border:1px solid rgba(0,0,0,0.04);
}

table{
width:100%;
border-collapse:collapse;
table-layout:fixed;
min-width:800px; /* ensures horizontal scroll on very narrow screens */
}

thead{
background:linear-gradient(180deg,#fbfbfb,#f2f4f5);
position:sticky;
top:0;
z-index:3;
box-shadow:0 2px 0 rgba(0,0,0,0.03) inset;
}

thead th{
text-align:left;
padding:14px 16px;
font-weight:700;
font-size:14px;
color:#222;
border-bottom:1px solid rgba(0,0,0,0.04);
}

/* set column widths */
th.col-num{ width:64px; max-width:64px; text-align:center; }
th.col-code{ width:120px; max-width:120px; text-align:right; }

tbody {
display: table;
width: 100%;
max-height: 520px;
overflow-y: auto;
}

tbody tr{
display:table;
table-layout:fixed;
width:100%;
background:transparent;
transition: transform .18s ease, box-shadow .18s ease;
}

tbody tr:nth-child(odd){ background: #fff; }
tbody tr:nth-child(even){ background: #e3e3e3; }


tbody tr:hover{
background: var(--row-hover);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(2,6,23,0.04);
}

td{
padding:14px 16px;
font-size:14px;
color:#000000;
vertical-align:middle;
border-bottom:1px solid rgba(148, 133, 133, 0.03);
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}

td.col-num{
text-align:center;
font-weight:700;
color:var(--accent);
width:64px;
}

td.col-title{

padding-right:8px;
white-space:nowrap;
overflow:visible;
text-overflow:ellipsis;

}





/* responsive: make table scroll horizontally on small screens */
@media (max-width:820px){
.wrap{ padding:0 12px; }
thead th.col-title, td.col-title{ white-space:normal; }
tbody{ max-height:420px; }
table{ min-width:640px; }
}

/* custom scrollbar for the tbody */
tbody::-webkit-scrollbar{ width:10px; height:10px; }
tbody::-webkit-scrollbar-thumb{ background:rgba(11,58,58,0.12); border-radius:10px; }
tbody::-webkit-scrollbar-track{ background:transparent; }

/* small helper text */
.legend{ margin-top:10px; color:var(--muted); font-size:13px; }

       /* MAIN PAGE CARD SECTION */
       .bio-container {
        max-width: 1200px;
        margin: 60px auto;
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }

    .bio-card {
        background: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.10);
        text-align: center;
        transition: 0.3s ease;
        cursor: pointer;
    }

    .bio-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.16);
    }

    .bio-card h2 {
        font-size: 24px;
        font-weight: 700;
        color: #002B5B;
        margin-bottom: 12px;
    }

    .bio-card p {
        font-size: 15px;
        color: #444;
        margin-bottom: 20px;
    }

    .bio-card a {
        text-decoration: none;
        background: #FFB100;
        padding: 10px 18px;
        display: inline-block;
        border-radius: 8px;
        font-weight: 600;
        color: #111;
    }

    .bio-card a:hover {
        background: #e09a00;
    }