/* Basic theme overrides for Salius Pharma */
:root {
  --brand-primary: #0000df;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Top Bar start */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 60px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.top-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #002147;
}

.top-left span i {
  background: #e5ebf4;
  padding: 8px;
  border-radius: 50%;
  font-size: 14px;
  color: #002147;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.translate-btn {
  /* background: orange; */
  color: #fff;
  padding: 0;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* Reusable Button Style */
.nav-btn {
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-blue {
  background: linear-gradient(135deg, #66c9f0, #6666f0);

  color: #fff;
}

.btn-red {
  background: #ff0000;
  color: #fff;
}
.dropdown-item.active{
  background-color:#0000df;
}
/* Header Main */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 60px;
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;       /* make sure it’s not transparent */
  z-index: 1000;
  animation: slideDown 0.7s cubic-bezier(.77,0,.18,1);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
}
@keyframes slideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.header.hide-header {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text .divider {
  width: 1px;
  height: 40px;
  background-color: #ccc;
}

.api-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #5423bf; /* deep purple tone */
  margin: 0;
  line-height: 1.2;
}

.api-text h2 span {
  color: #3a2e84;
}

.api-text p {
  margin: 0;
  font-size: 14px;
  color: #000095;
  font-weight: 400;
}

/* Navigation */

.navbar-nav {
  display: flex;
  flex-direction: row;   /* force horizontal */
  gap: 20px;             /* spacing between items */
}

.navbar-nav .nav-link {
  padding: 8px 12px;
  color: #002147;
  font-weight: 600;
}

.navbar-nav .nav-link.active {
  color: #ff0000; /* active color */
}

/* head end */
/* 🌐 Footer Section */
.footer {
  background: #ffffff;
  color: #000000;
  padding: 50px 20px 20px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  text-decoration: none;
}

.footer-col a:hover {
  color: #000000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-about p {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #e63946;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #0000df;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.apply-now {
  z-index: 9999;
  position: fixed;
  top: 28%;
  right: 44px;
  background-color: #a499ff;
  color: #000000;
  padding: 10px 15px;
  font-weight: bold;
  text-decoration: none;
  transform: rotate(-90deg);
  transform-origin: top right;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.apply-now:hover{
  background-color: #0000df;
  color: #ffffff;
}
/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Popup Box */
.popup-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.popup-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0000df;
  font-weight: 700;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
}

.popup-close:hover {
  color: #0000df;
}

/* Form Styling */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0000df;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #66c9f0, #6666f0);
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #0000df;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* 🌐 Footer Section end */

/* banner start */
.banner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 66vh;
  /* border-radius: 32px; */
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  /* border-radius: 32px; */
  overflow: hidden;
  background: #eeeeee;
}

.banner-inner.reverse {
  flex-direction: row-reverse; /* image on right */
}

.banner-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.banner-content {
  flex: 1;
  color: #000000;
  /* background: linear-gradient(135deg, #000000d5, #00000085); */
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease forwards;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1.6s ease forwards;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 2s ease forwards;
}

.btn-primary,
.btn-outline {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #66c9f0, #6666f0);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 2px solid #000000;
  color: #000000;
}

.btn-outline:hover {
  background: #fff;
  color: #0000df;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: linear-gradient(135deg, #66c9f0, #6666f0);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  z-index: 10;
  transition: 0.3s;
}

.slider-btn.prev { left: 9px; }
.slider-btn.next { right: 9px; }

.slider-btn:hover {
  background: #009de2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .banner-inner,
  .banner-inner.reverse {
    flex-direction: column;
  }

  .banner-image {
    height: 40vh;
    width: 100%;
  }

  .banner-content {
    height: 40vh;
    width: 100%;
    padding: 30px;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .btn-group {
    justify-content: center;
  }
}

/* banner end */
/* stat card */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 70px;
  flex-wrap: wrap;
  /* margin-bottom: 76px; */
  padding: 62px 0;
}

.stat-card {
  flex: 1;
  min-width: 200px;
  max-width: 288px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 8px 0px rgba(37, 92, 163, 0.4);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-content h3 {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 0 8px;
}

.stat-content p {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
  color: #000;
}

.stat-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
/* stat card end */
/* About Us */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 292px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 53px;
}

.about-section img {
  max-width: 1000px;
  width: 135%;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.about-content {
  max-width: 600px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #0000df; /* Purple shade */
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 16px;
  color: #555;
}

.btn-about {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #66c9f0, #6666f0);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-about:hover {
  background: #0000df;
}
/* About Us End */
/*Key Highlights*/
/* SECTION WRAPPER */
.highlights-section {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    position: relative;
}

/* CONTAINER */
.highlights-container {
    width: 90%;
    max-width: 1300px;
    text-align: center;
}

/* TITLE */
.highlights-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0000df;
    letter-spacing: 1px;
}
.highlights-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0000df, #5423bf, #009de2);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}
/* GRID LAYOUT */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* PILL GLASS CARDS */
.highlight-box {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0,0,0,0.1);
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    height: 65px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    transition: .35s ease;
}

/* ICON STYLE */
.highlight-box i {
    font-size: 20px;
    color: #009de2;
}

/* HOVER EFFECT */
.highlight-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    border-color: #009de2;
}

/* ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .highlights-section {
        height: auto;
        padding: 40px 0;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        height: 55px;
    }
}


/*Key Highlights end*/
/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #66c9f0, #6666f0);
  padding: 0;
  position: relative;
  height: 351px;
  /* overflow: hidden; */
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Text Block */
.cta-content {
  flex: 1;
  min-width: 300px;
  color: #fff;
  padding: 0 20px;
  margin-top: -68px;
}

.cta-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  background: #fff;
  color: #0000df;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #e6e6e6;
}

/* Image that overlaps the blue section */
.cta-image {
  flex: 1;
  min-width: 320px;
  position: relative;
  margin-left: 20px;
}

.cta-image img {
  max-width: 100%;
  border-radius: 20px;
  position: relative;
  top: -35px;         /* moves image downward */
  right: -40px;      /* makes image pop outside blue patch */
  /* box-shadow: 0 6px 20px rgba(0,0,0,0.2); */
}
/* CTA Section end */
/* accreditations Section */
.accreditations {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}
.accreditations-container {
  max-width: 1400px;
  margin: 0 auto;
}

.accreditations .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #0000df; /* Blue like screenshot */
  margin-bottom: 40px;
}

.accreditations-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-wrap: wrap;
}

.accreditation-item {
  text-align: center;
  max-width: 150px;
}

.accreditation-item img {
  max-width: 120px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.accreditation-item img:hover {
  transform: scale(1.1);
}

.accreditation-item p {
  font-size: 14px;
  color: #000;
  margin: 0;
}
/* accreditations Section end */
/* Featured APIs Section */
.apis-section {
  padding: 20px 20px;
  background: linear-gradient(135deg, #f9fbff, #eef4ff);
  text-align: center;
}

.apis-container {
  max-width: 1400px;
  margin: 0 auto;
}

.apis-title {
  font-size: 32px;
  font-weight: bold;
  color: #0000df;
  margin-bottom: 10px;
}
.apis-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0000df, #5423bf, #009de2);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}
.apis-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.apis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 38px;
}

.api-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.api-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.api-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 8px;
}

.api-category {
  font-size: 0.95rem;
  color: #444;
  background: #e3f2fd;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* Button */
.apis-btn {
  margin-top: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, #66c9f0, #6666f0);
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6666f0, #66c9f0);
  transform: translateY(-3px);
}
/* Featured APIs Section end*/
/* Our Capabilities Section */
.capabilities {
  text-align: center;
  padding: 60px 20px 90px;
  background: #fff;
}
.cap-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Titles */
.capabilities .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0000df; /* purple shade */
  margin-bottom: 10px;
}

.capabilities .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* Cards Container */
.capabilities-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Individual Card */
.cap-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 30px 20px;
  width: 400px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.cap-card:hover{
  background: linear-gradient(135deg, #6666f0, #66c9f0);
  color: #fff;
}
.cap-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cap-card p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Arrow Button */
.cap-card .arrow-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f8f8;
  color: #0000df;
  text-decoration: none;
  font-size: 18px;
  line-height: 40px;
  transition: all 0.3s ease;
}

.cap-card .arrow-btn:hover {
  background: #0000df;
  color: #fff;
}

/* Hover Effect */
.cap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
/* Our Capabilities Section end */
/* Partner section */
.why-partner {
  text-align: center;
  padding: 90px 40px 30px;
}

.why-partner .title {
  font-size: 32px;
  font-weight: 700;
  color: #0000df;
  margin-bottom: 50px;
}

.partner-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 40px;
}

.partner-row::before {
  content: "";
  position: absolute;
  top: 20px; /* aligns with circles */
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.partner-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 220px;
}

.partner-item .circle {
  width: 45px;
  height: 45px;
  background: #f8fafc;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #0000df;
  position: relative;
  z-index: 2;
}

.partner-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.partner-item p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* Partner section end */
/* 🌍 Global Presence Section */
.global-presence {
  position: relative;
  /*background: url('https://orexpharma.com/wp-content/uploads/2023/08/map.svg') no-repeat left center;*/
 
  background-color:#040469;
  background-size: cover;
  padding: 60px 20px;
  color: #000;
}

.global-presence .container {
  display: flex;
  justify-content: flex-end;
  max-width: 1400px;
  margin: auto;
}
/*.global-content-new {*/
/*  width: 59%;*/
  /*background: rgba(255, 255, 255, 0.9);*/
/*  padding: 30px;*/
/*  border-radius: 10px;*/
/*}*/

.global-content {
  width: 44%;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
}

.global-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}
.global-content h3 {
  font-size: 21px !important;
  font-weight: 500 !important;
  margin-bottom: 17px !important;
}
.global-content h4 {
  font-size: 18px !important;
  font-weight: 400;
  margin-bottom: 25px;
}


.points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.point .icon {
  color: #0000df;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid #0000df;
  border-radius: 50%;
  padding: 2px 9px;
}

.point p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/*new css added for location map*/
.global-content-new {
  width: 59%;
  /*background: rgba(255, 255, 255, 0.9);*/
  padding: 30px;
  border-radius: 10px;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
}

.world-map {
    width: 100%;
    opacity: 0.85;
}

.location {
    position: absolute;
}

.location:hover .tooltip {
    display: block !important;
}
.location:hover .tooltip { display:block; }

.tooltip {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.location:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Orange Vibrating Dot */
.dot {
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;

    /* Glow */
    box-shadow: 0 0 6px 3px rgb(255 32 0 / 62%);

    /* Vibration Animation */
    animation: vibrate 0.5s infinite alternate;
}

@keyframes vibrate {
    0% { transform: scale(1); }
    100% { transform: scale(1.4); }
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: white;
    padding: 6px 6px;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: none;
    transform: translate(-50%, -120%);
    min-width: 150px;
    z-index: 10;
}

.tooltip h3 {
    font-size: 15px;
    margin: 0;
    color: #000;
    font-weight: 500;
    text-align: center;
}

.tooltip p {
    font-size: 14px;
    margin: 4px 0 0 0;
    color: #000;
}


/* 🌍 Global Presence Section end */
/* Latest Updates Section */
.news-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.news-title {
  font-size: 32px;
  font-weight: bold;
  color: #0000df;
  margin-bottom: 10px;
}

.news-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.news-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-date {
  font-size: 0.9rem;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.news-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 10px;
}

.news-text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.news-link {
  color: #1ca8e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.news-link:hover {
  color: #0000df;
}

/* Button */
.news-btn {
  margin-top: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, #6666f0, #66c9f0);
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #66c9f0, #6666f0);
  transform: translateY(-3px);
}
/* Latest Updates Section End */
/* Floating Social Media Bar Style Starts Here */

.fl-fl {
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 200px;
  position: fixed;
  right: -160px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.social-icon {
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  width: 40px;
  margin-left: 8px;
}


.fl-fl:hover {
  right: 0;
}

.fl-fl a {
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  line-height: 43px!important;
  vertical-align: top!important;
}

.float-wh {
  background: #4caf50;
  top: 535px;
}

.float-ph {
  background: #2196f3;
  top: 594px;
}

.float-em {
  background: #b90000;
  top: 655px;
}
/* Floating Social Media Bar Style Ends Here */
/* Page Banner */
.page-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0px 0px 7px 74px;
}

.banner-bottom {
  background: rgb(0 0 223 / 36%);
  padding: 15px 20px;
  text-align: center;
  border-bottom: 2px solid #ffffff;
}

.banner-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
/* Page Banner End */

/* Certificate Section start */
.certificate-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.certificate-section .section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0000df;
  font-weight: 700;
}

.certificate-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.certificate-item {
  width: 260px;
  height: 363px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.certificate-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.certificate-item:hover img {
  transform: scale(1.05);
}

/* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  text-align: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #ffb329;
}

/* Responsive */
@media (max-width: 768px) {
  .certificate-gallery {
    flex-direction: column;
    align-items: center;
  }
  .certificate-item {
    width: 80%;
    height: auto;
  }
}
/* Certificate Section end */
/* ===== Contact Section ===== */
.contact-section {
  background-color: #f3f3f3;
  padding: 30px 0 0;
  font-family: 'Poppins', sans-serif;
}

/* ===== Wrapper ===== */
.contact-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* ===== Image ===== */
.contact-image {
  flex: 1;
  max-width: 700px;
  margin-left: auto;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* ===== Decorative Line (below image) ===== */
.contact-image::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 80%;
  height: 30px;
  background-image: repeating-linear-gradient(
    -45deg,
    #ccc 0 2px,
    transparent 2px 6px
  );
}

/* ===== Floating Form ===== */
.contact-form {
  position: absolute;
  top: 29px;
    left: -104px; 
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 50px 60px;
  width: 496px;
  z-index: 2;
}

.contact-form h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 5px;
  font-size: 15px;
  outline: none;
  background: none;
  margin-bottom: 25px;
}

.contact-form textarea {
  resize: none;
  height: 80px;
}

.contact-form button {
  background-color: #c3b47b;
  color: #fff;
  border: none;
  padding: 12px 0;
  width: 100%;
  border-radius: 25px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #b8aa72;
}
.two-cols {
  display: flex;
  gap: 20px;
}

.two-cols input {
  width: 100%;
}

/*add complete with class */

.info-box a{
  text-decoration: none;
  color:#fff;
}

/*add this in .contact-info class */


/*add this in .contact-form button class */

.contact-form button {

background-color: #a499ff;
}

.contact-form button:hover {
background-color: #b8aa72;
}
/* ===== Info Bar ===== */
.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a499ff;
  padding: 45px 0;
  margin-top: 120px;
  flex-wrap: wrap;
}

.info-box {
  flex: 1;
  text-align: center;
  color: #fff;
  min-width: 250px;
  padding: 10px 15px;
}

.info-box i {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}

.info-box h4 {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 14px;
  line-height: 1.5;
}

/* ===== Credit ===== */
.credit {
  font-size: 13px;
  color: #777;
  margin: 20px 0 10px;
  text-align: center;
}

.credit a {
  color: #333;
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-form {
    position: relative;
    left: 0;
    top: 0;
    width: 90%;
    margin: 0 auto 40px;
  }
  .contact-image::after {
    display: none;
  }
}


/*About Us Page Section start*/
.about-salius {
    position: relative;
    padding: 60px 0;
    /*background: linear-gradient(135deg, #0000df 0%, #5423bf 50%, #009de2 100%);*/
    overflow: hidden;
    /*color: #fff;*/
}

/* Soft molecule pattern */
.about-salius::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /*background: url('');*/
    opacity: 0.15;
    mix-blend-mode: screen;
    pointer-events: none;
}

.about-overlay {
    position: absolute;
    inset: 0;
    /*background: rgba(0,0,0,0.25);*/
    backdrop-filter: blur(3px);
}

.about-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-header span {
    background: linear-gradient(90deg,#00f, #5423bf, #009de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Content layout */
.about-salius-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Glass Card */
.glass-card {
    background: rgba(255,255,255,0.10);
    padding: 25px 30px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.about-text {
    flex: 1;
    font-size: 16.5px;
    line-height: 1.7;
}

.about-img {
    flex: 1;
    display: flex;
    justify-content: center;
}
.about-img img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Vision & Mission */
.vision-mission-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.vm-box {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    text-align: center;
}

.vm-box h3 {
    font-size: 26px;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: linear-gradient(90deg,#fff,#000dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vm-box p {
    font-size: 16px;
    opacity: 0.95;
}
/* Section Wrapper */
.leadership-section-wrapper {
  padding: 40px 0;
  background: #f9f9ff;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #0000df;
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0000df, #5423bf, #009de2);
  display: block;
  margin: 12px auto 0;
  border-radius: 5px;
}

/* Grid Section */
.leadership-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Cards */
.leader-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  border-top: 5px solid #009de2;
  transition: 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 45px rgba(0,0,0,0.12);
  border-top-color: #5423bf;
}

/* Image */
.leader-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Heading */
.leader-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

/* Paragraph */
.leader-card p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .leadership-section {
    grid-template-columns: 1fr;
  }
}


/*About Us Page Section End*/


.mf-section {
    padding: 60px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.mf-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.mf-title {
    font-size: 32px;
    font-weight: bold;
    color: #0000df;
    margin-bottom: 10px;
}

.mf-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
}

.mf-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    margin: 0 auto 30px auto;
    border-radius: 5px;
}

.mf-text {
    color: #444;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.mf-highlights {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.mf-box {
    padding: 20px;
    border-radius: 12px;
    background: #f7f9fc;
    border: 1px solid #e5e8ef;
    font-size: 16px;
    color: #0d1137;
    font-weight: 600;
    text-align: center;
    transition: 0.3s;
}

.mf-box:hover {
    background: #ffffff;
    border-color: #2a5298;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.timeline-section {
    padding: 20px 20px;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
}

.timeline-container {
    max-width: 1100px;
    margin: auto;
}

.timeline-title {
    text-align: center;
        font-size: 32px;
    font-weight: bold;
    color: #0000df;
    margin-bottom: 10px;
}
.timeline-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0000df, #5423bf, #009de2);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}
.timeline-intro {
    text-align: center;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

/* Timeline structure */
.timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 40px;
    border-left: 3px solid #1e3c72;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #2a5298;
    border-radius: 50%;
    position: absolute;
    left: -50px;
    top: 5px;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 4px #1e3c72;
}

.timeline-content {
    background: #f8faff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e6ef;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.timeline-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.timeline-content ul {
    margin: 0;
    padding-left: 20px;
}

.timeline-content ul li {
    margin-bottom: 10px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline {
        border-left: none;
        padding-left: 0;
    }
    .timeline-dot {
        display: none;
    }
}
.qc-box {
    width: 90%;
    margin: 40px auto;
    background: linear-gradient(135deg, #67c4ff, #5064ff);
    padding: 50px;
    border-radius: 30px;
    display: flex;
    gap: 40px;
    color: #fff;
    position: relative;
}

.qc-box img {
    width: 590px;
    height: 848px;
    border-radius: 20px;
    object-fit: cover;
}

.qc-right h2 {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.qc-right h3 {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 600;
    color: #e3f1ff;
}

.qc-right p {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 5px;
    color: #f2f6ff;
}

/* --- Creative Sub Points --- */
.creative-list {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}

.creative-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #f8fbff;
    line-height: 1.5;
}

/* custom glowing dots */
.creative-list li span {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 900px) {
    .qc-box {
        flex-direction: column;
        padding: 30px;
    }

    .qc-box img {
        width: 100%;
    }
}
.reg-support-section {
    padding: 70px 0;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.reg-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.reg-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.reg-header h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #0000df;
    margin-bottom: 10px;
}
.reg-header h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0000df, #5423bf, #009de2);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}
.reg-header h3 {
    font-size: 22px;
    margin-top: 10px;
    color: #005599;
}

.reg-header p {
    margin-top: 16px;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

/* Grid */
.reg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Card */
.reg-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #0000d9;
}

.reg-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Icon */
.reg-icon i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #5423bf;
}

/* Title */
.reg-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #003366;
    font-weight: 600;
}

/* List */
.reg-card ul {
    padding-left: 18px;
}

.reg-card ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

/* Product page start */
.api-details-section {
  padding: 60px 0 9px;
}

.api-details-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT STRUCTURE BOX */
.api-structure-box {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 12px;
  width: 352px;
  min-width: 330px;
  text-align: center;
}

.api-structure-box img {
  width: 100%;
  height: auto;
}

/* RIGHT GRID */
.api-info-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 25px;
}

.api-info-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #51519c; /* matching green tone */
  margin-bottom: 5px;
}

.api-info-item p {
  font-size: 16px;
  margin: 0;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .api-details-wrapper {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .api-info-grid {
      grid-template-columns: 1fr;
      text-align: left;
      width: 100%;
      max-width: 600px;
  }
}

.product-description-section {
  max-width: 1200px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

/* Headings */
.product-section-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 38px;
  margin-top: 38px;
  color: #51519c;
}

.properties-title {
  font-weight: 700;
  font-size: 19px;
  margin: 30px 0 15px;
  color: #373765;
}
.properties-h3{
  font-weight: 700;
  font-size: 20px;
  margin: 30px 0 15px;
  color: #373765;
}

.description-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Table styling */
.properties-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.properties-table th,
.properties-table td {
  padding: 10px 12px;
  font-size: 16px;
}

.properties-table th {
  font-weight: 700;
  width: 250px;
}

.properties-table tr.alt {
  background: #f2f2f2;
}

.bottom-description {
  font-size: 17px;
  margin-top: 15px;
}

/* WHY CHOOSE SALIUS */

.why-list {
  margin-bottom: 30px;
}

.why-list li {
  margin-bottom: 18px;
  font-size: 16px;
}

/* CIRCLE DIAGRAM */
.docs-center {
  text-align: center;
  margin: 30px 0;
}

.docs-img {
  max-width: 500px;
  width: 100%;
}

/* WHY TABLE */
.why-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.why-table th,
.why-table td {
  padding: 12px 14px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
}

.why-table th {
  background: #f2f2f2;
  font-weight: 700;
}

.why-table tr.alt td {
  background: #f7f7f7;
}

/* FAQ Section */
.faq-section {
  max-width: 1200px;
  margin: 40px auto;
}

.faq-container {
  width: 100%;
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: #f7f7f7;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question i {
  color: #0b4b3a;
  font-size: 16px;
  transition: 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 10px 20px 15px 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

.faq-item.active .faq-answer {
  display: block;
}

.order-section {
  max-width: 1200px;
    margin: 40px auto;
}

.order-intro {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.order-contact-box {
  background: #f7f7f7;
  padding: 25px 30px;
  border-radius: 10px;
  border-left: 5px solid #51519c;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
}

.contact-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-title i {
  color: #51519c;
}

.order-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-row i {
  font-size: 20px;
  color: #51519c;
  margin-top: 4px;
}

.contact-row strong {
  display: inline-block;
  width: 160px; /* uniform label width */
  font-weight: 600;
}

.contact-row span {
  display: inline-block;
  line-height: 1.6;
}

.multi-line {
  display: inline-block;
}


/* Product page end */
section.product-list-section {
    padding: 40px 120px;
}
.product-search-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.product-search-input {
    width: 250px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.search-btn {
    padding: 10px 15px;
    margin-left: 10px;
    border: none;
    background: #0056b3;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.product-table th, .product-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.product-table th {
    background: #f7f9fc;
    font-weight: bold;
}

.view-btn {
    padding: 6px 12px;
    background: #0077cc;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}

.pagination {
    margin-top: 25px;
    text-align: center;
}

.pagination a {
    padding: 8px 14px;
    margin: 0 4px;
    background: #eee;
    border-radius: 5px;
    text-decoration: none;
}

.pagination .current-page {
    margin: 0 10px;
    font-weight: bold;
}

/* section.product-list-section {
    padding: 40px 80px;
}
.product-search-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end; 
    margin: 20px 0 40px;
}

.product-search-input {
    width: 280px;              
    padding: 14px 18px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
}

.product-search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #111;
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.product-image img {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    min-height: 45px;
} */

.core-competencies-section {
    padding: 60px 0;
    background: #f7f9fc;
}

.cc-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.cc-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #003366;
    position: relative;
}

.cc-title::after {
    content: "";
    display: block;
    margin: 12px auto 0;
    width: 60px;
    height: 3px;
    background: #007bff;
    border-radius: 10px;
}

.cc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 54px;
}

.cc-item {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #e0e6ed;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.cc-item i {
    font-size: 20px;
    color: #007bff;
    margin-top: 3px;
}

.cc-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 14px rgba(0,0,0,0.1);
}
