@import url("https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap");

:root {
  --primary-color: #f56c1f;
  --primary-hover: #e55b0e;
  --text-color: #333;
  --light-text: #666;
  --border-color: #eaeaea;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --orange: #f56c1f;
  --dark: #2c3e50;
  --light: #f8f9fa;
  --gray: #7f8c8d;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Alan Sans", sans-serif;
}

html,
body {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--white);
  color: var(--text-color);
  overflow-x: hidden;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #000000ff;
}

::-webkit-scrollbar-thumb {
  background: #f56c1f;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Header Styles */

.unilink-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  margin: 0 !important;
  padding: 0 3em !important;
}

.unilink-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.unilink-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.unilink-logo a {
  display: block;
  line-height: 0;
}

.unilink-logo img {
  height: 40px;
}

.unilink-nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.unilink-nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
}

.unilink-nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.unilink-nav-links a:hover {
  color: var(--primary-color);
}

.unilink-nav-links a.unilink-home-link {
  transition: transform 0.3s ease, color 0.3s ease;
}

.unilink-nav-links a i {
  margin-left: 4px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.unilink-nav-links a:hover i {
  transform: rotate(180deg);
}

.unilink-dropdown {
  position: relative;
}

.unilink-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-20%);
  background: var(--white);
  min-width: 200px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.unilink-dropdown:hover .unilink-dropdown-content {
  opacity: 1;
  visibility: visible;
}

.unilink-dropdown-content a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.unilink-dropdown-content a:hover {
  background: var(--light);
  color: var(--primary-color);
}

.unilink-btn-appointment-desktop {
  background: var(--primary-color);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.unilink-btn-appointment-desktop:hover {
  background: var(--primary-hover);
}

.unilink-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}


.unilink-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--border-color);
  padding: 1.5rem;
  transition: right 0.3s ease;
  z-index: 1100;
  overflow-y: auto;
}

.unilink-mobile-menu.unilink-active {
  right: 0;
}

.unilink-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.unilink-mobile-logo img {
  height: 36px;
}

.unilink-close-menu {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-color);
  cursor: pointer;
}

.unilink-close-menu:hover {
  color: var(--primary-color);
}

.unilink-mobile-nav-links {
  list-style: none;
  margin: 0;
}

.unilink-mobile-nav-links li {
  border-bottom: 1px solid var(--border-color);
}

.unilink-mobile-nav-links a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
}

.unilink-mobile-nav-links a:hover {
  color: var(--primary-color);
}

.unilink-mobile-dropdown {
  padding-left: 1rem;
  display: none;
}

.unilink-mobile-dropdown.unilink-active {
  display: block;
}

.unilink-mobile-dropdown a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--light-text);
}

.unilink-mobile-dropdown a:hover {
  color: var(--primary-color);
}

.unilink-mobile-cta {
  margin-top: 2rem;
}

.unilink-mobile-cta .unilink-btn-appointment {
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}

.unilink-mobile-cta .unilink-btn-appointment:hover {
  background: var(--primary-hover);
}

.unilink-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.unilink-overlay.unilink-active {
  display: block;
}

/* ====================== GO TO TOP ====================== */
#unilink-go-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 900;
  cursor: pointer;
}

#unilink-go-top.unilink-show {
  opacity: 1;
  visibility: visible;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1050px) {
  .unilink-nav-desktop,
  .unilink-btn-appointment-desktop {
    display: none;
  }

  .unilink-menu-toggle {
    display: block;
  }

  .unilink-nav {
    height: 60px;
  }

  .unilink-logo img {
    height: 36px;
  }

  .unilink-container {
    padding: 0 0.8rem;
  }
}

@media (max-width: 480px) {
  .unilink-header {
    padding: 0 1em !important;
  }
  .unilink-logo img {
    height: 34px;
  }

  .unilink-mobile-menu {
    width: 100%;
    max-width: 100vw;
    padding: 1.2rem;
  }

  .unilink-mobile-header {
    padding-bottom: 0.8rem;
  }

  .unilink-mobile-nav-links a {
    font-size: 1.05rem;
    padding: 0.9rem 0;
  }

  #unilink-go-top {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* header close */

.section-header {
  text-align: center;
  background-color: #f8f9fa;
  padding: 5em 0;
  position: relative;
}

.section-header::after {
  content: "";
  position: absolute;
  height: 5px;
  background-color: #ff6912;
  border-radius: 50px;
  bottom: 25%;
  left: 45%;
  right: 45%;
}

.section-header h1 {
  font-size: 2.5em;
  color: #ff6912;
}

.section-header p {
  font-size: 1em;
  color: #000000dd;
}

.page-header {
  margin-top: 4.4em;
  padding: 5em 0;
  text-align: center;
  background-color: #f56c1f;
}

.page-header h1 {
  font-size: 3em;
  color: #fff;
}

.page-header p {
  font-size: 1em;
  color: #ffffffbc;
}

/* Footer Styles Start */

.float-wp,
.float-chat {
  position: fixed;
  text-decoration: none;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(245, 108, 31, 0.25);
  transition: all 0.2s ease;
  z-index: 1000;
  cursor: pointer;
  font-size: 19px;
}

.float-wp {
  right: 85px;
}

.float-chat {
  right: 30px;
}

.float-wp:hover,
.float-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(245, 108, 31, 0.35);
}

/* === CHAT POPUP – RESPONSIVE & PROFESSIONAL === */
.popup-chatbox {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 350px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 160px);
  background: white;
  border-radius: 4px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  z-index: 99999999999;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.header-chat {
  background: var(--primary-color);
  color: white;
  padding: 16px 18px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.header-chat h2 {
  font-size: 1.35em;
  margin: 0;
}

.header-chat p {
  margin: 5px 0 0;
  font-size: 13px;
  opacity: 0.92;
  font-weight: normal;
}

.body-chat {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f8f9fa;
  font-size: 14px;
}

.msg-item {
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 4px;
  max-width: 78%;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  word-wrap: break-word;
  text-align: left;
}

.msg-bot {
  background: #ffffff;
  color: #212529;
  margin-right: auto;
  border: 1px solid #e9ecef;
}

.msg-user {
  background: var(--primary-color);
  color: white;
  margin-left: auto;
}

.time-stamp {
  font-size: 10.5px;
  opacity: 0.7;
  margin-top: 4px;
  text-align: right;
  font-weight: 500;
}

.countdown-alert {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  text-align: center;
  margin: 16px 0 8px;
  font-weight: 500;
}

.typing-indicator {
  font-style: italic;
  color: #6c757d;
  font-size: 13px;
}

.btn-option {
  display: inline-block;
  margin: 6px 4px;
  padding: 8px 16px;
  background: white;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-option:hover {
  background: var(--primary-color);
  color: white;
}

.input-area-chat {
  padding: 12px;
  background: white;
  border-top: 1px solid #dee2e6;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.input-area-chat input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.input-area-chat input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(245, 108, 31, 0.15);
}

.input-area-chat button {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.input-area-chat button:hover {
  background: var(--primary-hover);
}

/* === TABS – RESPONSIVE === */
.tabs-footer {
  display: flex;
  border-top: 1px solid #dee2e6;
  background: #ffffff;
  flex-shrink: 0;
}

.tab-item {
  flex: 1;
  padding: 12px 6px;
  text-align: center;
  font-size: 11px;
  color: #495057;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
}

.tab-item i {
  display: block;
  margin: 3px auto;
  font-size: 16px;
}

.tab-item.active {
  color: var(--primary-color);
  font-weight: 600;
  background: rgba(245, 108, 31, 0.05);
}

.btn-start-chat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
  background: #fff;
  border: 1px solid var(--primary-color);
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
  margin: 16px auto 0;
  text-decoration: none;
  transition: 0.3s;
  max-width: 90%;
}

.btn-start-chat:hover {
  transform: translateY(-3px);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 480px) {
  .float-wp,
  .float-chat {
    width: 40px;
    height: 40px;
    font-size: 17px;
    bottom: 16px;
  }

  .float-wp {
    right: 72px;
  }

  .float-chat {
    right: 16px;
  }

  .popup-chatbox {
    width: calc(100vw - 32px);
    max-width: 100vw;
    height: calc(100vh - 100px);
    max-height: 100vh;
    bottom: 70px;
    right: 16px;
    border-radius: 4px;
  }

  .header-chat {
    padding: 14px 16px;
    font-size: 16px;
  }

  .header-chat h2 {
    font-size: 1.25em;
  }

  .header-chat p {
    font-size: 12.5px;
  }

  .body-chat {
    padding: 14px;
    font-size: 13.5px;
  }

  .msg-item {
    padding: 9px 12px;
    font-size: 13.5px;
    max-width: 82%;
  }

  .time-stamp {
    font-size: 10px;
  }

  .btn-option {
    padding: 7px 14px;
    font-size: 13px;
    margin: 5px 3px;
  }

  .input-area-chat {
    padding: 10px;
    gap: 6px;
  }

  .input-area-chat input {
    padding: 9px 12px;
    font-size: 13.5px;
  }

  .input-area-chat button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .tab-item {
    padding: 10px 4px;
    font-size: 10.5px;
  }

  .tab-item i {
    font-size: 15px;
    margin: 2px auto;
  }

  .btn-start-chat {
    padding: 12px 14px;
    font-size: 13px;
    max-width: 95%;
  }

  .countdown-alert {
    padding: 9px 12px;
    font-size: 13px;
    margin: 14px 0 6px;
  }
}

@media (max-width: 360px) {
  .float-wp {
    right: 64px;
  }

  .float-chat {
    right: 12px;
  }

  .popup-chatbox {
    bottom: 64px;
    right: 12px;
    width: calc(100vw - 24px);
  }

  .header-chat h2 {
    font-size: 1.2em;
  }

  .btn-option {
    display: block;
    width: 90%;
    margin: 6px auto;
    text-align: center;
  }

  .tab-item {
    font-size: 10px;
    padding: 8px 2px;
  }

  .tab-item i {
    font-size: 14px;
  }
}

/* Footer Styles end */

/* ==== ALL YOUR ORIGINAL CSS (unchanged) ==== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.welcome-msg {
  height: 2.5em;
  /* background-color: var(--primary-color); */
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 3rem;
  line-height: 1.6;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.1s;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.2s;
}

.hero-slide.active .hero-title,
.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-buttons {
  transform: translateY(0);
  opacity: 1;
}

.hero-btn {
  padding: 1rem 2.5rem;
  border: 2px solid;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #f56c1f, #e55b0e);
  border-color: #f56c1f;
  color: #fff;
  box-shadow: 0 8px 25px rgba(245, 108, 31, 0.3);
}

.hero-btn.secondary {
  background: transparent;
  border-color: #2c3e50;
  color: #2c3e50;
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary:hover {
  background: #fff;
  color: #f56c1f;
  border-color: #f56c1f;
}

.hero-btn.secondary:hover {
  background: #2c3e50;
  color: #fff;
  border-color: #2c3e50;
}

.hero-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.hero-btn:hover i {
  transform: translateX(5px);
}

.hero-controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 2rem;
  z-index: 10;
}

.hero-prev,
.hero-next {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
  background: #f56c1f;
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 30px rgba(245, 108, 31, 0.4);
}

.hero-prev i,
.hero-next i {
  font-size: 1rem;
}

.hero-floating {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(245, 108, 31, 0.1),
    rgba(44, 62, 80, 0.05)
  );
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero-floating:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero-floating:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 8%;
  animation-delay: 2s;
}

.hero-floating:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 40%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 450px;
  }

  .content {
    padding: 2rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    margin-bottom: 2rem;
  }

  .hero-btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .hero-controls {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .hero-floating {
    display: none;
  }
}

/* About section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: -4px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: justify;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.about-title {
  font-size: 2em;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.about-subtitle {
  font-size: 1.5em;
  color: #f56c1f;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-description {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 60px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f56c1f, #e55b0e);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(245, 108, 31, 0.3);
}

.about-btn i {
  transition: transform 0.3s ease;
}

.about-btn:hover i {
  transform: translateX(5px);
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.about-detail-item {
  text-align: justify;
}

.about-detail-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  position: relative;
}

.about-detail-item p {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 30px 20px;
  background: linear-gradient(135deg, #e55b0e, #f56c1f);
  border-radius: 50px 0 50px 50px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(229, 91, 14, 0.2);
}

.stat-item {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.95rem;
  color: #ffe8d6;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: justify;
  }

  .about-btn {
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 1.7em;
  }

  .about-subtitle {
    font-size: 1.3em;
  }

  .about-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

.ceo-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .ceo-box {
        background: #ffffff;
        border-radius: 4px;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .ceo-photo {
        flex: 0 0 560px;
        width: 260px;
        overflow: hidden;
        border-right: 1px solid #eaeaea;
    }
    .ceo-photo img {
        width: 100%;
        object-fit: cover;
        display: block;
    }
    .ceo-text {
        flex: 1;
        padding: 40px 50px;
        min-width: 300px;
        text-align: justify;
    }
    .ceo-text h3 {
        font-size: 1.6rem;
        color: #2c3e50;
        margin: 0 0 6px 0;
        font-weight: 600;
    }
    .ceo-text .designation {
        font-size: 1.1rem;
        color: #f56c1f;
        margin: 0 0 25px 0;
        font-weight: 500;
    }
    .ceo-text .message {
        font-size: 1rem;
        line-height: 1.85;
        color: #444;
        margin: 0 0 25px 0;
        position: relative;
        padding-left: 45px;
    }
    .ceo-text .message::before {
        content: "“";
        position: absolute;
        left: 0;
        top: -8px;
        font-size: 5rem;
        color: #f56c1f;
        opacity: 0.12;
        font-family: Georgia, serif;
        line-height: 1;
    }
    .ceo-links a {
        display: inline-block;
        width: 42px;
        height: 42px;
        line-height: 42px;
        text-align: center;
        border-radius: 4px;
        margin-right: 10px;
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
    }
    .ceo-links a.whatsapp { background: #25d366; }
    .ceo-links a.email    { background: #f56c1f; }

    .ceo-empty {
        text-align: center;
        padding: 70px 20px;
        background: white;
        border: 1px solid #eaeaea;
        border-radius: 4px;
    }
    .ceo-empty h3 { color: #2c3e50; margin: 0 0 10px 0; }
    .ceo-empty p  { color: #777; margin: 0; }

    /* Responsive Design */
    @media (max-width: 992px) {
        .ceo-photo {
            flex: 0 0 520px;
            width: 220px;
        }
        .ceo-text {
            padding: 35px 40px;
        }
        .ceo-text h3 { font-size: 1.5rem; }
    }

    @media (max-width: 768px) {
        .ceo-box {
            flex-direction: column;
        }
        .ceo-photo {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid #eaeaea;
        }
        .ceo-text {
            padding: 40px 30px;
            text-align: justify;
        }
        .ceo-text .message {
            padding-left: 40px;
            font-size: 1.02rem;
        }
        .ceo-text .message::before {
            font-size: 4.5rem;
            top: -6px;
        }
    }

    @media (max-width: 480px) {
        .ceo-text {
            padding: 30px 20px;
        }
        .ceo-text h3 {
            font-size: 1.4rem;
        }
        .ceo-text .designation {
            font-size: 1rem;
        }
        .ceo-text .message {
            padding-left: 35px;
            font-size: 0.98rem;
        }
        .ceo-text .message::before {
            font-size: 4rem;
        }
        .ceo-links a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 1.1rem;
        }
    }


/* contact  */

.contact-divider {
  border: 0;
  height: 2px;
  background: #f56c1f;
  margin: 20px;
}

.contact-content {
  display: flex;
  justify-content: center;
  margin: 20px 2em;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
}

.contact-info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-3px);
}

.contact-info-box i {
  font-size: 1.5rem;
  color: #f56c1f;
  margin-bottom: 15px;
}

.contact-info-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.contact-info-box span {
  font-size: 0.9rem;
  color: #7f8c8d;
}

.contact-social-media {
  text-align: center;
  margin-bottom: 20px;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-social-links a {
  font-size: 1.3rem;
  color: #f56c1f;
  text-decoration: none;
  position: relative;
}

.contact-social-links a[title]:after {
  content: attr(title);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3e50;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-social-links a[title]:hover:after {
  visibility: visible;
  opacity: 1;
}

.contact-btn-container {
  display: flex;
  justify-content: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f56c1f, #e55b0e);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.contact-btn i {
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .contact-info-box {
    padding: 25px;
  }

  .contact-btn {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}

@media screen and (max-width: 576px) {
  .contact-section {
    padding: 30px 0;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-info-box {
    padding: 20px;
  }

  .contact-info-box i {
    font-size: 1.3rem;
  }

  .contact-info-box h4 {
    font-size: 1rem;
  }

  .contact-info-box span {
    font-size: 0.9rem;
  }

  .contact-social-links a {
    font-size: 1rem;
  }

  .contact-btn {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}

/* testimonial */

.testimonials-container {
  max-width: 1200px;
  padding: 10em 20px;
}

.testimonials-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-slides {
  display: flex;
  transition: transform 0.3s ease;
}

.testimonials-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 10px;
  transition: transform 0.3s ease;
}

.testimonials-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 5em 0 2em;
  transition: transform 0.3s ease;
  height: 330px;
}

.testimonials-image {
  width: 100%;
  text-align: center;
}

.testimonials-image img {
  width: 100px;
  border-radius: 50%;
  border: 1px solid #f56c1f;
  transform: translateY(-40px);
  background-color: #f56c1f;
  box-shadow: 0 0 20px #8a8a8a;
}

.testimonials-content {
  padding: 0 20px 10px;
  text-align: center;
}

.testimonials-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.testimonials-card-role {
  font-size: 0.9rem;
  color: #f56c1f;
  margin-bottom: 12px;
}

.testimonials-card-message {
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.testimonials-slider-prev,
.testimonials-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #f56c1f, #e55b0e);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.testimonials-slider-prev:hover,
.testimonials-slider-next:hover {
  transform: translateY(-3px);
}

.testimonials-slider-prev {
  left: -50px;
}

.testimonials-slider-next {
  right: -50px;
}

.testimonials-slider-prev i,
.testimonials-slider-next i {
  font-size: 1rem;
}

.testimonials-explore-more {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.testimonials-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f56c1f, #e55b0e);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.testimonials-explore-btn:hover {
  transform: translateY(-3px);
}

.testimonials-explore-btn i {
  margin-left: 8px;
}

@media screen and (max-width: 1024px) {
  .testimonials-slide {
    flex: 0 0 calc(100% / 2);
  }

  .testimonials-slider-prev {
    left: -40px;
  }

  .testimonials-slider-next {
    right: -40px;
  }
}

@media screen and (max-width: 768px) {
  .testimonials-container {
    max-width: 1000px;
  }

  .testimonials-title {
    font-size: 1.4rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-slide {
    flex: 0 0 100%;
  }

  .testimonials-image {
    height: 180px;
  }

  .testimonials-content {
    height: 180px;
  }

  .testimonials-card-title {
    font-size: 1rem;
  }

  .testimonials-card-role {
    font-size: 0.85rem;
  }

  .testimonials-card-message {
    font-size: 0.85rem;
  }

  .testimonials-slider-prev,
  .testimonials-slider-next {
    width: 36px;
    height: 36px;
  }

  .testimonials-slider-prev {
    left: -30px;
  }

  .testimonials-slider-next {
    right: -30px;
  }

  .testimonials-slider-prev i,
  .testimonials-slider-next i {
    font-size: 0.9rem;
  }

  .testimonials-explore-btn {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}

@media screen and (max-width: 576px) {
  .testimonials-section {
    padding: 30px 0;
  }

  .testimonials-container {
    max-width: 800px;
  }

  .testimonials-title {
    font-size: 1.2rem;
  }

  .testimonials-subtitle {
    font-size: 0.9rem;
  }

  .testimonials-image {
    height: 160px;
  }

  .testimonials-content {
    height: 160px;
  }

  .testimonials-card-title {
    font-size: 1rem;
  }

  .testimonials-card-role {
    font-size: 0.8rem;
  }

  .testimonials-card-message {
    font-size: 0.8rem;
  }

  .testimonials-slider-prev,
  .testimonials-slider-next {
    width: 32px;
    height: 32px;
  }

  .testimonials-slider-prev {
    left: -20px;
  }

  .testimonials-slider-next {
    right: -20px;
  }

  .testimonials-slider-prev i,
  .testimonials-slider-next i {
    font-size: 0.9rem;
  }

  .testimonials-explore-btn {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}

/* blog view page */
:root {
  --o: #f56c1f;
  --d: #2c3e50;
  --g: #f8f9fa;
}

a {
  text-decoration: none;
}

.wrapper {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.main {
  flex: 2;
  min-width: 300px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar {
  flex: 1;
  min-width: 280px;
}

.post-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.post {
  padding: 40px;
}

.post h1 {
  font-size: 2.4rem;
  color: var(--d);
  margin-bottom: 10px;
  line-height: 1.2;
}

.meta {
  color: var(--o);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}

.content {
  font-size: 1.1rem;
  margin: 30px 0;
  line-height: 1.7;
}

.actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0;
  justify-content: flex-start;
}

.btn {
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  font-size: 1rem;
  border-radius: 4px;
  min-height: 44px;
}

.like-btn {
  background: #ffe6e6;
  color: #e74c3c;
  border: 2px solid #ffc4c4;
}

.like-btn.liked {
  background: #e74c3c;
  color: #fff;
}

.share-btn {
  background: #e8f5e8;
  color: #27ae60;
  border: 2px solid #c8e6c9;
  position: relative;
}

.dropdown-blog {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: #fff;
  border: 2px solid #ddd;
  margin-top: 8px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-blog a {
  display: block;
  padding: 12px 15px;
  color: #333;
  font-size: 0.95rem;
}

.dropdown-blog a:hover {
  background: #f0f0f0;
}

.comment-box {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.comment-box h3 {
  margin-bottom: 15px;
  color: var(--d);
  font-size: 1.3rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

input,
textarea {
  padding: 14px;
  border: 2px solid #ddd;
  font-size: 1rem;
  border-radius: 4px;
  width: 100%;
  transition: border 0.2s;
}

input:focus,
textarea:focus {
  border-color: var(--o);
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.send-btn {
  background: var(--o);
  color: #fff;
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 4px;
}

.comments {
  margin-top: 25px;
}

.comment {
  background: #f8f9fa;
  padding: 16px;
  margin-bottom: 14px;
  position: relative;
  border-radius: 4px;
  font-size: 0.98rem;
}

.comment strong {
  color: var(--o);
}

.comment small {
  color: #777;
  font-size: 0.85rem;
}

.comment-text {
  margin-top: 6px;
}

.comment-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  gap: 8px;
  display: flex;
  opacity: 0;
  transition: 0.2s;
  font-size: 0.9rem;
}

.comment:hover .comment-actions {
  opacity: 1;
}

.comment-actions button {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.comment-actions button:hover {
  background: #ffe6e6;
}

.edit-box {
  display: none;
  margin-top: 12px;
}

.edit-box textarea {
  width: 100%;
  min-height: 80px;
  margin-bottom: 8px;
}

.edit-actions {
  display: flex;
  gap: 8px;
}

.edit-actions button {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
}

.edit-actions .save-edit {
  background: var(--o);
  color: #fff;
}

.edit-actions .cancel-edit {
  background: #ddd;
  color: #333;
}

.back {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 14px 32px;
  background: var(--d);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
}

.suggestions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.suggestion-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  border-radius: 4px;
}

.suggestion-card:hover {
  transform: translateY(-5px);
}

.suggestion-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.card-body {
  padding: 16px;
}

.card-title {
  font-size: 1.1rem;
  color: var(--d);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-author {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.card-stats {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 12px;
}

.card-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.read-btn {
  display: block;
  text-align: center;
  background: var(--o);
  color: #fff;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 1024px) {
  .wrapper {
    gap: 20px;
    padding: 0 15px;
  }

  .post h1 {
    font-size: 2.1rem;
  }

  .post-img img {
    height: 340px;
  }
}

@media (max-width: 992px) {
  .wrapper {
    flex-direction: column;
    margin: 30px auto;
  }

  .main,
  .sidebar {
    flex: 1;
    min-width: 100%;
  }

  .suggestions {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }

  .suggestion-card {
    min-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .post {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .post {
    padding: 24px;
  }

  .post h1 {
    font-size: 1.9rem;
  }

  .post-img img {
    height: 260px;
  }

  .content {
    font-size: 1.05rem;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.95rem;
  }

  .input-group input,
  .input-group textarea {
    padding: 12px;
  }

  .send-btn {
    padding: 11px 24px;
  }
}

@media (max-width: 600px) {
  .wrapper {
    margin: 20px auto;
    padding: 0 12px;
  }

  .post {
    padding: 20px;
  }

  .post h1 {
    font-size: 1.75rem;
  }

  .post-img img {
    height: 200px;
  }

  .meta {
    font-size: 0.95rem;
  }

  .content {
    font-size: 1rem;
    margin: 24px 0;
  }

  .actions {
    gap: 12px;
    justify-content: center;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    min-height: 40px;
  }

  .comment {
    padding: 14px;
    font-size: 0.94rem;
  }

  .comment small {
    font-size: 0.8rem;
  }

  .comment-actions {
    opacity: 1;
    position: static;
    margin-top: 10px;
    justify-content: flex-end;
  }

  .comment-actions button {
    font-size: 0.85rem;
    padding: 4px 10px;
  }

  .back {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .suggestion-card img {
    height: 120px;
  }

  .card-body {
    padding: 14px;
  }

  .card-title {
    font-size: 1rem;
  }

  .read-btn {
    padding: 9px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .post h1 {
    font-size: 1.6rem;
  }

  .post-img img {
    height: 180px;
  }

  .btn {
    font-size: 0.85rem;
    padding: 9px 16px;
  }

  .input-group {
    gap: 10px;
  }

  input,
  textarea {
    font-size: 0.95rem;
  }

  .send-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .suggestion-card {
    min-width: 230px;
  }

  .card-stats {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
  }
}

/* contact page */
.contact-wave {
  position: relative;
  background: var(--light);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 20px;
}

.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: var(--orange);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.5);
  z-index: 0;
  animation: wave 8s infinite ease-in-out;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0) scaleX(1.5);
  }

  50% {
    transform: translateY(-30px) scaleX(1.6);
  }
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-left,
.contact-right {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 4px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-item:hover {
  background: rgba(245, 108, 31, 0.1);
  transform: translateX(8px);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.info-item:hover .info-text {
  color: var(--orange);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.social-row a {
  width: 46px;
  height: 46px;
  background: var(--white);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-row a:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-4px);
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.input-box {
  position: relative;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  color: var(--dark);
  background: transparent;
  transition: all 0.3s ease;
}

.input-box textarea {
  min-height: 110px;
  resize: vertical;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 108, 31, 0.2);
}

.input-box label {
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: 0.95rem;
  color: var(--gray);
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 4px;
}

.input-box input:focus + label,
.input-box textarea:focus + label,
.input-box input:not(:placeholder-shown) + label,
.input-box textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
}

.submit-btn {
  grid-column: 1 / -1;
  justify-self: center;
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 108, 31, 0.3);
}

.submit-btn:hover {
  background: #e55b0e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 108, 31, 0.4);
}

.status-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  font-weight: 500;
  margin-bottom: 15px;
}

.status-success {
  background: rgba(46, 204, 113, 0.15);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-error {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .wave-bg {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 20px;
  }

  .wave-bg {
    height: 150px;
  }
}

/* view page */

.view-header {
  height: 270px;
  margin-top: 4.4em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  color: #fff;
}

.view-header h1 {
  font-size: 4rem;
}

.country-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.country-image img {
  border: 10px solid #fff;
  width: 180px;
  transform: translateY(-60px);
}

/* CONTENT SECTIONS */
.countryview {
  padding: 0px 0;
}

.countryview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.countryview-text {
  max-width: 1100px;
  margin: 0 auto;
}

.countryview-section {
  background: var(--white);
  padding: 36px;
  margin-bottom: 32px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 5px solid var(--orange);
}

.countryview-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 14px;
}

.countryview-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 5px;
  background: var(--orange);
  border-radius: 4px;
}

.countryview-section p {
  color: var(--gray);
  line-height: 1.85;
  font-size: 1.05rem;
}

/* BACK BUTTON */
.countryview-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--orange), var(--primary-hover));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(245, 108, 31, 0.35);
  border: 3px solid var(--orange);
  margin-top: 30px;
}

.countryview-btn:hover {
  background: var(--white);
  color: var(--orange);
  border: 3px solid var(--orange);
  box-shadow: 0 18px 40px rgba(245, 108, 31, 0.45);
}

.countryview-btn i {
  transition: transform 0.35s ease;
}

.countryview-btn:hover i {
  transform: translateX(-10px);
}

/* RESPONSIVE ONLY - NO NEW STYLES */
@media (max-width: 992px) {
  .view-header h1 {
    font-size: 3rem;
  }

  .country-image img {
    width: 150px;
    transform: translateY(-50px);
  }
}

@media (max-width: 768px) {
  .view-header {
    padding: 3em 0;
  }

  .view-header h1 {
    font-size: 2.5rem;
  }

  .country-image img {
    width: 120px;
    transform: translateY(-40px);
  }

  .countryview-section {
    padding: 24px;
  }

  .countryview-section h3 {
    font-size: 1.5rem;
  }

  .eventpage-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .view-header {
    padding: 2em 0;
    margin-top: 3.5em;
  }

  .view-header h1 {
    font-size: 2rem;
  }

  .country-image img {
    width: 100px;
    border-width: 6px;
    transform: translateY(-30px);
  }

  .countryview-container {
    padding: 0 15px;
  }

  .countryview-section {
    padding: 20px;
  }

  .countryview-section h3 {
    font-size: 1.35rem;
  }

  .countryview-section p {
    font-size: 1rem;
  }

  .countryview-btn {
    padding: 14px 30px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .eventpage-grid {
    grid-template-columns: 1fr;
  }

  .eventpage-card {
    flex-direction: column;
    text-align: center;
  }

  .eventpage-left,
  .eventpage-right {
    width: 100%;
  }

  .eventpage-left {
    padding: 20px;
  }

  .eventpage-image {
    width: 90px;
    height: 90px;
    margin: 0 auto;
  }

  .eventpage-image img {
    width: 100%;
    height: 100%;
  }
}

/* event registration page */
/* event view page */

.eventview-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-hero {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.event-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 2rem;
}

.event-hero h1 {
  font-size: 2.2rem;
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 1rem;
}

.event-meta i {
  color: #f56c1f;
  margin-right: 0.5rem;
}

.event-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.live {
  background: #e74c3c;
  animation: pulse 2s infinite;
}

.upcoming {
  background: #f56c1f;
}

.ended {
  background: #7f8c8d;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }
}

.event-split-content {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.event-left,
.event-right {
  flex: 1;
  min-width: 300px;
}

.event-left h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-description {
  line-height: 1.8;
  color: #444;
  font-size: 1rem;
  text-align: justify;
}

.reg-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  padding: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 380px;
  margin: 0 auto;
}

.reg-card h4 {
  text-align: center;
  margin: 0 0 1.2rem;
  color: #2c3e50;
  font-weight: 600;
}

.reg-message {
  padding: 0.9rem 1.1rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
}

.reg-success {
  background: #e8f5e8;
  color: #27ae60;
  border: 1px solid #a8e6a8;
}

.reg-error {
  background: #fceaea;
  color: #e74c3c;
  border: 1px solid #f5b7b7;
}

.reg-group {
  margin-bottom: 1.1rem;
}

.reg-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.input-box {
  position: relative;
}

.input-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #95a5a6;
  font-size: 1.1rem;
}

.reg-group input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s;
}

.reg-group input:focus {
  outline: none;
  border-color: #f56c1f;
  box-shadow: 0 0 0 3px rgba(245, 108, 31, 0.15);
}

.reg-group input:focus + i {
  color: #f56c1f;
}

.reg-btn {
  width: 100%;
  padding: 0.95rem;
  background: #f56c1f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reg-btn:hover {
  background: #e55b0e;
}

.reg-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f56c1f;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border: 2px solid #f56c1f;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.back-btn:hover {
  background: #f56c1f;
  color: #fff;
}

.suggested-section {
  margin-top: 3rem;
}

.suggested-title {
  text-align: center;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.suggested-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.suggested-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.suggested-card:hover {
  transform: translateY(-5px);
}

.suggested-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.suggested-body {
  padding: 1rem;
}

.suggested-body h4 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  color: #2c3e50;
}

.suggested-link {
  color: #f56c1f;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.suggested-link:hover {
  text-decoration: underline;
}

.not-found {
  text-align: center;
  padding: 3rem 1rem;
}

.not-found h2 {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  background: #f56c1f;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.explore-btn:hover {
  background: #e55b0e;
}

@media (max-width: 768px) {
  .event-split-content {
    flex-direction: column;
  }

  .event-hero-img {
    height: 300px;
  }

  .event-hero h1 {
    font-size: 1.9rem;
  }

  .reg-card {
    padding: 1.5rem;
  }
}

/* event page */

.eventpage {
  background: #ffffff;
  /* height: 100vh; */
}

.eventpage-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.eventpage-search-input {
  width: 100%;
  max-width: 500px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #2c3e50;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  outline: none;
  transition: border-color 0.3s ease;
  margin-bottom: 3em;
}

.eventpage-search-input:focus {
  border-color: #f56c1f;
}

/* FLEXBOX: 3 Cards per Row */
.eventpage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.eventpage-card {
  flex: 0 1 calc(33.333% - 20px);
  /* 3 per row */
  max-width: calc(33.333% - 20px);
  /* background: #f8f9fa; */
  border-radius: 4px;
  /* CHANGED */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: row;
  padding: 20px;
  position: relative;
  border: 1px solid #f56c1f;
}

.eventpage-image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  /* CHANGED */
}

.eventpage-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  /* CHANGED */
}

.eventpage-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  text-align: left;
}

.eventpage-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 20px;
}

.eventpage-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-left: 20px;
  border-left: 1px solid #e0e0e0;
}

.eventpage-card-location,
.eventpage-card-datetime,
.eventpage-card-description {
  font-size: 1rem;
  margin-bottom: 8px;
  text-align: left;
}

.eventpage-card-location {
  font-weight: 400;
  color: var(--primary-color);
}

.eventpage-card-datetime {
  font-weight: 400;
  color: #2c3e50;
}

.eventpage-card-description {
  color: #7f8c8d;
  line-height: 1.7;
}

.eventpage-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 1px solid #f56c1f;
  border-left: 1px solid #f56c1f;
  border-radius: 50% 0 0 0;
  /* Keep circle */
  background: linear-gradient(135deg, #f56c1f, #e55b0e);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.eventpage-btn:hover {
  background: #ffffff;
  color: #f56c1f;
  border-color: #f56c1f;
  /* transform: translateY(-5px); */
  box-shadow: 0 8px 25px rgba(245, 108, 31, 0.3);
}

/* RESPONSIVE: 2 Cards (Tablet) */
@media screen and (max-width: 991px) {
  .eventpage-card {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* RESPONSIVE: 1 Card (Mobile) */
@media screen and (max-width: 768px) {
  .eventpage-card {
    flex: 0 1 100%;
    max-width: 100%;
    flex-direction: column;
    padding: 15px;
  }

  .eventpage-left {
    padding-right: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    border-right: none;
  }

  .eventpage-right {
    padding-left: 0;
    padding-top: 15px;
    border-left: none;
    text-align: center;
  }

  .eventpage-card-location,
  .eventpage-card-datetime,
  .eventpage-card-description {
    text-align: center;
  }

  .eventpage-image {
    width: 100%;
    margin: 0 auto 15px;
  }

  .eventpage-image img {
    border-radius: 4px;
    /* Circle on mobile */
  }

  .eventpage-card-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .eventpage-btn {
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 576px) {
  .eventpage-image {
    width: 100%;
  }

  .eventpage-card-title {
    font-size: 1.1rem;
  }

  .eventpage-card-location,
  .eventpage-card-datetime,
  .eventpage-card-description {
    font-size: 0.9rem;
  }

  .eventpage-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* team page */

/* testimonial page */
.unilink-testimonials {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.unilink-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.unilink-testimonials-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
}

.unilink-testimonials-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.unilink-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.unilink-testimonial-card {
  background: #f8f9fa;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: row;
  padding: 20px;
}

.unilink-testimonial-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 20px;
}

.unilink-testimonial-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin-bottom: 15px;
}

.unilink-testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #f56c1f;
}

.unilink-testimonial-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.unilink-testimonial-card-role {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.unilink-testimonial-right {
  flex: 2;
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-left: 1px solid #e0e0e0;
}

.unilink-testimonial-card-message {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.7;
  text-align: left;
}

.unilink-testimonials-explore-more {
  margin-top: 40px;
  text-align: center;
}

.unilink-explore-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border: 2px solid #f56c1f;
  border-radius: 50px;
  background: linear-gradient(135deg, #f56c1f, #e55b0e);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.unilink-explore-more-btn:hover {
  background: #ffffff;
  color: #f56c1f;
  border-color: #f56c1f;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 108, 31, 0.3);
}

.unilink-explore-more-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.unilink-explore-more-btn:hover i {
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .unilink-testimonials {
    padding: 60px 0;
  }

  .unilink-testimonials-title {
    font-size: 2.2rem;
  }

  .unilink-testimonials-subtitle {
    font-size: 1.1rem;
  }

  .unilink-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .unilink-testimonial-card {
    flex-direction: column;
    padding: 15px;
  }

  .unilink-testimonial-left {
    padding-right: 0;
    padding-bottom: 15px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .unilink-testimonial-right {
    padding-left: 0;
    padding-top: 15px;
    border-left: none;
  }

  .unilink-testimonial-card-message {
    text-align: center;
  }

  .unilink-testimonial-image {
    width: 90px;
    height: 90px;
  }

  .unilink-testimonial-card-title {
    font-size: 1.2rem;
  }

  .unilink-testimonial-card-role {
    font-size: 0.9rem;
  }

  .unilink-testimonial-card-message {
    font-size: 0.95rem;
  }

  .unilink-explore-more-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .unilink-testimonials {
    padding: 40px 0;
  }

  .unilink-testimonials-title {
    font-size: 1.8rem;
  }

  .unilink-testimonials-subtitle {
    font-size: 1rem;
  }

  .unilink-testimonial-image {
    width: 80px;
    height: 80px;
  }

  .unilink-testimonial-card-title {
    font-size: 1.1rem;
  }

  .unilink-testimonial-card-role {
    font-size: 0.85rem;
  }

  .unilink-testimonial-card-message {
    font-size: 0.9rem;
  }

  .unilink-explore-more-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .unilink-testimonial-card {
    padding: 15px;
  }
}

.add-testimonial-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 50px;
  background-color: #fff;
  color: #e55b0e;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.add-testimonial-btn:hover {
  background-color: #f5f5f5;
}

.add-testimonial-text {
  margin-right: 5px;
}

.add-testimonial-icon {
  font-size: 18px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 4px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.close-btn:hover {
  background-color: #f0f0f0;
  color: #000;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: #f9f9f9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e55b0e;
  box-shadow: 0 0 5px rgba(229, 91, 14, 0.3);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  grid-column: span 2;
  text-align: center;
}

.submit-btn {
  padding: 12px 30px;
  background-color: #e55b0e;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #cc4d0d;
}

.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px;
  border-radius: 4px;
  z-index: 1001;
  display: flex;
  align-items: center;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.close-alert {
  margin-left: 15px;
  cursor: pointer;
  font-size: 20px;
}

.top-right {
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}

/* achievement section start */

/* Slider Container */
.slider {
  position: relative;
  max-width: 1300px;
  margin: 0 auto 80px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  height: 560px;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Image Side */
.image-side {
  width: 45%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8f5 0%, #fff0e6 100%);
}

.image-side img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

/* Content Side */
.content-side {
  width: 55%;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.content-side h3 {
  font-size: 38px;
  color: #f56c1f;
  margin: 0 0 24px;
  line-height: 1.2;
  font-weight: 700;
}

.content-side p {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 28px;
}

.date {
  font-size: 15px;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Next Button - Elegant Floating */
.next-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #f56c1f;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.next-btn:hover {
  background: #e55b0e;
  box-shadow: 0 15px 40px rgba(245, 108, 31, 0.45);
}

/* No Data State */
.no-data {
  text-align: center;
  padding: 140px 40px;
  background: #fff;
  border-radius: 4px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.no-data div {
  font-size: 80px;
  color: #f56c1f;
  margin-bottom: 20px;
}

.no-data p {
  font-size: 22px;
  color: #666;
  margin: 12px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .slider {
    height: auto;
  }

  .slide {
    flex-direction: column;
  }

  .image-side,
  .content-side {
    width: 100%;
  }

  .image-side {
    height: 420px;
    padding: 50px 30px;
  }

  .content-side {
    padding: 70px 50px;
  }

  .next-btn {
    top: auto;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 4px;
  }
}

@media (max-width: 576px) {
  .section-header h1 {
    font-size: 36px;
  }

  .section-header::after {
    bottom: 15%;
  }

  .section-header {
    padding: 60px 20px 40px;
  }

  .content-side h3 {
    font-size: 30px;
  }

  .content-side p {
    font-size: 17px;
  }

  .image-side {
    height: 320px;
  }

  .next-btn {
    width: 56px;
    height: 56px;
    font-size: 20px;
    border-radius: 4px;
    bottom: 0;
  }
}

/* apply process */

/* LEFT-TO-RIGHT AUTO SCROLL – FULLY MATCHES YOUR EXISTING CSS (Alan Sans + Orange Theme) */
.study-process-section {
  max-width: 100%;
  margin: 80px auto;
  padding: 40px 30px;
  background: var(--light);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.study-process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #ff8a50,
    var(--primary-color)
  );
  background-size: 200%;
  animation: flowBar 4s linear infinite;
}

@keyframes flowBar {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.process-container {
  height: 520px;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.process-content {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  width: max-content;
  animation: scrollL2R 40s linear infinite;
}

@keyframes scrollL2R {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.process-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--white);
  padding: 26px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 108, 31, 0.18);
  border-color: var(--primary-color);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.card-num {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(245, 108, 31, 0.4);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.65;
  margin: 12px 0 16px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  font-size: 0.9rem;
  color: var(--text-color);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.process-cta {
  display: block;
  width: 300px;
  margin: 50px auto 20px;
  padding: 16px 20px;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(245, 108, 31, 0.35);
  transition: var(--transition);
}

.process-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(245, 108, 31, 0.45);
}

.pause-control {
  display: block;
  margin: 15px auto;
  padding: 10px 28px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.pause-control:hover {
  background: var(--primary-color);
  color: white;
}

@media (max-width: 768px) {
  .process-content {
    animation-duration: 48s;
  }

  .process-card {
    width: 300px;
  }

  .process-cta {
    width: 280px;
  }
}

/* Subscriber section */

/* Newsletter Section */
.ul-newsletter {
  padding: 60px 20px;
  background: url("images/subscriber-banner.webp") no-repeat center/cover;
  background-attachment: fixed;
  text-align: center;
}

.ul-newsletter-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Title and Subtitle */
.ul-newsletter-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f56c1f;
  margin-bottom: 12px;
}

.ul-newsletter-subtitle {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Form Styling */
.ul-newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ul-form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.ul-newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 18px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.ul-newsletter-input:focus {
  border-color: #f56c1f;
}

/* Subscribe Button */
.ul-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 16px;
  background: linear-gradient(135deg, #f56c1f, #e55b0e);
  color: white;
  border: none;
  border-radius: 30px;
  font-family: "Alan Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(245, 108, 31, 0.3);
}

.ul-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 108, 31, 0.4);
}

/* Messages */
.ul-success-message {
  color: #27ae60;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  padding: 8px 0;
}

.ul-error-message {
  color: #e74c3c;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  padding: 8px 0;
}

/* appointment */

.appointment-head {
  background: url("images/appointment-banner.svg") no-repeat center/cover;
}

.ug-form-wrapper {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: white;
}

.ug-msg-success,
.ug-msg-error {
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.ug-msg-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.ug-msg-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.ug-progress-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  /* flex-wrap: wrap; */
}

.ug-progress-item {
  padding: 10px 16px;
  background: #e9ecef;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #666;
  min-width: 33.33%;
  text-align: center;
}

.ug-progress-item.active {
  background: #f56c1f;
  color: white;
}

.ug-progress-item.completed {
  background: #28a745;
  color: white;
}

.ug-form-container {
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.ug-form-step {
  display: none;
}

.ug-form-step.active {
  display: block;
}

.ug-step-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 20px;
  border-bottom: 2px solid #f56c1f;
  padding-bottom: 8px;
}

.ug-input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.ug-input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #444;
}

.ug-input-field {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.ug-input-field:focus {
  outline: none;
  border-color: #f56c1f;
}

.ug-error-state .ug-input-field {
  border-color: #e74c3c;
  background: #fdf2f2;
}

.ug-error-text {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.ug-error-state .ug-error-text {
  display: block;
}

.ug-btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.ug-btn-prev,
.ug-btn-next,
.ug-btn-submit {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  min-width: 120px;
}

.ug-btn-next,
.ug-btn-submit {
  background: #f56c1f;
  color: white;
}

.ug-btn-prev {
  background: #6c757d;
  color: white;
}

.ug-btn-next:hover,
.ug-btn-submit:hover {
  background: #e55b0e;
}

.ug-btn-prev:hover {
  background: #5a6268;
}

.ug-back-link {
  display: inline-block;
  margin-top: 20px;
  color: #f56c1f;
  text-decoration: none;
  font-weight: bold;
}

.ug-back-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ug-input-grid {
    grid-template-columns: 1fr;
  }

  .ug-btn-group {
    flex-direction: column;
  }
}

.google-review {
  padding: 3em 0;
}
