/* 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 */
/* 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-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-size: cover;
  padding: 60px 20px;
  color: #000;
}

.global-presence .container {
  display: flex;
  justify-content: flex-end;
  max-width: 1400px;
  margin: auto;
}

.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;
}

.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: 5px 10px;
}

.point p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
/* 🌍 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: 80px;
  left: 0;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 50px 60px;
  width: 400px;
  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;
}

/* ===== Info Bar ===== */
.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c3b47b;
  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;
  }
}
