/* =============================================
   PHENI PHARMA – INDUSTRIE THEME PIXEL-PERFECT
   Font: Barlow (body) + Bai Jamjuree (headings)
   Accent: #008ad1 (blue)
   Dark BG: #161b22 / #0d1117
   ============================================= */

:root {
  --rs-orange: #008ad1;
  --rs-orange-dark: #006fa8;
  --rs-dark: #161b22;
  --rs-dark2: #0d1117;
  --rs-dark3: #1c2430;
  --rs-text: #6b7a8d;
  --rs-title: #161b22;
  --rs-white: #ffffff;
  --rs-light: #f5f7fa;
  --rs-border: #e4e9f0;
  --rs-blue-pharma: #008ad1;
  --transition: all 0.35s ease;
  --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--rs-text);
  background: var(--rs-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: var(--transition);
  color: inherit;
}

a:hover {
  color: var(--rs-orange);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bai Jamjuree', sans-serif;
  color: var(--rs-title);
  font-weight: 700;
  line-height: 1.25;
}

.rs-section-subtitle-wrap {
  margin-bottom: 14px;
}

.rs-section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rs-orange);
}

.rs-section-subtitle::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--rs-orange);
}

.rs-subtitle-light {
  color: var(--rs-orange);
}

.rs-section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--rs-title);
  margin-bottom: 18px;
}

.rs-title-light {
  color: var(--rs-white);
}

.rs-section-desc {
  color: var(--rs-text);
  font-size: 16px;
  line-height: 1.8;
}

.rs-desc-light {
  color: rgba(255, 255, 255, 0.65);
}

.rs-text-orange {
  color: var(--rs-orange);
}

.rs-section {
  padding: 100px 0;
}

.rs-section-bg-dark {
  background: var(--rs-dark);
}

.rs-section-bg-light {
  background: var(--rs-light);
}

.rs-section-bg-orange {
  background: var(--rs-orange);
}

/* ===== BUTTONS ===== */
.rs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
}

.rs-btn-primary {
  background: var(--rs-orange);
  color: var(--rs-white);
  border-color: var(--rs-orange);
}

.rs-btn-primary:hover {
  background: var(--rs-orange-dark);
  border-color: var(--rs-orange-dark);
  color: var(--rs-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 138, 209, 0.35);
}

.rs-btn-border {
  background: transparent;
  color: var(--rs-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.rs-btn-border:hover {
  background: var(--rs-orange);
  border-color: var(--rs-orange);
  color: var(--rs-white);
}

/* ===== PRELOADER ===== */
.rs-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--rs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-loader-inner {
  text-align: center;
}

.preloader-logo {
  width: 180px;
  margin-bottom: 30px;

}

.rs-spinner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--rs-orange);
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== TOPBAR ===== */
.rs-topbar {
  background: var(--rs-dark2);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rs-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.rs-topbar-info {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.rs-topbar-info li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.rs-topbar-info i {
  color: var(--rs-orange);
  font-size: 12px;
}

/* ===== HEADER ===== */
.rs-header {
  position: relative;
  z-index: 1000;
}

.rs-navbar {
  background: var(--rs-white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 0;
  transition: var(--transition);
}

.rs-navbar.rs-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--rs-white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.rs-navbar.rs-sticky .rs-logo-dark {
  display: none;
}

.rs-navbar.rs-sticky .rs-logo-sticky {
  display: block !important;
}

/* Default header: show colored logo, hide inverted one */
.rs-navbar:not(.rs-sticky) .rs-logo-dark {
  display: none;
}

.rs-navbar:not(.rs-sticky) .rs-logo-sticky {
  display: block !important;
}

.rs-navbar.rs-sticky .nav-link {
  color: var(--rs-title) !important;
}

.rs-navbar.rs-sticky .rs-nav-menu .nav-link:hover {
  color: var(--rs-orange) !important;
}

.rs-brand {
  padding: 10px 0;
}

.rs-logo {
  height: 72px;
  width: auto;
}

.rs-logo-dark {
  display: block;
  filter: brightness(0) invert(1);
}

.rs-logo-sticky {
  display: none;
}

.rs-nav-menu {
  gap: 4px;
}

.rs-nav-menu .nav-link {
  color: var(--rs-title) !important;
  font-family: 'Bai Jamjuree', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 28px 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--transition);
}

.rs-nav-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 3px;
  background: var(--rs-orange);
  transition: width var(--transition);
}

.rs-nav-menu .nav-link:hover::after,
.rs-nav-menu .nav-link.active::after {
  width: calc(100% - 32px);
}

.rs-nav-menu .nav-link:hover,
.rs-nav-menu .nav-link.active {
  color: var(--rs-orange) !important;
}

.rs-nav-btn {
  margin-left: 20px;
}

.rs-toggler {
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.rs-toggler .navbar-toggler-icon {
  filter: none;
}

/* ===== HERO BANNER ===== */
.rs-banner {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--rs-dark);
}

.rs-banner-slider {
  position: absolute;
  inset: 0;
}

.rs-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  height: 100%;
}

.rs-banner-slide.active {
  opacity: 1;
}

.rs-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 17, 23, 0.88) 0%, rgba(13, 17, 23, 0.6) 60%, rgba(13, 17, 23, 0.2) 100%);
}

.rs-banner-slide .container {
  position: relative;
  z-index: 2;
}

.rs-banner-content {
  padding: 0;
}

.rs-banner-sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rs-orange);
  margin-bottom: 20px;
}

.rs-banner-sub::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--rs-orange);
}

.rs-banner-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--rs-white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: 'Bai Jamjuree', sans-serif;
}

.rs-banner-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.rs-banner-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Controls */
.rs-slider-prev,
.rs-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0, 138, 209, 0.15);
  border: 2px solid rgba(0, 138, 209, 0.5);
  color: var(--rs-white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.rs-slider-prev {
  left: 30px;
}

.rs-slider-next {
  right: 30px;
}

.rs-slider-prev:hover,
.rs-slider-next:hover {
  background: var(--rs-orange);
  border-color: var(--rs-orange);
}

.rs-slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.rs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.rs-dot.active {
  background: var(--rs-orange);
  width: 30px;
  border-radius: 5px;
}

/* ===== FEATURE STRIP ===== */
.rs-features {
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -60px;
}

.rs-features-wrap {
  background: var(--rs-white);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.rs-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 30px;
  border-right: 1px solid var(--rs-border);
  transition: var(--transition);
}

.rs-feature-last {
  border-right: none;
}

.rs-feature-item:hover {
  background: var(--rs-orange);
}

.rs-feature-item:hover .rs-feature-icon,
.rs-feature-item:hover .rs-feature-text h5,
.rs-feature-item:hover .rs-feature-text p {
  color: var(--rs-white);
}

.rs-feature-icon {
  font-size: 36px;
  color: var(--rs-orange);
  flex-shrink: 0;
  transition: var(--transition);
}

.rs-feature-text h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: 'Bai Jamjuree', sans-serif;
  transition: var(--transition);
}

.rs-feature-text p {
  font-size: 14px;
  margin: 0;
  color: var(--rs-text);
  transition: var(--transition);
}

/* ===== ABOUT SECTION ===== */
.rs-about {
  padding-top: 130px;
}

.rs-about-img-wrap {
  position: relative;
}

.rs-about-img-main img {
  border-radius: 6px;
  width: 100%;
  box-shadow: var(--shadow-md);
}

.rs-about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 220px;
  border: 6px solid var(--rs-white);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.rs-about-img-secondary img {
  width: 100%;
  display: block;
}

.rs-about-exp-badge {
  position: absolute;
  bottom: 60px;
  left: -30px;
  background: var(--rs-orange);
  color: var(--rs-white);
  padding: 20px 28px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 138, 209, 0.4);
}

.rs-exp-num {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.rs-exp-num sup {
  font-size: 24px;
  vertical-align: top;
  
      top: 20px;
    left: 10px;
}

.rs-exp-text {
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  margin-top: 6px;
}

.rs-about-features {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rs-about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.rs-about-feature-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--rs-orange);
  color: var(--rs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

.rs-about-feature-text {
  font-size: 15px;
  color: var(--rs-title);
  font-weight: 500;
}

/* ===== SERVICES ===== */
.rs-service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.rs-service-card:hover {
  background: rgba(0, 138, 209, 0.08);
  border-color: var(--rs-orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.rs-service-card:hover .rs-service-icon,
.rs-service-card:hover .rs-service-link {
  color: var(--rs-orange);
}

.rs-service-icon {
  font-size: 44px;
  color: var(--rs-blue-pharma);
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

.rs-service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -2px;
}

.rs-service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--rs-white);
  margin-bottom: 14px;
  font-family: 'Bai Jamjuree', sans-serif;
}

.rs-service-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.rs-service-link {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

/* ===== PROCESS ===== */
.rs-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rs-process-step {
  display: flex;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rs-border);
  transition: var(--transition);
}

.rs-process-step:last-child {
  border-bottom: none;
}

.rs-process-step:hover .rs-step-number {
  background: var(--rs-orange);
  color: var(--rs-white);
}

.rs-step-number {
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rs-light);
  color: var(--rs-orange);
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rs-border);
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 4px;
}

.rs-step-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Bai Jamjuree', sans-serif;
}

.rs-step-content p {
  color: var(--rs-text);
  font-size: 15px;
}

/* ===== VMV (Vision Mission Values) ===== */
.rs-vmv {
  padding: 80px 0;
}

.rs-vmv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 40px 32px;
  height: 100%;
  transition: var(--transition);
}

.rs-vmv-center {
  background: var(--rs-orange);
  border-color: var(--rs-orange);
}

.rs-vmv-card:hover:not(.rs-vmv-center) {
  border-color: var(--rs-orange);
  background: rgba(0, 138, 209, 0.06);
}

.rs-vmv-icon {
  font-size: 40px;
  color: var(--rs-orange);
  margin-bottom: 18px;
}

.rs-vmv-center .rs-vmv-icon {
  color: var(--rs-white);
}

.rs-vmv-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--rs-white);
  margin-bottom: 14px;
  font-family: 'Bai Jamjuree', sans-serif;
}

.rs-vmv-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.8;
}

.rs-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rs-values-list li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-values-list li i {
  color: var(--rs-white);
  font-size: 10px;
}

/* ===== FOOTPRINT ===== */

.rs-country-flag img {
  width: 70px;
  height: 50px;
}


.rs-country-card {
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--rs-border);
  transition: var(--transition);
  height: 100%;
}

.rs-country-card:hover {
  border-color: var(--rs-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.rs-country-active {
  background: var(--rs-white);
}

.rs-country-planned {
  background: var(--rs-light);
}

.rs-country-flag {
  font-size: 44px;
  margin-bottom: 14px;
  display: block;
}

.rs-country-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Bai Jamjuree', sans-serif;
}

.rs-country-card p {
  font-size: 14px;
  color: var(--rs-text);
  margin-bottom: 14px;
}

.rs-country-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rs-badge-active {
  background: rgba(0, 138, 209, 0.1);
  color: var(--rs-blue-pharma);
}

.rs-badge-planned {
  background: rgba(0, 138, 209, 0.12);
  color: var(--rs-orange);
}

/* ===== TEAM ===== */

.rs-profile-avatar {
  width: 100%; 
  
  
}

.rs-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  
}

.rs-view-more-btn {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #008ad1;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.rs-view-more-btn:hover {
  background: #006fa8;
  color: #fff;
}


.rs-team-card {
  background: var(--rs-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.rs-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.rs-team-card:hover .rs-team-social {
  opacity: 1;
  transform: translateY(0);
}

.rs-team-img-wrap {
  position: relative;
   display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

 

.rs-avatar-letters {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--rs-white);
  line-height: 1;
}

.rs-team-social {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

.rs-team-social a {
  width: 36px;
  height: 36px;
  background: var(--rs-orange);
  border-radius: 50%;
  color: var(--rs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.rs-team-social a:hover {
  background: var(--rs-white);
  color: var(--rs-orange);
}

.rs-team-info {
  padding: 28px 30px;
}

.rs-team-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: 'Bai Jamjuree', sans-serif;
}

.rs-team-role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rs-orange);
  margin-bottom: 14px;
}

.rs-team-info p {
  color: var(--rs-text);
  font-size: 14px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.rs-team-info p.expanded-text {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  display: block;
}




.rs-team-email {
  font-size: 14px;
  color: var(--rs-blue-pharma);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.rs-team-email:hover {
  color: var(--rs-orange);
}

/* ===== STATS COUNTER ===== */
.rs-counter {
  padding: 70px 0;
}

.rs-counter-item {
  color: var(--rs-white);
}

.rs-counter-num {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 60px;
  font-weight: 800;
  display: inline;
  line-height: 1;
  color: #fff;
}

.rs-counter-plus {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Bai Jamjuree', sans-serif;
}

.rs-counter-item p {
  font-size: 15px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== CONTACT ===== */
.rs-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.rs-contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.rs-ci-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(0, 138, 209, 0.12);
  color: var(--rs-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.rs-ci-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--rs-title);
  margin-bottom: 4px;
}

.rs-ci-text span {
  display: block;
  font-size: 14px;
  color: var(--rs-text);
}

.rs-ci-text a {
  color: var(--rs-text);
}

.rs-ci-text a:hover {
  color: var(--rs-orange);
}

.rs-contact-form-wrap {
  background: var(--rs-light);
  border-radius: 6px;
  padding: 48px 44px;
}

.rs-contact-form-wrap h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 28px;
  font-family: 'Bai Jamjuree', sans-serif;
  color: var(--rs-title);
}

.rs-form-group {
  margin-bottom: 0;
}

.rs-form-control {
  width: 100%;
  background: var(--rs-white);
  border: 1px solid var(--rs-border);
  border-radius: 4px;
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--rs-title);
  transition: var(--transition);
}

.rs-form-control::placeholder {
  color: #a0aab4;
}

.rs-form-control:focus {
  outline: none;
  border-color: var(--rs-orange);
  box-shadow: 0 0 0 3px rgba(0, 138, 209, 0.12);
}

select.rs-form-control {
  cursor: pointer;
}

textarea.rs-form-control {
  resize: vertical;
}

.rs-form-success {
  background: rgba(59, 214, 112, 0.1);
  border: 1px solid rgba(59, 214, 112, 0.3);
  color: #1a8a47;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.rs-footer {
  background: var(--rs-dark2);
}

.rs-footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rs-footer-logo-img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.rs-footer-about p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  max-width: 320px;
  margin-top: 16px;
}

.rs-footer-tagline {
  color: var(--rs-orange) !important;
  font-style: italic;
  font-weight: 600;
}

.rs-footer-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--rs-white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rs-orange);
  display: inline-block;
}

.rs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rs-footer-links li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.rs-footer-links li a::before {
  content: '›';
  color: var(--rs-orange);
  font-size: 18px;
  font-weight: 700;
}

.rs-footer-links li a:hover {
  color: var(--rs-orange);
  padding-left: 5px;
}

.rs-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rs-footer-contact li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rs-footer-contact li i {
  color: var(--rs-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.rs-footer-contact a {
  color: rgba(255, 255, 255, 0.5);
}

.rs-footer-contact a:hover {
  color: var(--rs-orange);
}

.rs-footer-bottom {
  padding: 22px 0;
  background: var(--rs-dark);
}

.rs-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.rs-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin: 0;
}

.rs-footer-bottom strong {
  color: var(--rs-orange);
}

/* ===== BACK TO TOP ===== */
.rs-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--rs-orange);
  color: var(--rs-white);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0, 138, 209, 0.4);
}

.rs-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.rs-back-to-top:hover {
  background: var(--rs-orange-dark);
  transform: translateY(-3px);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .rs-topbar-right {
    display: none;
  }

  .rs-navbar .container {
    padding: 12px 16px;
  }

  .rs-nav-menu .nav-link {
    padding: 12px 16px !important;
  }

  .rs-about-img-secondary {
    width: 150px;
    right: -10px;
  }

  .rs-about-exp-badge {
    left: 10px;
    bottom: 40px;
  }

  .rs-features {
    margin-top: 0;
  }

  .rs-feature-item {
    border-right: none;
    border-bottom: 1px solid var(--rs-border);
  }

  .rs-feature-last {
    border-bottom: none;
  }

  .rs-banner {
    height: 85vh;
  }

  .rs-contact-form-wrap {
    padding: 32px 24px;
  }

  .rs-section {
    padding: 70px 0;
  }
	.rs-logo
Specificity: (0,1,0)
 {
    height: 44px;
    width: auto;
}
}

@media (max-width: 767px) {
  .rs-topbar {
    display: none;
  }

  .rs-logo {
    height: 38px;
  }

  .rs-banner-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .rs-about-img-secondary {
    display: none;
  }

  .rs-about-exp-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
    display: inline-flex;
  }

  .rs-slider-prev,
  .rs-slider-next {
    width: 40px;
    height: 40px;
    display: none;
  }

  .rs-contact-form-wrap {
    padding: 24px 18px;
  }

  .rs-footer-top {
    padding: 50px 0 40px;
  }

  .rs-counter-num {
    font-size: 42px;
  }
}

/* ===== INNER PAGE BANNER ===== */
.rs-page-banner {
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
  background: var(--rs-dark);
}

.rs-page-banner-content {
  position: relative;
  z-index: 2;
}

.rs-page-banner-content .rs-section-subtitle {
  color: var(--rs-orange);
  margin-bottom: 16px;
  display: inline-flex;
}

.rs-page-banner-content .rs-banner-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 20px;
}

.rs-breadcrumb {
  --bs-breadcrumb-divider: '�';
  margin: 0;
}

.rs-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.rs-breadcrumb .breadcrumb-item a:hover {
  color: var(--rs-orange);
}

.rs-breadcrumb .breadcrumb-item.active,
.rs-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.4);
  font-size: 14px;
}

/* Inner page content */
.rs-page-content {
  max-width: 800px;
}

/* Page-specific: services page on top of inner banner */
.rs-section .rs-page-banner + * {
  padding-top: 40px;
}


/* ============================================================
   Pheni Pharma – Contact Form 7 EXACT CSS
   design2wp.in/pheni se exact match
   Paste: WordPress → Appearance → Customize → Additional CSS
   ============================================================ */

/* ---- FORM WRAPPER BOX ---- */
.wpcf7 {
  background: #f5f7fa;
  border-radius: 6px;
  padding: 0px;
  box-sizing: border-box;
}

/* ---- FORM HEADING "Send Us a Message" ---- */
.wpcf7 .wpcf7-form h3,
.contact-form-box h3,
.wpcf7-heading {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 28px;
  font-family: 'Bai Jamjuree', sans-serif;
  color: #161b22;
}

/* ---- ALL INPUT FIELDS, TEXTAREA, SELECT ---- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e4e9f0;
  border-radius: 4px;
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #161b22;
  transition: all 0.35s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: block;
  margin-bottom: 16px;
  outline: none;
}

/* ---- PLACEHOLDER ---- */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #a0aab4;
}

/* ---- FOCUS STATE ---- */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #008ad1;
  box-shadow: 0 0 0 3px rgba(0, 138, 209, 0.12);
  outline: none;
}

/* ---- SELECT DROPDOWN ---- */
.wpcf7 select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23008ad1' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px;
  padding-right: 42px;
}

/* ---- TEXTAREA ---- */
.wpcf7 textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---- SUBMIT BUTTON ---- */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  width: 100%;
  background: #008ad1;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  padding: 14px 24px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  display: block;
  box-sizing: border-box;
  margin-top: 4px;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background: #006fa8;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---- SPINNER HIDE ---- */
.wpcf7 .wpcf7-spinner {
  display: none !important;
}

/* ---- SUCCESS MESSAGE ---- */
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(59, 214, 112, 0.1);
  border: 1px solid rgba(59, 214, 112, 0.3);
  color: #1a8a47;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
  text-align: center;
}

/* ---- ERROR / VALIDATION MESSAGE ---- */
.wpcf7 .wpcf7-response-output {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #c53030;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 15px;
  margin-top: 14px;
  text-align: center;
}

/* ---- FIELD VALIDATION ERROR ---- */
.wpcf7 .wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: -10px;
  margin-bottom: 12px;
  display: block;
}

.wpcf7 .wpcf7-not-valid {
  border-color: #e53e3e !important;
}

/* ---- CF7 paragraph reset ---- */
.wpcf7 p {
  margin: 0;
  padding: 0;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ---- MOBILE ---- */
@media (max-width: 600px) {
  .wpcf7 {
    padding: 32px 20px;
  }
	
}