@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap");

:root {
  --primary: #002b5b;
  --accent-teal: #00a6a6;
  --soft-bg: #f2f9ff;
  --highlight: #38b6ff;
  --text-dark: #012a4a;
  --white: #ffffff;
  --light-gray: #e8f4f8;
  --hero-height: min(85vh, 600px);
  --header-offset: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

body::-webkit-scrollbar {
  display: none;
}

/* ==================== HEADER STYLES ==================== */

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 43, 91, 0.1);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#logo {
  height: 70px;
  display: block;
}

/* ==================== MAIN NAVIGATION - CENTER ==================== */

nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex: 1;
}

nav a {
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: rgb(10, 8, 94);
  font-size: 18px;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

nav a:hover {
  background-color: rgba(10, 8, 94, 0.12);
  transform: translateY(-2px);
}

/* Dropdown Styles */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 43, 91, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1100;
  margin-top: 10px;
  overflow: hidden;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--primary);
  font-size: 16px;
  border-radius: 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown a:hover {
  background-color: rgba(0, 166, 166, 0.1);
  border-left-color: var(--accent-teal);
  transform: translateX(5px);
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* ==================== RIGHT SIDE BUTTONS ==================== */

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* Update this section in your home page CSS */

.register-btn {
  padding: 6px 17px;
  background-color: transparent;
  color: rgb(10, 8, 94);
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid rgb(10, 8, 94);
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}

.register-btn:hover {
  background-color: rgb(10, 8, 94);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 8, 94, 0.4);
}

.login-btn {
  padding: 8px 20px;
  background-color: rgb(10, 8, 94);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 8, 94, 0.4);
}

/* ==================== HAMBURGER & MOBILE MENU ==================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ==================== PDF MODAL STYLES ==================== */

.pdf-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-modal-overlay.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.pdf-modal {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.pdf-modal-overlay.active .pdf-modal {
  transform: scale(1);
}

.pdf-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #2c3e50;
  color: white;
  border-bottom: 2px solid #34495e;
}

.pdf-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.pdf-modal-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.pdf-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pdf-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: #ecf0f1;
  border-bottom: 1px solid #bdc3c7;
  flex-wrap: wrap;
}

.pdf-control-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pdf-control-btn:hover {
  background: #2980b9;
}

.pdf-control-btn:disabled {
  background: #95a5a6;
  cursor: not-allowed;
}

.pdf-page-info {
  font-size: 14px;
  color: #2c3e50;
  font-weight: 500;
}

.pdf-zoom-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdf-viewer-container {
  flex: 1;
  overflow: auto;
  background: #525659;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.pdf-canvas-wrapper {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#pdfCanvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.pdf-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  display: none;
  text-align: center;
}

.pdf-loading.active {
  display: block;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Main Content */
.terms-container {
  max-width: 1500px;
  height: 700px;
  margin: 60px auto 80px;

}

.terms-container p {
  font-size: 5rem;
  text-align: center;
}

.committee-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
}

/* Members Grid */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.member-card {
  background: var(--soft-bg);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-teal);
  transition: all 0.3s ease;
  position: relative;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 166, 166, 0.15);
  border-left-color: var(--highlight);
}

.member-name {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.member-role {
  font-size: 0.95em;
  color: var(--accent-teal);
  font-weight: 500;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, var(--soft-bg), white);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--accent-teal);
  margin-bottom: 40px;
  text-align: center;
}

.info-box p {
  font-size: 1.1em;
  color: var(--text-dark);
  line-height: 1.8;
}

/* Main Container */
.committee-container {
  max-width: 1200px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

/* Committee Section */
.committee-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 43, 91, 0.08);
  margin-bottom: 40px;
}

.committee-header {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.committee-header h2 {
  font-size: 1.8em;
  font-weight: 600;
}

/* =====================reg =========================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

.reg-page{
  padding-top: 120px;
}

.container1 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
  max-width: 1520px;
  width: calc(100% - 80px);
  margin: 100px auto 150px;
  padding:40px 40px;
}

.page-title1 {
  font-size: 32px;
  font-weight: 700;
  color: #0d4d6d;
  margin-bottom: 35px;
  text-align: center;
  margin-top: 50px;
}

.tabs1 {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab1 {
  padding: 12px 28px;
  border: none;
  background: #e8e8e8;
  color: #666;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
}

.tab1.active {
  background: linear-gradient(135deg, #1a7a9e, #4db8b8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(29, 122, 158, .3)
}

.tab1:hover:not(.active) {
  background: #d5d5d5
}

.content1 {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 35px;
  border: 2px solid #e0e0e0
}

.form-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px
}

.form-section1 {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 2px solid #1a7a9e
}

.section-title1 {
  font-size: 18px;
  font-weight: 600;
  color: #0d4d6d;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4db8b8
}

.form-row1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px
}

.form-group1 {
  display: flex;
  flex-direction: column
}

.form-group1.full-width {
  grid-column: 1/-1
}

label1 {
  font-size: 18px;
  color: #555;
  margin-bottom: 6px;
  font-weight: 500
}

input[type=email],
input[type=text],
select {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  transition: all .3s ease;
  background: #fff
}

input[type=email]:focus,
input[type=text]:focus,
select:focus {
  outline: 0;
  border-color: #1a7a9e;
  box-shadow: 0 0 0 3px rgba(26, 122, 158, .1)
}

.upload-section1 {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 2px solid #1a7a9e
}

.upload-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px
}

.upload-box1 {
  display: flex;
  flex-direction: column;
  align-items: center
}

.preview-area1 {
  width: 140px;
  height: 140px;
  border: 2px dashed #1a7a9e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f9fa;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease
}

.preview-area1:hover {
  border-color: #4db8b8;
  background: #e8f4f5
}

.preview-area1 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.upload-btn1 {
  padding: 10px 24px;
  background: linear-gradient(135deg, #1a7a9e, #4db8b8);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease
}

.upload-btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 122, 158, .3)
}

.qualification-section1 {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 2px solid #1a7a9e;
  margin-bottom: 30px
}

.section-title1 {
  font-size: 18px;
  font-weight: 600;
  color: #0d4d6d;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4db8b8
}

.qualification-table1 {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px
}

.qualification-table1 th {
  background: linear-gradient(135deg, #1a7a9e, #4db8b8);
  color: #fff;
  padding: 12px 10px;
  text-align: left;
  font-size: 18px;
  font-weight: 600
}

.qualification-table1 td {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0
}

.qualification-table1 input[type=text],
.qualification-table1 select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 18px;
  background: #fff;
  transition: all .3s ease
}

.qualification-table1 input[type=text]:focus,
.qualification-table1 select:focus {
  outline: 0;
  border-color: #1a7a9e;
  box-shadow: 0 0 0 2px rgba(26, 122, 158, .1)
}

.upload-btn1 {
  padding: 8px 20px;
  background: linear-gradient(135deg, #1a7a9e, #4db8b8);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap
}

.upload-btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 122, 158, .3)
}

.add-row-btn1 {
  padding: 10px 24px;
  background: #fff;
  color: #1a7a9e;
  border: 2px solid #1a7a9e;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease
}

.add-row-btn1:hover {
  background: #1a7a9e;
  color: #fff
}

.action-buttons1 {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  gap: 15px
}

.terms-list1 {
  list-style: none;
  counter-reset: terms-counter
}

.terms-list1>li {
  counter-increment: terms-counter;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 18px;
  line-height: 1.6;
  color: #333
}

.terms-list1>li::before {
  content: counter(terms-counter) ".";
  font-weight: 600;
  min-width: 20px;
  color: #0d4d6d
}

.terms-list1 .sub-list {
  list-style: none;
  counter-reset: sub-counter;
  margin-top: 8px;
  padding-left: 0
}

.terms-list1 .sub-list li {
  counter-increment: sub-counter;
  margin-bottom: 8px;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 15px
}

.terms-list1 .sub-list li::before {
  content: counter(sub-counter, lower-alpha) ".";
  font-weight: 600;
  color: var(--text-dark);
  min-width: 20px
}

.no-counter {
  counter-increment: none !important
}

.no-counter::before {
  content: none !important
}

.radio-group1 {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
  min-width: 120px
}

.radio-option1 {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer
}

.radio-option1 input[type=radio] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #1a7a9e
}

.radio-option1 label {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #333
}

.experience-section1,
.terms-section1 {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 2px solid #1a7a9e;
  margin-bottom: 30px
}

.section-title1 {
  font-size: 18px;
  font-weight: 600;
  color: #0d4d6d;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4db8b8
}

.experience-table1 {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px
}

.experience-table1 th {
  background: linear-gradient(135deg, #1a7a9e, #4db8b8);
  color: #fff;
  padding: 12px 10px;
  text-align: left;
  font-size: 18px;
  font-weight: 600
}

.experience-table1 td {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0
}

.experience-table1 input[type=text],
.experience-table1 select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 18px;
  background: #fff;
  transition: all .3s ease
}

.experience-table1 input[type=text]:focus,
.experience-table1 select:focus {
  outline: 0;
  border-color: #1a7a9e;
  box-shadow: 0 0 0 2px rgba(26, 122, 158, .1)
}

.last-updated1 {
  font-size: 1em;
  opacity: 0.9;
  font-weight: 400;
}

/* Main Content */
.terms-container1 {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

.terms-content1 {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 43, 91, 0.08);
}

.intro-text1 {
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--soft-bg);
}

.terms-section1 {
  margin-bottom: 40px;
}

.terms-section1 h2 {
  color: var(--primary);
  font-size: 1.6em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-number1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: 700;
  flex-shrink: 0;
}

.terms-section1 p {
  font-size: 1.05em;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.terms-section1 ul {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.terms-section1 li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 1.05em;
  color: var(--text-dark);
}

.terms-section1 li::before {
  /* content: "•"; */
  position: absolute;
  left: 0px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.05em;
  
}

/* Highlight Box */
.highlight-box1 {
  background: var(--soft-bg);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-teal);
  margin: 20px 0;
}

.highlight-box1 p {
  margin: 8px 0;
  font-weight: 500;
}

/* Contact Box */
.contact-box1 {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-top: 20px;
}

.contact-box1 h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.contact-box1 p {
  margin: 8px 0;
  font-size: 1.05em;
  color: white;
}

.contact-box1 a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.contact-box1 a:hover {
  border-bottom-color: white;
}

.refund-container {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

.refund-content {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 43, 91, 0.08);
}

.intro-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--soft-bg);
}

.refund-section {
  margin-bottom: 40px;
}

.refund-section h2 {
  color: var(--primary);
  font-size: 1.6em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: 700;
  flex-shrink: 0;
}

.refund-section p {
  font-size: 1.05em;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.refund-section ul {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.refund-section li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 1.05em;
  color: var(--text-dark);
}

/* Green checkmark for eligible cases */
.eligible-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00A6A6;
  font-weight: 700;
  font-size: 1.3em;
}

/* Red X for non-refundable cases */
.non-refundable-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
  font-size: 1.3em;
}

/* Warning Box */
.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
}

.warning-box p {
  color: #856404;
  font-weight: 500;
  margin: 0;
}

/* Info Box */
.info-box {
  background: var(--soft-bg);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-teal);
  margin: 20px 0;
}

.info-box p {
  margin: 8px 0;
  font-weight: 500;
}

/* Contact Box */
.contact-box {
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-top: 20px;
}

.contact-box h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.contact-box p {
  margin: 8px 0;
  font-size: 1.05em;
  color: white;
}

.contact-box a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.contact-box a:hover {
  border-bottom-color: white;
}

.policy-container {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

.policy-content {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 43, 91, 0.08);
}

.intro-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--soft-bg);
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: var(--primary);
  font-size: 1.6em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: 700;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 1.05em;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.policy-section ul {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.policy-section li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 1.05em;
  color: var(--text-dark);
}

.policy-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 1.2em;
}

.hive-section {
  padding: 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 43, 91, 0.12);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-teal);
  opacity: 0;
  transform: translateY(40px);
}

.card.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 166, 166, 0.2);
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.card-description {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-cta {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 166, 166, 0.4);
}

.fade-in-element {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.fade-in-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.form-group {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.info-item {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.pdf-section {
  padding: 60px 40px;
  background: var(--soft-bg);
  min-height: calc(100vh - 400px);
}

.pdf-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 43, 91, 0.1);
  overflow: hidden;
  border: 2px solid rgba(0, 166, 166, 0.15);
}

/* Custom PDF Controls Bar */
.pdf-controls {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.pdf-controls-left,
.pdf-controls-center,
.pdf-controls-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdf-controls button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pdf-controls button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.pdf-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pdf-info {
  color: white;
  font-size: 14px;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.zoom-level {
  color: white;
  font-size: 14px;
  min-width: 60px;
  text-align: center;
}

/* PDF Canvas Container */
.pdf-canvas-container {
  width: 100%;
  /* height: 750px; */
  background: linear-gradient(135deg, var(--soft-bg) 0%, #ffffff 100%);
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

#pdfCanvas {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}

.download-section {
  padding: 25px;
  text-align: center;
  background: linear-gradient(135deg, var(--soft-bg) 0%, #ffffff 100%);
  border-top: 2px solid rgba(0, 166, 166, 0.1);
}

.download-btn {
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 166, 166, 0.2);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 166, 166, 0.4);
}

.download-btn i {
  font-size: 18px;
}

.document-uploads1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px
}

.doc-upload-item1 {
  display: flex;
  align-items: center;
  gap: 15px
}

.doc-upload-item1 input {
  flex: 1
}

.doc-upload-btn1 {
  padding: 10px 20px;
  background: linear-gradient(135deg, #1a7a9e, #4db8b8);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s ease
}

.doc-upload-btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 122, 158, .3)
}

.checkbox-group1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0
}

.checkbox-group1 input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1a7a9e
}

.checkbox-group1 label {
  margin: 0;
  cursor: pointer;
  font-size: 13px
}

.action-buttons1 {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  gap: 15px
}

.back-btn1,
.next-btn1 {
  padding: 14px 50px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease
}

.back-btn1 {
  background: #fff;
  color: #1a7a9e;
  border: 2px solid #1a7a9e
}

.back-btn1:hover {
  background: #f0f0f0;
  transform: translateY(-2px)
}

.next-btn1 {
  background: linear-gradient(135deg, #1a7a9e, #4db8b8);
  color: #fff
}

.next-btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 122, 158, .4)
}

input[type=file] {
  display: none
}





/* ==================== HEADER STYLES - BOD MATCH ==================== */


.signup-page {
  padding-top: 120px;
}
.signup-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
  margin-bottom: 150px;
  max-width: 100%;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 43, 91, 0.1);
  min-height: 600px;
}

.left-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 3px dashed rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  text-align: center;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.right-section {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  margin-bottom: 40px;
}

.form-header h1 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-header p {
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 15px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(0, 166, 166, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.signup-page .form-group {
  opacity: 1 !important;
  transform: none !important;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: var(--accent-teal);
}

.checkbox-group label {
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.checkbox-group a {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--highlight) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 166, 166, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--light-gray);
}

.divider span {
  background: var(--white);
  padding: 0 15px;
  color: var(--text-dark);
  opacity: 0.6;
  position: relative;
  font-size: 14px;
}

.social-login {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.social-btn:hover {
  border-color: var(--accent-teal);
  background: var(--soft-bg);
}

.login-link {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-dark);
}

.login-link a {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 700;
}

.login-link a:hover {
  text-decoration: underline;
}

/* ==================== HERO SECTION ==================== */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
  overflow: hidden;
  min-height: 50vh;
  height: auto;
  max-height: 100vh;
}

.hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: linear-gradient(30deg,
      var(--accent-teal) 12%,
      transparent 12.5%,
      transparent 87%,
      var(--accent-teal) 87.5%,
      var(--accent-teal)),
    linear-gradient(150deg,
      var(--accent-teal) 12%,
      transparent 12.5%,
      transparent 87%,
      var(--accent-teal) 87.5%,
      var(--accent-teal)),
    linear-gradient(30deg,
      var(--accent-teal) 12%,
      transparent 12.5%,
      transparent 87%,
      var(--accent-teal) 87.5%,
      var(--accent-teal)),
    linear-gradient(150deg,
      var(--accent-teal) 12%,
      transparent 12.5%,
      transparent 87%,
      var(--accent-teal) 87.5%,
      var(--accent-teal));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.hero-content {
  position: relative;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-text h1 {
  font-size: clamp(42px, 5vw, 62px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: clamp(24px, 4vw, 48px);
  color: var(--highlight);
  margin-bottom: 40px;
  font-weight: 600;
  min-height: 60px;
  animation: fadeInUp 1s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 1.3em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--accent-teal);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #008c8c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 166, 166, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-visual {
  position: relative;
  width: 450px;
  height: 450px;
  flex-shrink: 0;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 140px;
  height: 140px;
  background: linear-gradient(225deg, var(--highlight), rgba(255, 255, 255, 0.3));
  bottom: 15%;
  left: 5%;
  animation-delay: 1.5s;
  border-radius: 50%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(315deg, var(--accent-teal), rgba(255, 255, 255, 0.2));
  top: 40%;
  left: 15%;
  animation-delay: 3s;
  border-radius: 20% 80% 80% 20% / 80% 20% 80% 20%;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, var(--highlight), rgba(255, 255, 255, 0.25));
  bottom: 35%;
  right: 15%;
  animation-delay: 2s;
}

.shape-5 {
  width: 90px;
  height: 90px;
  background: linear-gradient(180deg, var(--accent-teal), rgba(255, 255, 255, 0.3));
  top: 25%;
  left: 40%;
  animation-delay: 4s;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(15px, -20px) rotate(5deg) scale(1.05);
  }

  50% {
    transform: translate(-10px, -30px) rotate(-5deg) scale(0.95);
  }

  75% {
    transform: translate(-20px, -15px) rotate(3deg) scale(1.02);
  }
}

/* ==================== QUICK LINKS SECTION ==================== */

.quick-links {
  background: var(--white);
  position: relative;
  z-index: 10;
}

.quick-links-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.quick-link-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 43, 91, 0.12);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-teal);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 166, 166, 0.2);
}

.quick-link-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--white);
}

.quick-link-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.quick-link-card p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quick-link-card button {
  background: transparent;
  color: var(--accent-teal);
  border: 2px solid var(--accent-teal);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.quick-link-card button:hover {
  background: var(--accent-teal);
  color: var(--white);
}

/* ==================== ABOUT SECTION ==================== */

.about-section {
  padding: 100px 40px;
  background: var(--soft-bg);
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: var(--white);
  padding: 80px 60px;
  border-radius: 10px;
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 15px 40px rgba(0, 43, 91, 0.2);
}

.about-badge span {
  color: var(--highlight);
  display: block;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 42px);
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content h3 {
  font-size: 24px;
  color: var(--accent-teal);
  margin-bottom: 20px;
  font-weight: 600;
}

.about-content p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 25px;
}

.about-content p .highlight-cov {
  color: var(--accent-teal) !important;
  font-weight: 600 !important;
}

/* ==================== STATS SECTION ==================== */

.stats-section {
  background: var(--primary);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(56, 182, 255, 0.1) 0%,
      transparent 70%);
  top: -200px;
  right: -200px;
}

.stats-container {
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-title {
  text-align: center;
  color: var(--white);
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 60px;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

/* ==================== OSP SECTION ==================== */

.osp {
  padding: 100px 40px;
  background: var(--white);
}

.osp1 {
  max-width: 1520px;
  margin: 0 auto;
}

.osp1 h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 60px;
}

.osp-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.osp-visual {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.orbit {
  position: absolute;
  border: 3px solid var(--accent-teal);
  opacity: 0.3;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 150px;
  height: 150px;
  animation: rotate 20s linear infinite;
}

.orbit-2 {
  width: 250px;
  height: 250px;
  animation: rotate 30s linear infinite reverse;
}

.orbit-3 {
  width: 350px;
  height: 350px;
  animation: rotate 40s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--highlight);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--highlight);
}

.orbit-1 .orbit-dot {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-2 .orbit-dot {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.orbit-3 .orbit-dot {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.center-core {
  position: absolute;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px rgba(0, 166, 166, 0.6);
  animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.osp-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.osp-step {
  background: var(--soft-bg);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--accent-teal);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 43, 91, 0.08);
}

.osp-step:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 166, 166, 0.15);
}

.osp-step h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.osp-step p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 15px;
}

.cta-btn {
  background: var(--accent-teal);
  color: var(--white);
  border: none;
  padding: 18px 50px;
  font-size: 18px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 166, 166, 0.4);
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 166, 166, 0.6);
}


/* ==================== VALUATION ECOSYSTEM SECTION ==================== */

.ecosystem-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--soft-bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.ecosystem-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(0, 166, 166, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ecosystem-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ecosystem-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.ecosystem-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.ecosystem-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.ecosystem-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 43, 91, 0.04), 0 1px 3px rgba(0, 43, 91, 0.02);
  border-top: 4px solid var(--accent-teal);
  transition: all 0.3s ease;
}

.ecosystem-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 43, 91, 0.12), 0 4px 8px rgba(0, 43, 91, 0.06);
}

.ecosystem-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ecosystem-item:hover .ecosystem-number {
  color: var(--primary);
  transform: scale(1.1);
}

.ecosystem-content h3 {
  font-size: 1.375rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ecosystem-content p {
  font-size: 0.9375rem;
  color: #5a6c7d;
  line-height: 1.7;
}

/* ==================== CONTACT SECTION ==================== */

.contact-section {
  background: var(--primary);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
}

.subscribe-column h2,
.contact-column h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  padding-bottom: 12px;
  position: relative;
}

.subscribe-column h2::after,
.contact-column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--highlight));
}

.subscribe-text {
  color: var(--highlight);
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--accent-teal);
}

.subscribe-form button {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  cursor: pointer;
  font-size: 1.1em;
  transition: 0.3s;
}

.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 166, 166, 0.3);
}

.no-spam {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  transform: translateY(-3px);
}

.office-title {
  color: var(--highlight);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}


/* ==================== horizontal line ==================== */
.footer-divider-wrapper {
  background: #002b5b;
}

.footer-divider-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-divider {
  border: none;
  height: 1px;
  background: #0f3e6a;
}


/* ==================== FOOTER ==================== */

.footer {
  background: var(--primary);
  padding: 25px 40px;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--accent-teal);
}

.footer-content p {
  color: white;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* ==================== MOBILE RESPONSIVE ==================== */

@media (max-width: 1024px) {

  .about-container,
  .osp-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  
   .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 1280px) {
  body {
    padding-top: 0;
  }

  .header-content {
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 20px;
  }

  #logo {
    height: 50px;
    z-index: 1001;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 20px 0 50px;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    align-items: center;
    margin-top: 50px;
  }

  .hero-text h1 {
    font-size: 400%;
  }

  .hero-text h2 {
    margin-top: 20px;
    font-size: 250%;
    white-space: nowrap;
  }

  .hero-text p {
    margin-top: 20px;
    justify-content: left;
    font-size: 120%;
    max-width: 100%;
  }

  .hero-buttons {
    font-size: 100%;
  }

  .nav-right {
    display: none;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #f2f9ff 0%, #ffffff 100%);
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 100px 30px 30px 30px;
    gap: 0 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-out;
    z-index: 1000;
    overflow-y: auto;
  }

  nav.active {
    transform: translateX(0);
  }

  nav a {
    width: 100%;
    padding: 15px 20px;
    margin: 5px 0;
    border-radius: 12px;
    font-size: 16px;
    text-align: left;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
  }

  nav a:hover {
    background-color: rgba(0, 166, 166, 0.1);
    border-left-color: var(--accent-teal);
    transform: translateX(5px);
  }

  .nav-item {
    width: 100%;
  }

  .nav-item>a {
    width: 100%;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0, 166, 166, 0.05);
    margin: 5px 0;
    border-radius: 8px;
    max-height: 0;
    opacity: 0;
    visibility: visible;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-item.mobile-active .dropdown {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
  }

  .dropdown a {
    padding: 10px 20px 10px 30px;
    font-size: 15px;
  }

  .dropdown-arrow {
    float: right;
  }

  .nav-item.mobile-active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .register-btn {
    width: 100% !important;
    margin: 15px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    display: block !important;
  }

  .login-btn {
    width: 100% !important;
    margin: 10px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--accent-teal);
    transition: all 0.3s ease;
    display: block !important;
  }

  .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 166, 0.3);
  }

  .quick-links-container,
  .about-section,
  .stats-section,
  .osp1,
  .contact-section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-links-container {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .stat-box {
    padding: 15px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 14px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .ecosystem-section {
    padding: 60px 20px;
  }

  .ecosystem-title {
    font-size: 2rem;
  }

  .ecosystem-items {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ecosystem-item {
    padding: 25px;
  }

  .ecosystem-number {
    font-size: 2.5rem;
    min-width: 60px;
  }

  .hero-visual,
  .floating-shapes {
    display: none;
  }

  .orbit-container {
    transform: scale(0.85);
  }

  .orbit-element,
  .orbit-1,
  .orbit-2,
  .orbit-3 {
    display: none !important;
  }

  .central-element,
  .central-inner {
    display: none !important;
  }

  .network-node,
  .node-1,
  .node-2,
  .node-3,
  .node-4,
  .node-5 {
    display: none !important;
  }

  .mission-visual,
  .vision-visual {
    display: none !important;
  }

  .center-core {
    display: none !important;
  }

  .osp-visual {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
  }

  .hero-text {
    max-width: 100% !important;
    width: 100%;
  }

  a.btn-primary {
    display: block;
    width: 100%;
    padding: 18px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
  }

  a.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 166, 166, 0.6);
  }

  /* PDF Modal Mobile Styles */
  .pdf-modal {
    width: 95%;
    height: 95vh;
  }

  .pdf-modal-header {
    padding: 12px 15px;
  }

  .pdf-modal-title {
    font-size: 16px;
  }

  .pdf-controls {
    gap: 8px;
    padding: 10px;
  }

  .pdf-control-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .pdf-zoom-control {
    gap: 5px;
  }
}

@media (min-width: 481px) and (max-width: 575px) {
  .hero-text h1 {
    margin-top: 20px;
    font-size: 250%;
  }

  .hero-text h2 {
    margin-top: 20px;
    font-size: 200%;
    white-space: wrap;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #logo {
    height: 45px;
  }

  .hamburger {
    width: 28px;
    height: 22px;
  }

  nav {
    width: 260px;
    padding: 90px 25px 25px 25px;
  }

  nav a {
    font-size: 15px;
    padding: 12px 16px;
  }

  .login-btn {
    font-size: 15px !important;
    padding: 12px 16px !important;
  }

  .hero-text h1 {
    font-size: 200%;
  }

  .hero-text h2 {
    margin-top: 20px;
    font-size: 150%;
    white-space: wrap;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

.hero-content {
  position: relative;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  max-width: 750px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex: 1;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
}

.hero-visual {
  position: relative;
  width: 450px;
  height: 450px;
  flex-shrink: 0;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 140px;
  height: 140px;
  background: linear-gradient(225deg, var(--highlight), rgba(255, 255, 255, 0.3));
  bottom: 15%;
  left: 5%;
  animation-delay: 1.5s;
  border-radius: 50%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(315deg, var(--accent-teal), rgba(255, 255, 255, 0.2));
  top: 40%;
  left: 15%;
  animation-delay: 3s;
  border-radius: 20% 80% 80% 20% / 80% 20% 80% 20%;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, var(--highlight), rgba(255, 255, 255, 0.25));
  bottom: 35%;
  right: 15%;
  animation-delay: 2s;
}

.shape-5 {
  width: 90px;
  height: 90px;
  background: linear-gradient(180deg, var(--accent-teal), rgba(255, 255, 255, 0.3));
  top: 25%;
  left: 40%;
  animation-delay: 4s;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
}

@media(max-width:381px) {
  .hero {
    max-height: 140vh;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(15px, -20px) rotate(5deg) scale(1.05);
  }

  50% {
    transform: translate(-10px, -30px) rotate(-5deg) scale(0.95);
  }

  75% {
    transform: translate(-20px, -15px) rotate(3deg) scale(1.02);
  }
}

/* ===== BEGIN style1.css (about) ===== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap");

:root {
  --primary: #002b5b;
  --accent-teal: #00a6a6;
  --soft-bg: #f2f9ff;
  --highlight: #38b6ff;
  --text-dark: #012a4a;
  --white: #ffffff;
  --light-gray: #e8f4f8;
  --hero-height: min(85vh, 600px);
  --header-offset: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 43, 91, .1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000
}

.header-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0
}

#logo {
  height: 70px;
  display: block
}

nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex: 1
}

nav a {
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: rgb(10, 8, 94);
  font-size: 18px;
  transition: .3s ease-in-out;
  white-space: nowrap
}

nav a:hover {
  background-color: rgba(10, 8, 94, .12);
  transform: translateY(-2px)
}

.nav-item {
  position: relative
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  /* FIXED: Smaller size */
  transition: transform 0.3s ease;
  vertical-align: middle;
  /* Better alignment */
}

/* Desktop hover - rotate arrow */
.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown styling - centered */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 43, 91, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1100;
  margin-top: 10px;
  overflow: hidden;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--primary);
  font-size: 16px;
  border-radius: 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown a:hover {
  background-color: rgba(0, 166, 166, 0.1);
  border-left-color: var(--accent-teal);
  transform: translateX(5px);
}

/* ==================== MOBILE SPECIFIC ====================*/
@media (max-width: 1280px) {
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0, 166, 166, 0.05);
    margin: 5px 0;
    border-radius: 8px;
    max-height: 0;
    opacity: 0;
    visibility: visible;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-item.mobile-active .dropdown {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
  }

  .dropdown a {
    padding: 10px 20px 10px 30px;
    font-size: 15px;
  }

  /* Mobile - arrow floats right and rotates when active */
  .dropdown-arrow {
    float: right;
    font-size: 10px;
    /* Keep consistent size */
  }

  .nav-item.mobile-active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Reset desktop hover on mobile */
  .nav-item:hover .dropdown-arrow {
    transform: none;
  }

  .nav-item.mobile-active:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0
}

.register-btn {
  padding: 6px 17px;
  background-color: transparent;
  color: rgb(10, 8, 94);
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid rgb(10, 8, 94);
  font-size: 16px;
  font-weight: 600;
  transition: .3s ease-in-out;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}

.register-btn:hover {
  background-color: rgb(10, 8, 94);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 8, 94, 0.4);
}

.login-btn {
  padding: 8px 20px;
  background-color: rgb(10, 8, 94);
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s ease;
  white-space: nowrap
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 8, 94, .4)
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}


.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Hero Section - FIXED FOR VERTICAL CENTERING */
.about-hero {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--accent-teal) 100%);
  color: white;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* margin-top: 100px; */
  padding: 0 40px;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  z-index: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.about-hero::after {
  content: "";
  z-index: 0;
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

.about-hero h1 {
  font-size: 2.8em;
  margin: 0;
  font-weight: 700;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Story Section */
.story-section {
  padding: 100px 40px;
  background: var(--soft-bg);
}

.story-content {
  max-width: 1440px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.8em;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), var(--highlight));
  border-radius: 2px;
}

.story-text {
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Mission & Vision Section */
.mission-vision {
  padding: 100px 40px;
  background: white;
  width: 100%;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.mission-container,
.vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 0 auto 120px;
  width: 100%;
}

.vision-container {
  margin-bottom: 0;
}

.label-badge {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  border-radius: 50px;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.vision-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
}

.mv-title {
  font-size: 2.5em;
  color: var(--primary);
  margin-bottom: 25px;
}

.mv-description {
  font-size: 1.15em;
  line-height: 1.8;
  margin-bottom: 40px;
}


.mission-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mission-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--soft-bg);
  border-radius: 12px;
  border-left: 4px solid var(--accent-teal);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.6s ease forwards;
}

.mission-point:nth-child(1) {
  animation-delay: 0.2s;
}

.mission-point:nth-child(2) {
  animation-delay: 0.4s;
}

.mission-point:nth-child(3) {
  animation-delay: 0.6s;
}

.mission-point:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mission-point:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 166, 166, 0.15);
  background: white;
}

.point-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3em;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mission-point:hover .point-icon {
  transform: rotate(360deg) scale(1.1);
}

.point-text {
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-dark);
}



/* Mission Visual */
.mission-visual {
  position: relative;
  height: 450px;
}

.circle-design {
  position: absolute;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  top: 20%;
  left: 10%;
  opacity: 0.2;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  top: 40%;
  right: 15%;
  opacity: 0.25;
  animation-delay: 1s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--highlight), var(--accent-teal));
  bottom: 15%;
  left: 30%;
  opacity: 0.3;
  animation-delay: 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.35;
  }
}

/* Vision Visual */
.vision-visual {
  position: relative;
  height: 450px;
}

.hexagon {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: rotate360 8s linear infinite;
}

.hex-1 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  top: 15%;
  left: 15%;
  opacity: 0.2;
}

.hex-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  top: 45%;
  left: 35%;
  opacity: 0.25;
  animation-delay: 2s;
}

.hex-3 {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--highlight), var(--primary));
  bottom: 20%;
  right: 20%;
  opacity: 0.3;
  animation-delay: 4s;
}

@keyframes rotate360 {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.vision-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.vision-point {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--soft-bg);
  border-left: 4px solid var(--accent-teal);
  border-radius: 15px;
  transition: 0.3s ease;
}

.vision-point:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 43, 91, 0.1);
}

.point-icon {
  font-size: 1.5em;
  color: var(--accent-teal);
}

/* CONTACT SECTION - CONSISTENT WITH HOME PAGE */
.contact-section {
  background: var(--primary);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
}

.subscribe-column h2,
.contact-column h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  padding-bottom: 12px;
  position: relative;
}

.subscribe-column h2::after,
.contact-column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--highlight));
}

.subscribe-text {
  color: var(--highlight);
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--accent-teal);
}

.subscribe-form button {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  cursor: pointer;
  font-size: 1.1em;
  transition: 0.3s;
}

.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 166, 166, 0.3);
}

.no-spam {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  transform: translateY(-3px);
}

.office-title {
  color: var(--highlight);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

/* ==================== horizontal line ==================== */
.footer-divider-wrapper {
  background: #002b5b;
  /* SAME as footer */
}

.footer-divider-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-divider {
  border: none;
  height: 1px;
  background: #11416d;
}


/* FOOTER */
.footer {
  background: var(--primary);
  padding: 25px 40px;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--accent-teal);
}

.footer-content p {
  color: white;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {

  .mission-container,
  .vision-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  } 
}

@media (max-width: 1280px) {
  .header-content {
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 20px;
  }

  #logo {
    height: 50px;
    z-index: 1001;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #f2f9ff 0%, #ffffff 100%);
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 100px 30px 30px;
    gap: 0 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35 ease-out;

  }

  nav.active {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
  }

  .nav-item>a {
    width: 100%;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0, 166, 166, 0.05);
    margin: 5px 0;
    border-radius: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-item.mobile-active .dropdown {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
  }

  .dropdown a {
    padding: 10px 20px 10px 30px;
    font-size: 15px;
  }

  .dropdown-arrow {
    float: right;
  }

  .nav-item.mobile-active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-right {
    display: none !important;
  }



  /* 1️⃣ REMOVE ALL 3D / HEAVY ANIMATIONS */
  .about-body .mission-visual,
  .about-body .vision-visual,
  .about-body .circle-design,
  .about-body .geometric-layer,
  .about-body .dot-grid,
  .about-body .floating-bar,
  .about-body .orbit-element,
  .about-body .central-element,
  .about-body .central-inner,
  .about-body .network-container,
  .about-body .network-node,
  .about-body .network-line,
  .about-body .particle,
  .about-body .glow-orb {
    display: none !important;
  }

  /* 2️⃣ REMOVE THE SPACE THEY WERE TAKING (THIS IS KEY) */
  .about-body .mission-visual,
  .about-body .vision-visual {
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 3️⃣ STACK CONTENT PROPERLY */
  .about-body .mission-container,
  .about-body .vision-container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 48px !important;
    align-items: flex-start !important;
  }

  /* 4️⃣ FIX MISSION STATS (2 IN ONE ROW) */
  /* .about-body .mission-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .about-body .stat-item {
    width: 100%;
    text-align: center;
  } */

  /* 5️⃣ TYPOGRAPHY OPTIMIZED FOR MOBILE */
  .about-body .mv-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .about-body .mv-description {
    font-size: 0.95rem;
  }

  /* 6️⃣ KEEP TRANSITIONS & SCROLL EFFECTS */
  .about-body .vision-point,
  .about-body .dropdown,
  .about-body nav a {
    transition: all 0.3s ease;
  }

  /* .about-body .mission-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
  }

  .about-body .stat-item {
    width: 100%;
    text-align: center;
  }

  .about-body .stat-number {
    font-size: 2rem;
    line-height: 1.2;
  }

  .about-body .stat-label {
    font-size: 1.2rem;
    white-space: nowrap;
  } */




  nav a {
    width: 100%;
    padding: 15px 20px;
    margin: 5px 0;
    border-radius: 12px;
    font-size: 16px;
    text-align: left;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
  }

  nav a:hover {
    background-color: rgba(0, 166, 166, 0.1);
    border-left-color: var(--accent-teal);
    transform: translateX(5px);
  }

  nav button {
    width: 100% !important;
    margin: 20px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--accent-teal);
    transition: all 0.3s ease;
    display: block !important;
  }

  nav button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 166, 0.3);
  }

  .about-hero,
  .story-section,
  .mission-vision,
  .contact-section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mission-visual,
  .vision-visual {
    height: 300px;
    order: -1;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .about-body .vision-container {
    margin-bottom: 0 !important;
  }

  .about-body .mission-vision {
    padding-bottom: 40px;
    /* controlled spacing */
  }
}



@media (max-width: 480px) {
  #logo {
    height: 45px;
  }

  .hamburger {
    width: 28px;
    height: 22px;
  }

  nav {
    width: 260px;
    padding: 90px 25px 25px 25px;
  }

  nav a {
    font-size: 15px;
    padding: 12px 16px;
  }

  nav button {
    font-size: 15px !important;
    padding: 12px 16px !important;
  }

  .section-title {
    font-size: 2em;
  }

  .mv-title {
    font-size: 1.8em;
  }


  .mission-point {
    padding: 15px;
  }

  .point-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }

  .point-text {
    font-size: 0.95em;
  }
}

/* ===== ABOUT PAGE TRANSPARENT HEADER ===== */
.about-body header {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.about-body .cont1 {
  background: transparent;
  box-shadow: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* Vision Visual - Modern Minimalistic Animation */
.vision-visual {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Geometric Layers */
.geometric-layer {
  position: absolute;
  border: 2px solid var(--accent-teal);
  border-radius: 12px;
  opacity: 0.15;
}

.layer-1 {
  width: 300px;
  height: 300px;
  animation: layerRotate 20s linear infinite;
}

.layer-2 {
  width: 240px;
  height: 240px;
  border-color: var(--highlight);
  animation: layerRotate 15s linear infinite reverse;
  animation-delay: 2s;
}

.layer-3 {
  width: 180px;
  height: 180px;
  border-color: var(--primary);
  animation: layerRotate 25s linear infinite;
  animation-delay: 4s;
}

@keyframes layerRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Floating Bars */
.floating-bar {
  position: absolute;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  border-radius: 4px;
  opacity: 0.3;
}

.bar-1 {
  width: 120px;
  height: 4px;
  top: 20%;
  left: 15%;
  animation: barFloat1 4s ease-in-out infinite;
}

.bar-2 {
  width: 100px;
  height: 4px;
  top: 40%;
  right: 15%;
  animation: barFloat2 5s ease-in-out infinite;
  animation-delay: 1s;
}

.bar-3 {
  width: 140px;
  height: 4px;
  bottom: 25%;
  left: 20%;
  animation: barFloat3 6s ease-in-out infinite;
  animation-delay: 2s;
}

.bar-4 {
  width: 90px;
  height: 4px;
  bottom: 35%;
  right: 20%;
  animation: barFloat1 5.5s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes barFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-30px) rotate(5deg);
    opacity: 0.5;
  }
}

@keyframes barFloat2 {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.2;
  }

  50% {
    transform: translateX(25px) rotate(-5deg);
    opacity: 0.5;
  }
}

@keyframes barFloat3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.2;
  }

  50% {
    transform: translate(20px, -20px) rotate(3deg);
    opacity: 0.5;
  }
}

/* Minimal Dots */
.dot-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 0;
  padding: 60px;
  opacity: 0.15;
}

.grid-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: dotPulse 3s ease-in-out infinite;
  margin: auto;
}

.grid-dot:nth-child(odd) {
  animation-delay: 0.5s;
}

.grid-dot:nth-child(3n) {
  animation-delay: 1s;
}

.grid-dot:nth-child(4n) {
  animation-delay: 1.5s;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
}

/* Central Focus Element */
.central-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 166, 166, 0.4);
  animation: centralPulse 4s ease-in-out infinite;
}

.central-inner {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

@keyframes centralPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    box-shadow: 0 20px 60px rgba(0, 166, 166, 0.4);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 166, 166, 0.6);
  }
}

/* Orbiting Elements */
/* .orbit-element {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--accent-teal);
  border-radius: 8px;
  opacity: 0.4;
}

.orbit-1 {
  top: 20%;
  left: 25%;
  animation: orbitMove1 8s ease-in-out infinite;
}

.orbit-2 {
  top: 25%;
  right: 25%;
  animation: orbitMove2 10s ease-in-out infinite;
  animation-delay: 2s;
}

.orbit-3 {
  bottom: 25%;
  left: 28%;
  animation: orbitMove3 12s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes orbitMove1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(30px, -20px) rotate(90deg);
  }

  50% {
    transform: translate(60px, 0) rotate(180deg);
  }

  75% {
    transform: translate(30px, 20px) rotate(270deg);
  }
}

@keyframes orbitMove2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(-25px, 25px) rotate(-90deg);
  }

  50% {
    transform: translate(-50px, 0) rotate(-180deg);
  }

  75% {
    transform: translate(-25px, -25px) rotate(-270deg);
  }
}

@keyframes orbitMove3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(35px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(0, -60px) rotate(240deg);
  }
} */

/* Vision Visual - Network Node Animation */
.network-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.network-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nodeFloat 4s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 166, 166, 0.3);
}

.node-1 {
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.node-2 {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  top: 15%;
  right: 15%;
  animation-delay: 1s;
}

.node-3 {
  background: linear-gradient(135deg, var(--highlight), var(--primary));
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.node-4 {
  background: linear-gradient(135deg, var(--accent-teal), var(--primary));
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.node-5 {
  background: linear-gradient(135deg, var(--highlight), var(--accent-teal));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  animation-delay: 1.5s;
}

.node-icon {
  color: white;
  font-size: 28px;
}

.node-5 .node-icon {
  font-size: 36px;
}

@keyframes nodeFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Connecting Lines */
.network-line {
  position: absolute;
  background: linear-gradient(90deg, var(--accent-teal), transparent);
  height: 2px;
  transform-origin: left center;
  animation: linePulse 3s ease-in-out infinite;
  opacity: 0.4;
}

.line-1 {
  width: 150px;
  top: 25%;
  left: 20%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.line-2 {
  width: 180px;
  top: 25%;
  right: 20%;
  transform: rotate(-45deg);
  animation-delay: 1s;
}

.line-3 {
  width: 200px;
  bottom: 30%;
  left: 25%;
  transform: rotate(-30deg);
  animation-delay: 2s;
}

.line-4 {
  width: 160px;
  bottom: 30%;
  right: 25%;
  transform: rotate(30deg);
  animation-delay: 1.5s;
}

@keyframes linePulse {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }
}

/* Particle effects */
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  animation: particleFloat 5s ease-in-out infinite;
  opacity: 0.6;
  box-shadow: 0 0 10px var(--accent-teal);
}

.particle-1 {
  top: 30%;
  left: 30%;
  animation-delay: 0s;
}

.particle-2 {
  top: 40%;
  right: 35%;
  animation-delay: 1.5s;
}

.particle-3 {
  bottom: 35%;
  left: 40%;
  animation-delay: 3s;
}

.particle-4 {
  bottom: 45%;
  right: 30%;
  animation-delay: 2s;
}

.particle-5 {
  top: 60%;
  left: 25%;
  animation-delay: 4s;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }

  25% {
    transform: translate(15px, -15px) scale(1.2);
    opacity: 0.8;
  }

  50% {
    transform: translate(30px, 10px) scale(0.8);
    opacity: 0.6;
  }

  75% {
    transform: translate(-10px, 20px) scale(1.1);
    opacity: 0.7;
  }
}

/* Glow effect background */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: rgba(0, 166, 166, 0.15);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: rgba(56, 182, 255, 0.1);
  bottom: 15%;
  right: 15%;
  animation-delay: 2s;
}

.orb-3 {
  width: 180px;
  height: 180px;
  background: rgba(0, 43, 91, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}







/* OSP Platform Section */
.osp-section {
  background: white;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.osp-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 166, 166, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.wrapper {
  max-width: 1440px;
  /* Changed from 1200px to match mission/vision */
  margin: 0 auto;
}

.osp-container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 0 auto;
}

.osp-header {
  text-align: left;
  margin-bottom: 0px;
}

.osp-badge {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  border-radius: 50px;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.osp-title {
  font-size: 2.5em;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.osp-subtitle {
  font-size: 1.15em;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 40px;
}


.platform-visual {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon-circle {
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.platform-icon-main {
  position: relative;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5em;
  color: white;
  box-shadow: 0 20px 60px rgba(0, 43, 91, 0.3);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.floating-icons {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  box-shadow: 0 10px 30px rgba(0, 43, 91, 0.15);
  animation: float 3s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0.5s;
}

.icon-2 {
  top: 15%;
  right: 20%;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 1.5s;
}

.icon-4 {
  bottom: 15%;
  right: 15%;
  animation-delay: 2s;
}

.platform-details {
  padding: 0;
}

.professionals-list {
  background: var(--soft-bg);
  padding: 35px;
  border-radius: 20px;
  margin: 30px 0;
  border-left: 5px solid var(--accent-teal);
}

.professionals-list h3 {
  color: var(--primary);
  font-size: 1.4em;
  margin-bottom: 20px;
  font-weight: 600;
}

.professionals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.professional-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.professional-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 166, 166, 0.1);
}

.professional-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9em;
  flex-shrink: 0;
}

.professional-item span {
  color: var(--text-dark);
  font-size: 0.95em;
  line-height: 1.4;
}

.platform-description {
  font-size: 1.1em;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 25px;
}

.platform-closing {
  background: linear-gradient(135deg, var(--primary), var(--accent-teal));
  color: white;
  padding: 30px;
  border-radius: 15px;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 43, 91, 0.2);
}

/* Responsive */

@media (max-width: 1024px) {
  .osp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 1280px) {
  .osp-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* CHANGED: Only hide on MOBILE (1280px), keep animations on tablet/desktop */
  .platform-visual,
  .platform-icon-circle,
  .platform-icon-main,
  .floating-icons {
    display: none !important;
  }

  .platform-visual {
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .osp-container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .osp-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .osp-subtitle {
    font-size: 0.95rem;
  }

  .professionals-grid {
    grid-template-columns: 1fr;
  }
}

/* ADDED: Show animations on larger screens */
@media (min-width: 1280px) {

  .platform-visual,
  .platform-icon-circle,
  .platform-icon-main,
  .floating-icons {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .osp-title {
    font-size: 1.6em;
  }
}

/* ===== END style1.css ===== */

/* ===== BEGIN style2.css (contact) ===== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap");

:root {
  --primary: #002b5b;
  --accent-teal: #00a6a6;
  --soft-bg: #f2f9ff;
  --highlight: #38b6ff;
  --text-dark: #012a4a;
  --white: #ffffff;
  --light-gray: #e8f4f8;
  --hero-height: min(85vh, 600px);
  --header-offset: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

body::-webkit-scrollbar {
  display: none;
}

/* ==================== HEADER STYLES - BOD MATCH ==================== */

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 43, 91, 0.1);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.header-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#logo {
  height: 70px;
  display: block;
}

/* ==================== MAIN NAVIGATION - CENTER ==================== */

nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex: 1;
}

nav a {
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: rgb(10, 8, 94);
  font-size: 18px;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

nav a:hover {
  background-color: rgba(10, 8, 94, 0.12);
  transform: translateY(-2px);
}

/* Dropdown Styles */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 43, 91, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1100;
  margin-top: 10px;
  overflow: hidden;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--primary);
  font-size: 16px;
  border-radius: 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown a:hover {
  background-color: rgba(0, 166, 166, 0.1);
  border-left-color: var(--accent-teal);
  transform: translateX(5px);
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* ==================== RIGHT SIDE BUTTONS ==================== */

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* Updated Register Button - Matching Membership Page */
.register-btn {
  padding: 6px 17px;
  background-color: transparent;
  color: rgb(10, 8, 94);
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid rgb(10, 8, 94);
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}

.register-btn:hover {
  background-color: rgb(10, 8, 94);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 8, 94, 0.4);
}

.register-btn:visited {
  color: rgb(10, 8, 94);
}

.register-btn:visited:hover {
  color: white;
}

.login-btn {
  padding: 8px 20px;
  background-color: rgb(10, 8, 94);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 8, 94, 0.4);
}

/* ==================== HAMBURGER & MOBILE MENU ==================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ==================== HERO SECTION ==================== */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
  color: white;
  padding: 140px 40px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  letter-spacing: -1px;
  text-align: center;
  max-width: 800px;
}

.hero p {
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

/* ==================== MAIN CONTAINER ==================== */

.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Contact Form */
.contact-form-section,
.contact-info-section {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 43, 91, 0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--primary);
  margin-bottom: 22px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 166, 166, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 166, 166, 0.3);
}

/* Info Items */
.info-item {
  display: flex;
  gap: 18px;
  background: var(--soft-bg);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: 0.3s;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 43, 91, 0.08);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  font-size: 1.2em;
  flex-shrink: 0;
}

.info-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 600;
}

.info-content p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.info-content a {
  color: var(--accent-teal);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.info-content a:hover {
  color: var(--highlight);
}

/* Map Section */
.map-section {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 43, 91, 0.1);
  margin-bottom: 60px;
}

.map-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--primary);
  text-align: center;
  margin-bottom: 22px;
  font-weight: 700;
}

.map-container {
  width: 100%;
  height: 320px;
  background: var(--soft-bg);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}

/* Bank Details Section */
.bank-details-section {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 43, 91, 0.1);
  margin-bottom: 60px;
}

.bank-details-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--primary);
  text-align: center;
  margin-bottom: 28px;
  font-weight: 700;
}

.bank-card {
  background: linear-gradient(135deg, var(--soft-bg) 0%, #fff 100%);
  border: 2px solid #e0f2f7;
  border-radius: 16px;
  padding: 10px;
  max-width: 90%;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 166, 166, 0.08);
}

.bank-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 166, 166, 0.2);
}

.bank-header i {
  font-size: 3em;
  color: var(--accent-teal);
  background: white;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 166, 166, 0.15);
}

.bank-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5em;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.bank-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bank-info-item {
  background: white;
  padding: 18px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-teal);
  transition: all 0.3s ease;
}

.bank-info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 166, 166, 0.1);
}

.bank-label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-value {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

/* Social Section */
/* .social-section {
  background: white;
  padding: 50px 40px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 43, 91, 0.1);
}

.social-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.social-section p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 400;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: var(--soft-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3em;
  transition: 0.3s;
  border: 2px solid transparent;
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  transform: translateY(-5px);
  border-color: var(--accent-teal);
} */

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--primary);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
}

.subscribe-column h2,
.contact-column h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  padding-bottom: 12px;
  position: relative;
}

.subscribe-column h2::after,
.contact-column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--highlight));
}

.subscribe-text {
  color: var(--highlight);
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--accent-teal);
}

.subscribe-form button {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  cursor: pointer;
  font-size: 1.1em;
  transition: 0.3s;
}

.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 166, 166, 0.3);
}

.no-spam {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  transform: translateY(-3px);
}

.office-title {
  color: var(--highlight);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}


/* ==================== horizontal line ==================== */
.footer-divider-wrapper {
  background: #002b5b;
}

.footer-divider-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-divider {
  border: none;
  height: 1px;
  background: #0f3e6a;
}

/* ==================== FOOTER ==================== */

.footer {
  background: var(--primary);
  padding: 25px 40px;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--accent-teal);
}

.footer-content p {
  color: white;
}

.footer-legal {
  display: flex;
  gap: 20px;
}



/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bank-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  body {
    padding-top: 0;
  }

  .header-content {
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 20px;
  }

  #logo {
    height: 50px;
    z-index: 1001;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  /* Hide right buttons on mobile - they'll be in the menu */
  .nav-right {
    display: none;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #f2f9ff 0%, #ffffff 100%);
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 100px 30px 30px 30px;
    gap: 0 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
    z-index: 1000;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav a {
    width: 100%;
    padding: 15px 20px;
    margin: 5px 0;
    border-radius: 12px;
    font-size: 16px;
    text-align: left;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
  }

  nav a:hover {
    background-color: rgba(0, 166, 166, 0.1);
    border-left-color: var(--accent-teal);
    transform: translateX(5px);
  }

  /* Mobile Dropdown */
  .nav-item {
    width: 100%;
  }

  .nav-item>a {
    width: 100%;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0, 166, 166, 0.05);
    margin: 5px 0;
    border-radius: 8px;
    max-height: 0;
    opacity: 0;
    visibility: visible;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-item.mobile-active .dropdown {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
  }

  .dropdown a {
    padding: 10px 20px 10px 30px;
    font-size: 15px;
  }

  .dropdown-arrow {
    float: right;
  }

  .nav-item.mobile-active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Mobile buttons inside nav */
  .register-btn {
    width: 100% !important;
    margin: 15px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    display: block !important;
  }

  .login-btn {
    width: 100% !important;
    margin: 10px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--accent-teal);
    transition: all 0.3s ease;
    display: block !important;
  }

  .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 166, 0.3);
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .container {
    padding: 40px 20px 60px;
  }

  .contact-form-section,
  .contact-info-section,
  .map-section,
  .bank-details-section {
    padding: 30px 20px;
  }

  .bank-card {
    padding: 25px 20px;
  }

  .bank-header {
    flex-direction: column;
    text-align: center;
  }

  .bank-header i {
    font-size: 2em;
  }

  .bank-header h3 {
    font-size: 1.3em;
  }

  .map-container {
    height: 280px;
  }


  .contact-container {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }


  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .contact-section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@media (max-width: 480px) {
  #logo {
    height: 45px;
  }

  .hamburger {
    width: 28px;
    height: 22px;
  }

  nav {
    width: 260px;
    padding: 90px 25px 25px 25px;
  }

  nav a {
    font-size: 15px;
    padding: 12px 16px;
  }

  .login-btn {
    font-size: 15px !important;
    padding: 12px 16px !important;
  }

  .hero h1 {
    font-size: 2.2em;
  }

  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.1em;
  }

  .map-container {
    height: 250px;
  }
}

/* ===== END style2.css ===== */

/* ===== BEGIN style3.css (hive) ===== */
:root {
  --primary: #002b5b;
  --accent-teal: #00a6a6;
  --soft-bg: #f2f9ff;
  --highlight: #38b6ff;
  --text-dark: #012a4a;
  --white: #ffffff;
  --light-gray: #e8f4f8;
  --hero-height: min(85vh, 600px);
  --header-offset: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, var(--soft-bg) 0%, #e8f4f8 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 43, 91, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

#logo {
  height: 70px;
  display: block;
}

nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

nav a {
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: rgb(10, 8, 94);
  font-size: 18px;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

nav a:hover {
  background-color: rgba(10, 8, 94, 0.12);
  transform: translateY(-2px);
}

.login-btn {
  margin-left: 15px;
  padding: 8px 16px;
  background-color: rgb(10, 8, 94);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Hamburger Menu - HIDDEN ON DESKTOP */
.hamburger {
  display: none;
  /* Hidden by default on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

#set {
  display: flex;
  flex-direction: column;
}


.hive-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  letter-spacing: -2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), var(--highlight));
  border-radius: 2px;
  animation: expandWidth 1s ease 0.5s forwards;
  width: 0;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    transform: translateY(30px);
  }
}

@keyframes expandWidth {
  to {
    width: 100px;
  }
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 43, 91, 0.08);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: cardFadeIn 0.8s ease forwards;
  border: 1px solid rgba(0, 166, 166, 0.1);
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}

.card:nth-child(2) {
  animation-delay: 0.4s;
}

.card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    transform: translateY(40px);
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), var(--highlight));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 166, 166, 0.15);
  border-color: var(--accent-teal);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.card-description {
  color: #5a6c7d;
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
  min-height: 60px;
}

.card-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.card:nth-child(1) .card-cta {
  background: linear-gradient(135deg, #94a3b8, #cbd5e1);
  color: var(--text-dark);
  cursor: default;
}

.card:nth-child(2) .card-cta,
.card:nth-child(3) .card-cta {
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  cursor: pointer;
}

.card:nth-child(2) .card-cta::before,
.card:nth-child(3) .card-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.card:nth-child(2) .card-cta:hover,
.card:nth-child(3) .card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 166, 166, 0.3);
}

.card:nth-child(2) .card-cta:hover::before,
.card:nth-child(3) .card-cta:hover::before {
  width: 300px;
  height: 300px;
}

.card:nth-child(2) .card-cta:active,
.card:nth-child(3) .card-cta:active {
  transform: translateY(0);
}

/* Floating animation for subtle movement */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.card {
  animation: cardFadeIn 0.8s ease forwards, float 6s ease-in-out infinite;
}

.card:nth-child(2) {
  animation: cardFadeIn 0.8s ease 0.4s forwards, float 6s ease-in-out 2s infinite;
}

.card:nth-child(3) {
  animation: cardFadeIn 0.8s ease 0.6s forwards, float 6s ease-in-out 4s infinite;
}

.card:hover {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 968px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
  }

  .hive-section {
    padding: 60px 20px;
  }

  .section-title {
    margin-bottom: 60px;
  }
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .card {
    animation: cardFadeIn 0.01ms ease forwards;
  }
}

/* Optional: Add a subtle background pattern */
.hive-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 166, 166, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(56, 182, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hive-section>* {
  position: relative;
  z-index: 1;
}


/* CONTACT SECTION - CONSISTENT WITH HOME PAGE */
.contact-section {
  background: var(--primary);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
}

.subscribe-column h2,
.contact-column h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  padding-bottom: 12px;
  position: relative;
}

.subscribe-column h2::after,
.contact-column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--highlight));
}

.subscribe-text {
  color: var(--highlight);
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--accent-teal);
}

.subscribe-form button {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  cursor: pointer;
  font-size: 1.1em;
  transition: 0.3s;
}

.subscribe-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 166, 166, 0.3);
}

.no-spam {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  transform: translateY(-3px);
}

.office-title {
  color: var(--highlight);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-teal), var(--highlight));
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

/* FOOTER - CONSISTENT WITH HOME PAGE */
.footer {
  background: var(--primary);
  padding: 25px 40px;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--accent-teal);
}

.footer-content p {
  color: white;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* ===== END style3.css ===== */

/* ==================== MOBILE OPTIMIZATIONS ==================== */
@media (max-width: 768px) {

  /* Reduce vertical spacing for sections */
  .about-section {
    padding: 50px 20px;
  }

  .about-badge {
    padding: 40px 20px;
    font-size: 28px;
  }

  /* Adjust other sections if necessary */
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-text {
    margin-top: 100px;
    /* Offset for fixed header */
    text-align: center;
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  /* Ensure the mobile dropdown is visible */
  .nav-item.mobile-active .dropdown {
    display: block;
    visibility: visible;
    opacity: 1;
    position: static;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.03);
    width: 100%;
    margin-top: 10px;
  }

}

/* ==================== RESTORING RESPONSIVE MENU ==================== */
/* Fix for hamburger menu hidden by duplicate styles */
@media (max-width: 1280px) {
  .hamburger {
    display: flex !important;
    margin-left: auto;
  }

  /* Hide right buttons on mobile - they'll be in the menu */
  .nav-right {
    display: none;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #f2f9ff 0%, #ffffff 100%);
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 100px 30px 30px 30px;
    gap: 0 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-out;
    z-index: 1000;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav a {
    width: 100%;
    padding: 15px 20px;
    margin: 5px 0;
    border-radius: 12px;
    font-size: 16px;
    text-align: left;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    display: block;
  }

  nav a:hover {
    background-color: rgba(0, 166, 166, 0.1);
    border-left-color: var(--accent-teal);
    transform: translateX(5px);
  }

  /* Mobile Dropdown */
  .nav-item {
    width: 100%;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(0, 166, 166, 0.05);
    margin: 5px 0;
    border-radius: 8px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 100%;
  }

  .nav-item.mobile-active .dropdown {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
    padding-bottom: 15px;
  }

  .dropdown a {
    padding: 10px 20px 10px 30px;
    font-size: 15px;
  }

  .dropdown-arrow {
    float: right;
  }

  .nav-item.mobile-active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Mobile buttons inside nav */
  .register-btn {
    width: 100% !important;
    margin: 15px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    display: block !important;
    color: rgb(10, 8, 94);
  }

  .login-btn {
    width: 100% !important;
    margin: 10px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--accent-teal);
    transition: all 0.3s ease;
    display: block !important;
    text-align: center;
  }
}

@media (max-width: 768px) {

  /* Footer outer padding fix */
  footer {
    padding: 40px 20px;
  }

  /* Main footer layout */
  .footer-container,
  .footer-content {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    gap: 30px;
  }

}


/* ==================== SIGNUP PAGE RESPONSIVE FIX ==================== */

@media (max-width: 768px) {

  .signup-page .container {
    grid-template-columns: 1fr;     /* stack */
    margin-top: 40px;
    margin-bottom: 40px;
    min-height: auto;
  }

  .signup-page .left-section {
    min-height: 400px;
    padding: 40px 20px;
    
  }

  .signup-page .right-section {
    padding: 40px 20px;
  }

  .signup-page .image-placeholder {
    width: 100%;
    height: 100%;
  }

  /* Prevent any hidden overflow */
  .signup-page {
    overflow-x: hidden;
  }

  .signup-page .left-section {
    order: 1;
  }

  .signup-page .right-section {
    order: 2;
  }
}





/* ===== reg1 ===== */

@media (max-width: 1280px) {
  .reg1-only .container1 {
      width: calc(100% - 40px);
      padding: 30px 20px
  }

  .reg1-only .page-title1 {
      font-size: 28px;
      margin-bottom: 25px
  }

  .reg1-only .content1 {
      padding: 25px 20px
  }

  .reg1-only .form-section1,
  .reg1-only .upload-section1 {
      padding: 20px 15px
  }

  .reg1-only .form-row1 {
      grid-template-columns: 1fr
  }

  .reg1-only .upload-grid1 {
      grid-template-columns: 1fr
  }

  .reg1-only .document-uploads1 {
      grid-template-columns: 1fr
  }

  .reg1-only .doc-upload-item1 {
      flex-direction: column;
      align-items: stretch
  }

  .reg1-only .doc-upload-btn1 {
      width: 100%
  }

  .reg1-only .tabs1 {
      flex-wrap: wrap
  }

  .reg1-only .action-buttons1 {
      flex-direction: column
  }

  .reg1-only .next-btn1,
  .reg1-only .back-btn1 {
      float: none;
      width: 100%
  }
}

 @media(max-width:768px) {
    .reg1-only .form-grid1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .reg1-only .container1 {
          width: calc(100% - 20px);
          padding: 20px 15px
      }

      .reg1-only .page-title1 {
          font-size: 24px;
          margin-bottom: 20px
      }

      .reg1-only .content1 {
          padding: 20px 15px
      }

      .reg1-only .form-section1,
      .reg1-only .upload-section1 {
          padding: 15px 12px
      }

      .reg1-only .section-title1 {
          font-size: 16px
      }

      .reg1-only label {
          font-size: 16px
      }

      .reg1-only input[type=email],
      .reg1-only input[type=text],
      .reg1-only select {
          font-size: 16px
      }

      .reg1-only .preview-area1 {
          width: 120px;
          height: 120px
      }

      .reg1-only .tabs1 {
          gap: 8px
      }

      .reg1-only .tab1 {
          font-size: 15px;
          padding: 10px 20px
      }
  }







/* ===== reg2 ===== */
@media (max-width:1280px) {
  .reg2-only .container1 {
      width: calc(100% - 40px);
      padding: 30px 20px
  }

  .reg2-only .page-title1 {
      font-size: 28px;
      margin-bottom: 25px
  }

  .reg2-only .content1 {
      padding: 25px 20px
  }

  .reg2-only .qualification-section1 {
      padding: 20px 15px;
      overflow-x: auto
  }

  .reg2-only .qualification-table1 {
      min-width: 600px
  }

  .reg2-only .action-buttons1 {
      flex-direction: column
  }

  .reg2-only .back-btn1,
  .reg2-only .next-btn1 {
      width: 100%
  }

  .reg2-only .tabs1 {
      flex-wrap: wrap
  }
}


@media (max-width:480px) {

	.reg2-only .container1 {
      width: calc(100% - 20px);
      padding: 20px 15px
  }

  .reg2-only .page-title1 {
      font-size: 24px;
      margin-bottom: 20px
  }

  .reg2-only .content1 {
      padding: 20px 15px
  }

  .reg2-only .qualification-section1 {
      padding: 15px 12px
  }

  .reg2-only .section-title1 {
      font-size: 16px
  }

  .reg2-only .tabs1 {
      gap: 8px
  }

  .reg2-only .tab1 {
      font-size: 15px;
      padding: 10px 20px
  }
}



/* ===== reg3 ===== */
@media (max-width:1280px) {
.reg3-only .container1 {
    width: calc(100% - 40px);
    padding: 30px 20px
}

.reg3-only .page-title1 {
    font-size: 28px;
    margin-bottom: 25px
}

.reg3-only .content1 {
    padding: 25px 20px
}

.reg3-only .experience-section1,
.reg3-only .terms-section1 {
    padding: 20px 15px;
    overflow-x: auto
}

.reg3-only .experience-table1 {
    min-width: 600px
}

.reg3-only .action-buttons1 {
    flex-direction: column
}

.reg3-only .back-btn1,
.reg3-only .next-btn1 {
    width: 100%
}

.reg3-only .tabs1 {
    flex-wrap: wrap
}

.reg3-only .tab1 {
    font-size: 15px;
    padding: 10px 20px
}

.reg3-only .terms-list1>li {
    flex-direction: column
}

.reg3-only .radio-group1 {
    margin-left: 20px
}


.reg3-only .terms-list1>li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
    row-gap: 8px;
    align-items: start;
}

/* number */
.reg3-only .terms-list1>li::before {
    grid-column: 1;
    grid-row: 1;
    min-width: 22px;
    font-weight: 400;
    line-height: 1.6;
}

/* question text */
.reg3-only .terms-list1>li>span {
    grid-column: 2;
    grid-row: 1;
    line-height: 1.6;
}

/* radio buttons */
.reg3-only .radio-group1 {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
}

@media (max-width:480px) {
	.reg3-only .container1 {
      width: calc(100% - 20px);
      padding: 20px 15px
  }

  .reg3-only .page-title1 {
      font-size: 24px;
      margin-bottom: 20px
  }

  .reg3-only .content1 {
      padding: 20px 15px
  }

  .reg3-only .experience-section1,
  .reg3-only .terms-section1 {
      padding: 15px 12px
  }

  .reg3-only .section-title1 {
      font-size: 16px
  }

  .reg3-only .tabs1 {
      gap: 8px
  }
}


/* ===== terms and condn ===== */
@media (max-width: 1280px) {
 .tandc-page .hero h1 {
      font-size: 2em;
  }

  .tandc-page .terms-content1 {
      padding: 30px 25px;
  }

  .tandc-page .terms-section1 h2 {
      font-size: 1.3em;
  }

  .tandc-page .section-number1 {
      width: 30px;
      height: 30px;
      font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .tandc-page .hero {
        padding: 60px 20px 40px;
    }

    .tandc-page .hero h1 {
        font-size: 1.8em;
    }

    .tandc-page .terms-content1 {
        padding: 25px 20px;
    }

    .tandc-page .intro-text1 {
        font-size: 1em;
    }

    .tandc-page .terms-section1 p,
    .tandc-page .terms-section1 li {
        font-size: 0.98em;
    }
}