/* Base Styles & Variables */
:root {
  --gold: #D4AF37;
  --gold-light: #F0D87A;
  --gold-dark: #B8941F;
  --gold-rgb: 212, 175, 55;
  --black: #1A1A1A;
  --black-light: #2D2D2D;
  --white: #FFFFFF;
  --white-dark: #F5F5F5;
  --blue: #003366;
  --blue-light: #2A4D7A;
  --blue-rgb: 0, 51, 102;
  --gray: #6C757D;
  --gray-light: #F8F9FA;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar{
  width: 0;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}






/* ALERTS */


/* POP UPS AND OVERLAY */





/* Success Overlay Styles with modern design */
.spop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  animation: spop-fadeIn 0.4s ease-out;
}

.spop-popup {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: 10px;
  width: 95%;
  max-width: 400px;
  padding: 30px 10px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  animation: spop-popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.spop-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.spop-popup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #4f46e5, #3b82f6, #10b981);
}

.spop-success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
  position: relative;
  animation: spop-iconFloat 3s ease-in-out infinite;
}

.spop-success-icon::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px dashed rgba(16, 185, 129, 0.2);
  animation: spop-spin 20s linear infinite;
}

.spop-success-icon i {
  font-size: 40px;
  color: white;
  z-index: 1;
}

.spop-title {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 800;
}

.spop-message {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.spop-ok-button {
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1.2rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  min-width: 180px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.spop-ok-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.spop-ok-button:active {
  transform: translateY(0);
}

.spop-ok-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.spop-ok-button:hover::after {
  left: 100%;
}

/* Modern Animations */
@keyframes spop-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spop-popIn {
  0% {
    transform: scale(0.7) translateY(20px);
    opacity: 0;
  }

  70% {
    transform: scale(1.05) translateY(-5px);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes spop-iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes spop-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive design */
@media (max-width: 768px) {

  .spop-popup {
    padding: 20px 5px;
    border-radius: 10px;
  }

  .spop-title {
    font-size: 1.5rem;
  }

  .spop-success-icon {
    width: 50px;
    height: 50px;
  }

  .spop-success-icon i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {


  .spop-popup {
    padding: 25px 10px;
  }
}




/* Error Overlay Styles */
.epop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  animation: epop-fadeIn 0.4s ease-out;
}

.epop-popup {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.95) 100%);
  border-radius: 10px;
  width: 95%;
  max-width: 400px;
  padding: 30px 10px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(220, 38, 38, 0.2);
  animation: epop-popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.epop-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.epop-popup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.epop-error-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
  position: relative;
  animation: epop-iconFloat 3s ease-in-out infinite;
}

.epop-error-icon::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px dashed rgba(220, 38, 38, 0.2);
  animation: epop-spin 20s linear infinite;
}

.epop-error-icon i {
  font-size: 40px;
  color: white;
  z-index: 1;
}

.epop-title {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 800;
}

.epop-message {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.epop-ok-button {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1.2rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
  min-width: 180px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.epop-ok-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.epop-ok-button:active {
  transform: translateY(0);
}

.epop-ok-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.epop-ok-button:hover::after {
  left: 100%;
}

/* Modern Animations */
@keyframes epop-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes epop-popIn {
  0% {
    transform: scale(0.7) translateY(20px);
    opacity: 0;
  }

  70% {
    transform: scale(1.05) translateY(-5px);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes epop-iconFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes epop-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive design */
@media (max-width: 768px) {


  .epop-popup {
    padding: 20px 5px;
    border-radius: 10px;
  }

  .epop-title {
    font-size: 1.5rem;
  }

  .epop-error-icon {
    width: 50px;
    height: 50px;
  }

  .epop-error-icon i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {


  .epop-popup {
    padding: 25px 10px;
  }
}





/* Identity Confirmation Modal Styles */
.cid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  animation: cid-fadeIn 0.4s ease-out;
}

.cid-popup {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  animation: cid-popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cid-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  z-index: -1;
}

.cid-popup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.cid-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
  position: relative;
}

.cid-icon i {
  font-size: 25px;
  color: white;
}

.cid-title {
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 800;
}

.cid-subtitle {
  color: #64748b;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.5;
}

.cid-form {
  width: 100%;
  margin-bottom: 30px;
}

.cid-input-group {
  margin-bottom: 25px;
  text-align: left;
}

.cid-label {
  display: block;
  margin-bottom: 8px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
}

.cid-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cid-input {
  width: 100%;
  padding: 16px 20px;
  padding-right: 50px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
  color: #1e293b;
}

.cid-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.cid-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.cid-toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cid-toggle-password:hover {
  color: #2563eb;
}

.cid-toggle-password i {
  font-size: 1.2rem;
}

.cid-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
  text-align: left;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cid-forgot-link {
  display: block;
  text-align: right;
  margin-top: 10px;
  color: #2563eb;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cid-forgot-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.cid-button-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.cid-button {
  flex: 1;
  padding: 10px 24px;
  font-size: 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
}

.cid-cancel-button {
  background: #f1f5f9;
  color: #64748b;
}

.cid-cancel-button:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.cid-confirm-button {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.cid-confirm-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.cid-confirm-button:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cid-success-message {
  display: none;
  background: #d1fae5;
  color: #065f46;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

/* Modern Animations */
@keyframes cid-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cid-popIn {
  0% {
    transform: scale(0.7) translateY(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes cid-shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/* Responsive design */
@media (max-width: 768px) {
 
  .cid-popup {
    padding: 30px 25px;
    border-radius: 24px;
  }

  .cid-title {
    font-size: 1.6rem;
  }

  .cid-button-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  
  .cid-popup {
    padding: 25px 20px;
  }
}





/* POP UPS AND OVERLAY */










section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background-color: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  background: var(--gray-light);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Header & Navigation */
header {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

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

.logo img{
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: bold;
  border-radius: var(--radius);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--white);
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-item {
  margin-left: 24px;
  position: relative;
}

.nav-link {
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
  margin-left: 30px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--gold);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .nav-cta {
    flex-direction: column;
    gap: 8px;
  }

  .nav-item {
    margin-left: 18px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .nav-cta {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    width: 300px;
    height: calc(100vh - 80px);
    transition: var(--transition-slow);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    align-items: flex-start;
    gap: 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    margin: 0 0 25px 0;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .logo h1 {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .header-container {
    padding: 12px 15px;
  }
}


/* About Us Hero Section */
.about-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--white-dark) 100%);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text {
  padding-right: 40px;
}

.section-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-text h2 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text .lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--black-light);
  margin-bottom: 35px;
  font-weight: 500;
}

.about-text p:not(.lead) {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
  margin-top: 5px;
}

.cta-group {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-group .btn {
  padding: 16px 32px;
  font-size: 1rem;
}

/* About Visual Section */
.about-visual {
  position: relative;
}

.visual-main {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.main-image {
  height: 400px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.main-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: var(--radius);
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.floating-card.experience {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.floating-card.innovation {
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.card-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  margin-top: 5px;
}

.visual-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--blue);
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* Background Elements */
.about-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 51, 102, 0.05));
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 100px;
  left: -100px;
}

.circle-3 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  right: 20%;
}

/* Responsive About Section */
@media (max-width: 1200px) {
  .about-content {
    gap: 60px;
  }

  .about-text h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-text {
    padding-right: 0;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .visual-features {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text .lead {
    font-size: 1.1rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    justify-content: center;
    text-align: left;
  }

  .visual-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }

  .main-image {
    height: 300px;
  }

  .floating-card {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin: 10px;
    animation: none;
  }

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

@media (max-width: 576px) {
  .about-text h2 {
    font-size: 1.8rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-group .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .stat-card {
    padding: 15px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}







/* Animated Figures Section */
.figures-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-header .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.figures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.figure-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.figure-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: var(--transition-slow);
}

.figure-card:hover::before {
  left: 100%;
}

.figure-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.figure-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.figure-card:hover .figure-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.figure-content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
  min-height: 70px;
}

.figure-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.figure-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-left: 2px;
}

.figure-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.3;
}

.figure-description {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 0;
}

.figures-cta {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.figures-cta p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.figures-cta .btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}



.mktbox{
  width: 100%;
  height: 500px;
  background: var(--blue);
  border-radius: 10px;
  position: relative;
}

@media(max-width:500px){
  .bixx2{
    height: 90vh;
  }
}



.mktput{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ee242400;
  border-radius: inherit;
}



/* Background Elements */
.figures-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation-delay: 4s;
}

/* Counting Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.figure-number.animated {
  animation: countUp 0.8s ease-out;
}

/* Celebration Effects */
.figures-section.counters-complete .figure-card {
  transition: all 0.3s ease;
}

.figures-section.counters-complete .figure-icon {
  animation: pulse 2s ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  }
}

/* Responsive Figures Section */
@media (max-width: 1200px) {
  .figures-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .figure-number {
    font-size: 2.8rem;
  }

  .figure-suffix {
    font-size: 1.4rem;
  }
}

@media (max-width: 992px) {
  .figures-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }

  .figures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .figure-card {
    padding: 25px 20px;
  }

  .figure-content {
    min-height: 55px;
  }

  .figure-number {
    font-size: 2.4rem;
  }

  .figure-suffix {
    font-size: 1.2rem;
  }

  .figure-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .figures-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 10px;
  }

  .figure-content {
    min-height: 50px;
    gap: 3px;
  }

  .figure-number {
    font-size: 2.2rem;
  }

  .figure-suffix {
    font-size: 1.1rem;
  }

  .figure-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .figure-description {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .figures-cta {
    padding: 25px 20px;
    margin: 0 10px;
  }

  .figures-cta p {
    font-size: 1.1rem;
  }

  /* Mobile-specific optimizations */
  .figure-card {
    -webkit-tap-highlight-color: transparent;
    cursor: default;
  }

  .figure-card:hover {
    transform: none;
    /* Disable hover effects on mobile */
  }

  .figures-cta .btn {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
  }
}

@media (max-width: 576px) {
  .figures-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .figure-card {
    padding: 22px 18px;
    margin: 0 5px;
  }

  .figure-icon {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .figure-content {
    min-height: 45px;
    margin-bottom: 12px;
  }

  .figure-number {
    font-size: 2rem;
  }

  .figure-suffix {
    font-size: 1rem;
  }

  .figure-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .figure-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .figures-cta {
    padding: 22px 18px;
  }

  .figures-cta p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .figures-cta .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Prevent text size adjustment on mobile */
  .figure-number,
  .figure-suffix,
  .figure-title,
  .figure-description {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

/* Extra small devices (phones under 400px) */
@media (max-width: 400px) {
  .figures-section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .figure-card {
    padding: 20px 15px;
  }

  .figure-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .figure-content {
    min-height: 40px;
  }

  .figure-number {
    font-size: 1.8rem;
  }

  .figure-suffix {
    font-size: 0.9rem;
  }

  .figure-title {
    font-size: 1rem;
  }

  .figure-description {
    font-size: 0.85rem;
  }
}

/* Fix for very small numbers on mobile */
@media (max-width: 350px) {
  .figure-number {
    font-size: 1.6rem;
  }

  .figure-suffix {
    font-size: 0.85rem;
  }

  .figure-content {
    min-height: 35px;
  }
}



/* Services & Investments Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--white-dark) 100%);
  position: relative;
  overflow: hidden;
}

.services-section .section-header {
  margin-bottom: 60px;
}

.services-section .section-badge {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.services-section .section-header h2 {
  color: var(--black);
}

.services-section .section-subtitle {
  color: var(--gray);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 51, 102, 0.3) 100%);
}

.service-content {
  padding: 30px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--black-light);
  font-size: 0.9rem;
}

.service-features li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.service-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-stats .stat {
  text-align: center;
  flex: 1;
}

.service-stats .stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.service-stats .stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 5px;
  font-weight: 600;
}

.service-card .btn-outline {
  width: 100%;
  justify-content: center;
  border-color: var(--blue);
  color: var(--blue);
}

.service-card .btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.services-cta {
  text-align: center;
}

.services-cta .btn {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Background Elements */
.services-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.services-bg-elements .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.services-bg-elements .shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.services-bg-elements .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

/* Responsive Services Section */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-content {
    padding: 25px;
  }

  .service-stats {
    padding: 15px;
    gap: 15px;
  }

  .service-stats .stat-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .services-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}




/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.how-it-works .section-header {
  margin-bottom: 80px;
}

.how-it-works .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.how-it-works .section-header h2 {
  color: var(--white);
}

.how-it-works .section-subtitle {
  opacity: 0.9;
}

.process-steps {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.process-line {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 1;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-card:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 700;
}

.step-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}

.step-features {
  list-style: none;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.step-features li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.step-arrow {
  color: var(--gold);
  font-size: 2rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.process-cta {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 16px 35px;
  font-size: 1.1rem;
}

/* Background Elements */
.process-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.process-bg-elements .bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.process-bg-elements .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.process-bg-elements .circle-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  right: -100px;
}

.process-bg-elements .circle-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 10%;
}

/* Responsive How It Works */
@media (max-width: 992px) {
  .process-line {
    display: none;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .process-cta {
    padding: 40px 30px;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 80px 0;
  }

  .step-card {
    padding: 25px;
    margin-bottom: 30px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-content h3 {
    font-size: 1.5rem;
  }

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

  .process-cta {
    padding: 30px 25px;
  }

  .cta-content h3 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .how-it-works {
    padding: 60px 0;
  }

  .step-card {
    padding: 20px;
    margin-bottom: 25px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .process-cta {
    padding: 25px 20px;
  }

  .cta-content h3 {
    font-size: 1.4rem;
  }

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



/* Investment Plans Section */
.investment-plans {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--white-dark) 100%);
  position: relative;
  overflow: hidden;
}

.investment-plans .section-header {
  margin-bottom: 80px;
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.05);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.plan-ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 8px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.plan-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.plan-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.2);
}

.plan-card.featured .plan-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

.plan-header h3 {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.plan-description {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-price {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 600;
}

.plan-features {
  margin-bottom: 30px;
  flex: 1;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.feature i {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.feature-title {
  font-size: 0.9rem;
  color: var(--black-light);
  font-weight: 600;
}

.feature-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
}

.value-low {
  color: #10b981;
}

.value-medium {
  color: #f59e0b;
}

.value-high {
  color: #ef4444;
}

.plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 51, 102, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 51, 102, 0.1);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

.plan-cta {
  margin-top: auto;
}

.plan-cta .btn {
  width: 100%;
  justify-content: center;
}

.plans-footer {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 2;
}

.footer-content h3 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-actions .btn {
  padding: 16px 35px;
  font-size: 1.1rem;
}

/* Background Elements */
.plans-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

/* Responsive Investment Plans */
@media (max-width: 1200px) {
  .plans-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .plans-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-card {
    padding: 35px 25px;
  }

  .plan-ribbon {
    right: -25px;
    padding: 6px 30px;
    font-size: 0.7rem;
  }

  .plans-footer {
    padding: 40px 30px;
  }

  .footer-content h3 {
    font-size: 1.8rem;
  }

  .footer-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .investment-plans {
    padding: 80px 0;
  }

  .plan-card {
    padding: 30px 20px;
  }

  .plan-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .plan-header h3 {
    font-size: 1.6rem;
  }

  .price-amount {
    font-size: 2.2rem;
  }

  .plan-stats {
    padding: 15px;
    gap: 10px;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .plans-footer {
    padding: 30px 25px;
  }

  .footer-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .investment-plans {
    padding: 60px 0;
  }

  .plan-card {
    padding: 25px 20px;
  }

  .plan-ribbon {
    right: -20px;
    padding: 5px 25px;
    font-size: 0.65rem;
  }

  .plan-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .plan-header h3 {
    font-size: 1.4rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .feature {
    padding: 12px 0;
  }

  .feature i {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .plans-footer {
    padding: 25px 20px;
  }

  .footer-content h3 {
    font-size: 1.6rem;
  }

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




/* Referrals Hero Section */
.referrals-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.referrals-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.referrals-text {
  padding-right: 40px;
}

.referrals-hero .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.referrals-text h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--white);
}

.referrals-text .lead {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 400;
}

.referrals-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.referral-stat {
  text-align: center;
}

.referral-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.referral-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 600;
}

.referrals-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.feature i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.feature-text h4 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 5px;
  font-weight: 700;
}

.feature-text p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 0;
  line-height: 1.5;
}

.referrals-cta {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.referrals-cta .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Referrals Visual */
.referrals-visual {
  position: relative;
}

.visual-container {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.main-image {
  height: 400px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.4), rgba(212, 175, 55, 0.2));
  border-radius: var(--radius);
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 3;
}

.floating-card.commission {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.floating-card.partners {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.floating-card.payout {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-card.partners {
  transform: translateY(-50%);
}

.floating-card.payout {
  transform: translateX(-50%);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.floating-card.commission .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.card-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  margin-top: 5px;
}

.floating-card.commission .card-value {
  color: var(--gold);
}

/* Background Elements */
.referrals-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.referrals-bg-elements .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.referrals-bg-elements .shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.referrals-bg-elements .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: 2s;
}

.referrals-bg-elements .shape-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 10%;
  animation-delay: 4s;
}

/* Responsive Referrals Hero */
@media (max-width: 1200px) {
  .referrals-content {
    gap: 60px;
  }

  .referrals-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .referrals-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .referrals-text {
    padding-right: 0;
  }

  .referrals-text h1 {
    font-size: 2.5rem;
  }

  .referrals-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
  }

  .referral-stat .stat-number {
    font-size: 1.8rem;
  }

  .feature {
    text-align: left;
  }

  .referrals-cta {
    justify-content: center;
  }

  .floating-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 10px;
    animation: none;
  }

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

@media (max-width: 768px) {
  .referrals-hero {
    padding: 80px 0;
  }

  .referrals-text h1 {
    font-size: 2.2rem;
  }

  .referrals-text .lead {
    font-size: 1.1rem;
  }

  .referrals-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .referral-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .referral-stat .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .referrals-features {
    gap: 15px;
  }

  .feature {
    padding: 15px;
  }

  .feature i {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .main-image {
    height: 300px;
  }

  .referrals-cta {
    flex-direction: column;
    align-items: center;
  }

  .referrals-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .referrals-hero {
    padding: 60px 0;
  }

  .referrals-text h1 {
    font-size: 1.8rem;
  }

  .referral-stat {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .feature-text h4 {
    font-size: 1.1rem;
  }

  .main-image {
    height: 250px;
  }

  .floating-card {
    padding: 15px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .card-value {
    font-size: 1.1rem;
  }
}





/* Reviews Carousel Section - Fixed */
.reviews-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--white-dark) 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section .section-header {
  margin-bottom: 80px;
}

.reviews-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-slide {
  min-width: 100%;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.review-slide.active {
  opacity: 1;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.review-quote {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.review-content {
  margin-bottom: 40px;
}

.review-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--black-light);
  font-style: italic;
  margin: 0;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.reviewer-avatar {
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.reviewer-details {
  text-align: left;
}

.reviewer-details h4 {
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 5px;
  font-weight: 700;
}

.reviewer-details p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.review-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.review-stats .stat {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.carousel-nav {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 51, 102, 0.2);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.dot.active::after {
  width: 8px;
  height: 8px;
}

.dot.active {
  background: rgba(212, 175, 55, 0.2);
}

.dot:hover::after {
  width: 6px;
  height: 6px;
}

/* Background Elements */
.reviews-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.reviews-bg-elements .bg-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.reviews-bg-elements .orb-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.reviews-bg-elements .orb-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
}

/* Responsive Reviews Carousel */
@media (max-width: 1200px) {
  .review-card {
    padding: 40px 30px;
  }

  .review-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .reviews-section {
    padding: 80px 0;
  }

  .reviewer-info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .reviewer-details {
    text-align: center;
  }

  .review-stats {
    justify-content: center;
  }

  .review-quote {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }

  .review-card {
    padding: 30px 25px;
  }

  .review-content p {
    font-size: 1.1rem;
  }

  .reviewer-avatar img {
    width: 70px;
    height: 70px;
  }

  .carousel-controls {
    gap: 20px;
  }

  .carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .review-card {
    padding: 25px 20px;
  }

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

  .reviewer-avatar img {
    width: 60px;
    height: 60px;
  }

  .review-stats {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .carousel-controls {
    gap: 15px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active::after {
    width: 6px;
    height: 6px;
  }
}



/* Footer Section */
.main-footer {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

.footer-column h4 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-column ul img{
  height: 280px;
  width: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Company Info */
.company-info {
  padding-right: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.3rem;
}

.logo-text h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 700;
}

.logo-text p {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.company-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.footer-links a:hover::before {
  width: 8px;
}

/* Contact Info */
.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-details span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Newsletter Section */
.newsletter-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h4 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1rem;
}

.newsletter-form {
  flex: 1;
  max-width: 500px;
}

.input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.input-group input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.input-group .btn {
  padding: 15px 25px;
  white-space: nowrap;
}

.newsletter-agreement {
  display: flex;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  cursor: pointer;
  margin: 0;
}

.checkbox-label input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.checkbox-label input:checked+.checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input:checked+.checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.security-badges {
  display: flex;
  gap: 15px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
}

.badge i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Background Elements */
.footer-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-bg-elements .bg-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.footer-bg-elements .shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.footer-bg-elements .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .contact-info {
    grid-column: 1 / -1;
    margin-top: 20px;
  }

  .contact-info .contact-item {
    display: inline-flex;
    margin-right: 30px;
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .company-info {
    grid-column: 1 / -1;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .input-group {
    flex-direction: column;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-links {
    order: -1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 60px 0 40px;
  }

  .newsletter-section {
    padding: 30px 25px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .contact-info .contact-item {
    display: flex;
    margin-right: 0;
    justify-content: center;
    text-align: left;
  }

  .security-badges {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-content {
    padding: 50px 0 30px;
  }

  .newsletter-section {
    padding: 25px 20px;
    margin: 20px 0;
  }

  .footer-bottom {
    padding: 25px 0;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }

  .security-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .badge {
    justify-content: center;
  }
}





/* SERVICE PAGE */

/* Service Page Specific Styles */
.service-page-hero {
  background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)), url('../pics/pic2.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 120px 0 80px;
}

.service-page-hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.service-page-hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--white);
}

.service-page-hero .highlight {
  color: var(--gold);
}

.service-page-hero p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.service-page-overview {
  padding: 100px 0;
  background: var(--white);
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.service-page-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
  position: relative;
}

.service-page-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-page-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.service-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-page-card:hover .service-page-image img {
  transform: scale(1.05);
}

.service-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 51, 102, 0.3) 100%);
}

.service-page-content {
  padding: 35px;
}

.service-page-card h3 {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-page-description {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.service-page-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-page-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--black-light);
  font-size: 0.95rem;
}

.service-page-features li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.service-page-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-page-stat {
  text-align: center;
}

.service-page-stat .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
}

.service-page-stat .label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

.service-page-cta {
  text-align: center;
  margin-top: 40px;
}

.service-page-industries {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
}

.service-page-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-page-industry-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-page-industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-page-industry-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-page-industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-page-industry-card:hover .service-page-industry-image img {
  transform: scale(1.05);
}

.service-page-industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 51, 102, 0.5) 100%);
}

.service-page-industry-content {
  padding: 30px 25px;
  text-align: center;
}

.service-page-industry-card h4 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-page-industry-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-page-industry-highlights {
  list-style: none;
}

.service-page-industry-highlights li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-page-industry-highlights li i {
  color: var(--gold-light);
  font-size: 0.7rem;
}

.service-page-process {
  padding: 100px 0;
  background: var(--white);
}

.service-page-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-page-step {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.service-page-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-page-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.service-page-step h4 {
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-page-step p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for Service Page */
@media (max-width: 1200px) {
  .service-page-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .service-page-hero {
    min-height: 60vh;
    padding: 100px 0 60px;
  }

  .service-page-hero h1 {
    font-size: 3rem;
  }

  .service-page-hero p {
    font-size: 1.2rem;
  }

  .service-page-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .service-page-hero {
    padding: 80px 0 40px;
  }

  .service-page-hero h1 {
    font-size: 2.5rem;
  }

  .service-page-hero p {
    font-size: 1.1rem;
  }

  .service-page-content {
    padding: 25px;
  }

  .service-page-card h3 {
    font-size: 1.6rem;
  }

  .service-page-industries-grid {
    grid-template-columns: 1fr;
  }

  .service-page-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .service-page-hero h1 {
    font-size: 2rem;
  }

  .service-page-content {
    padding: 20px;
  }

  .service-page-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-page-industry-content {
    padding: 25px 20px;
  }
}


/* ABOUT US PAGE */

/* About Page Specific Styles */
.about-page-hero {
  background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)), url('../pics/about.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 120px 0 80px;
}

.about-page-hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.about-page-hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--white);
}

.about-page-hero .highlight {
  color: var(--gold);
}

.about-page-hero p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.about-page-story {
  padding: 100px 0;
  background: var(--white);
}

.about-page-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page-story-text h2 {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 25px;
  font-weight: 700;
}

.about-page-story-text .established {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-page-story-text p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-page-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-page-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-page-story-image:hover img {
  transform: scale(1.05);
}

.about-page-story-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.1), rgba(212, 175, 55, 0.05));
  z-index: 1;
}

.about-page-values {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
}

.about-page-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.about-page-value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-page-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: var(--transition-slow);
}

.about-page-value-card:hover::before {
  left: 100%;
}

.about-page-value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.about-page-value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 2rem;
  margin: 0 auto 25px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.about-page-value-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-page-value-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.about-page-timeline {
  padding: 100px 0;
  background: var(--white);
}

.about-page-timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}

.about-page-timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
  z-index: 1;
}

.about-page-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.about-page-timeline-item:nth-child(odd) {
  flex-direction: row;
}

.about-page-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.about-page-timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.about-page-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-page-timeline-year {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 30px;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  z-index: 3;
}

.about-page-timeline-content h3 {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.about-page-timeline-content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.about-page-leadership {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--white-dark) 100%);
}

.about-page-leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.about-page-leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
  text-align: center;
}

.about-page-leader-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.about-page-leader-image {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.about-page-leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-slow);
}

.about-page-leader-card:hover .about-page-leader-image img {
  transform: scale(1.05);
}

.about-page-leader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 51, 102, 0.3) 100%);
}

.about-page-leader-content {
  padding: 30px 25px;
}

.about-page-leader-content h3 {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 5px;
  font-weight: 700;
}

.about-page-leader-content .position {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.about-page-leader-content p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.about-page-achievements {
  padding: 100px 0;
  background: var(--white);
}

.about-page-achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.about-page-achievement-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.about-page-achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-page-achievement-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.about-page-achievement-label {
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.about-page-achievement-description {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive About Page */
@media (max-width: 1200px) {
  .about-page-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .about-page-hero {
    min-height: 60vh;
    padding: 100px 0 60px;
  }

  .about-page-hero h1 {
    font-size: 3rem;
  }

  .about-page-hero p {
    font-size: 1.2rem;
  }

  .about-page-story-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-page-timeline-line {
    left: 30px;
  }

  .about-page-timeline-item {
    flex-direction: row !important;
  }

  .about-page-timeline-year {
    margin: 0 20px 0 0;
    width: 80px;
    height: 80px;
    font-size: 1.3rem;
  }

  .about-page-timeline-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .about-page-hero {
    padding: 80px 0 40px;
  }

  .about-page-hero h1 {
    font-size: 2.5rem;
  }

  .about-page-hero p {
    font-size: 1.1rem;
  }

  .about-page-story-text h2 {
    font-size: 2rem;
  }

  .about-page-story-image img {
    height: 400px;
  }

  .about-page-values-grid {
    grid-template-columns: 1fr;
  }

  .about-page-leadership-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 576px) {
  .about-page-hero h1 {
    font-size: 2rem;
  }

  .about-page-timeline-year {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
    margin: 0 15px 0 0;
  }

  .about-page-timeline-content {
    padding: 20px;
  }

  .about-page-achievements-grid {
    grid-template-columns: 1fr;
  }

  .about-page-achievement-number {
    font-size: 2.5rem;
  }
}


/* STORIES PAGE */
/* Watch Story Page Specific Styles */
.watch-story-hero {
  background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)), url('../pics/pic8.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 120px 0 80px;
}

.watch-story-hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.watch-story-hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--white);
}

.watch-story-hero .highlight {
  color: var(--gold);
}

.watch-story-hero p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.watch-story-videos {
  padding: 100px 0;
  background: var(--white);
}

.watch-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.watch-story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
  position: relative;
}

.watch-story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.watch-story-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  background: var(--black);
  overflow: hidden;
}

.watch-story-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  background: url(../pics/pic1.png);
  cursor: pointer;
  transition: var(--transition);
  background-size: cover;
}

.watch-story-video-placeholder:hover {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
}

.watch-story-play-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.watch-story-video-placeholder:hover .watch-story-play-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.watch-story-video-placeholder h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
  text-align: center;
  padding: 0 20px;
}

.watch-story-video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

.watch-story-video-embed.active {
  display: block;
}

.watch-story-content {
  padding: 30px;
}

.watch-story-card h3 {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.watch-story-description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.watch-story-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.watch-story-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.watch-story-date {
  color: var(--gray);
  font-size: 0.9rem;
}

.watch-story-categories {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
}

.watch-story-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.watch-story-category-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.watch-story-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.watch-story-category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.watch-story-category-card h4 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 700;
}

.watch-story-category-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.watch-story-cta {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.watch-story-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.watch-story-cta h2 {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.watch-story-cta p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Video Modal Styles */
.watch-story-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.watch-story-modal.active {
  display: flex;
}

.watch-story-modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.watch-story-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.watch-story-modal-close:hover {
  background: rgba(212, 175, 55, 0.8);
  color: var(--black);
}

.watch-story-modal-video {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}

.watch-story-modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Watch Story Page */
@media (max-width: 1200px) {
  .watch-story-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .watch-story-hero {
    min-height: 50vh;
    padding: 100px 0 60px;
  }

  .watch-story-hero h1 {
    font-size: 3rem;
  }

  .watch-story-hero p {
    font-size: 1.2rem;
  }

  .watch-story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .watch-story-hero {
    padding: 80px 0 40px;
  }

  .watch-story-hero h1 {
    font-size: 2.5rem;
  }

  .watch-story-hero p {
    font-size: 1.1rem;
  }

  .watch-story-content {
    padding: 25px;
  }

  .watch-story-categories-grid {
    grid-template-columns: 1fr;
  }

  .watch-story-cta h2 {
    font-size: 2rem;
  }

  .watch-story-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .watch-story-hero h1 {
    font-size: 2rem;
  }

  .watch-story-grid {
    grid-template-columns: 1fr;
  }

  .watch-story-play-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .watch-story-video-placeholder h3 {
    font-size: 1.3rem;
  }

  .watch-story-content {
    padding: 20px;
  }

  .watch-story-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}



/* REGISTER PAGE */

/* Register Page Specific Styles */
.register-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.register-back-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}

.register-back-btn .btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 20px;
}

.register-back-btn .btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.register-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 700px;
}

.register-hero {
  background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)), url('../pics/join.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.register-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 51, 102, 0.3));
}

.register-hero-content {
  position: relative;
  z-index: 2;
}

.register-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.register-hero .highlight {
  color: var(--gold);
}

.register-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.register-benefits {
  list-style: none;
  margin-top: 40px;
}

.register-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.register-benefits li i {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.register-form-section {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.register-form-header h2 {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.register-form-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.registerform{
  width: fit-content;
  
  position: relative;
}

.tbtn{
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: var(--black-light);
  width: fit-content;

}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.forloginpassword{
  
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
}

.form-control {
  padding: 15px 20px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
  color: var(--gray);
  opacity: 0.7;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236C757D' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 45px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 20px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.checkbox-group label {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
  font-weight: normal;
}

.checkbox-group a {
  color: var(--blue);
  text-decoration: none;
}

.checkbox-group a:hover {
  color: var(--gold);
}

.register-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  padding: 18px 30px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.register-login {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.register-login p {
  color: var(--gray);
  margin-bottom: 15px;
}

.register-login .btn {
  width: 100%;
  justify-content: center;
}

/* Background Elements */
.register-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.register-bg-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.register-orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.register-orb-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 3s;
}

/* Responsive Register Page */
@media (max-width: 992px) {
  .register-container {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .register-hero {
    display: none;
  }

  .register-form-section {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .register-page {
    padding: 20px 15px;
  }

  .register-back-btn {
    top: 20px;
    left: 20px;
  }

  .register-form-section {
    padding: 40px 30px;
  }

  .register-form-header h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .register-form-section {
    padding: 30px 25px;
  }

  .register-form-header h2 {
    font-size: 1.8rem;
  }

  .register-form-header p {
    font-size: 1rem;
  }

  .form-control {
    padding: 12px 15px;
  }

  .register-btn {
    padding: 16px 25px;
    font-size: 1rem;
  }
}


/* PRIVACY POLICY PAGE */

/* Privacy Policy Page Specific Styles */
.privacy-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--white) 0%, var(--white-dark) 100%);
  padding: 120px 0 80px;
  position: relative;
}

.privacy-back-btn {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1000;
}

.privacy-back-btn .btn {
  background: rgba(0, 51, 102, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-back-btn .btn:hover {
  background: var(--blue);
  transform: translateX(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-header h1 {
  font-size: 3.5rem;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 800;
}

.privacy-header .highlight {
  color: var(--gold);
}

.privacy-header p {
  font-size: 1.3rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.privacy-content {
  background: var(--white);
  border-radius: 25px;
  padding: 60px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.privacy-section {
  margin-bottom: 50px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.privacy-section h2 i {
  color: var(--gold);
  font-size: 1.5rem;
}

.privacy-section p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.privacy-section ul {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 25px;
}

.privacy-section li {
  margin-bottom: 10px;
  position: relative;
}

.privacy-section li::before {
  content: '•';
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  overflow: hidden;
}

.privacy-table th {
  background: var(--gold);
  color: var(--black);
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
}

.privacy-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--gray);
}

.privacy-table tr:last-child td {
  border-bottom: none;
}

.privacy-contact {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  margin-top: 50px;
  text-align: center;
}

.privacy-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.privacy-contact p {
  margin-bottom: 25px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.privacy-contact .btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.privacy-contact .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.privacy-update {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-top: 40px;
  text-align: center;
}

.privacy-update h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.privacy-update p {
  color: var(--gray);
  margin: 0;
}

/* Background Elements */
.privacy-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.privacy-bg-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

.privacy-orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.privacy-orb-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 8%;
  animation-delay: 5s;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
  .privacy-page {
    padding: 100px 0 60px;
  }

  .privacy-back-btn {
    top: 20px;
    left: 20px;
  }

  .privacy-header h1 {
    font-size: 2.5rem;
  }

  .privacy-header p {
    font-size: 1.1rem;
  }

  .privacy-content {
    padding: 40px 30px;
  }

  .privacy-section h2 {
    font-size: 1.5rem;
  }

  .privacy-table {
    display: block;
    overflow-x: auto;
  }

  .privacy-contact {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .privacy-header h1 {
    font-size: 2rem;
  }

  .privacy-content {
    padding: 30px 20px;
  }

  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .privacy-table th,
  .privacy-table td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }

  .privacy-back-btn .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


/* TERMS PAGE */

/* Terms of Use Page Specific Styles */
.terms-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--white) 0%, var(--white-dark) 100%);
  padding: 120px 0 80px;
  position: relative;
}

.terms-back-btn {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1000;
}

.terms-back-btn .btn {
  background: rgba(0, 51, 102, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.terms-back-btn .btn:hover {
  background: var(--blue);
  transform: translateX(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.terms-header {
  text-align: center;
  margin-bottom: 60px;
}

.terms-header h1 {
  font-size: 3.5rem;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 800;
}

.terms-header .highlight {
  color: var(--gold);
}

.terms-header p {
  font-size: 1.3rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.terms-content {
  background: var(--white);
  border-radius: 25px;
  padding: 60px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.terms-section {
  margin-bottom: 50px;
}

.terms-section:last-child {
  margin-bottom: 0;
}

.terms-section h2 {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.terms-section h2 i {
  color: var(--gold);
  font-size: 1.5rem;
}

.terms-section p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.terms-section ul {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 25px;
}

.terms-section li {
  margin-bottom: 10px;
  position: relative;
}

.terms-section li::before {
  content: '•';
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  overflow: hidden;
}

.terms-table th {
  background: var(--gold);
  color: var(--black);
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
}

.terms-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--gray);
}

.terms-table tr:last-child td {
  border-bottom: none;
}

.terms-contact {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  margin-top: 50px;
  text-align: center;
}

.terms-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.terms-contact p {
  margin-bottom: 25px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.terms-contact .btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.terms-contact .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.terms-update {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-top: 40px;
  text-align: center;
}

.terms-update h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.terms-update p {
  color: var(--gray);
  margin: 0;
}

/* Background Elements */
.terms-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.terms-bg-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

.terms-orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.terms-orb-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 8%;
  animation-delay: 5s;
}

/* Responsive Terms of Use */
@media (max-width: 768px) {
  .terms-page {
    padding: 100px 0 60px;
  }

  .terms-back-btn {
    top: 20px;
    left: 20px;
  }

  .terms-header h1 {
    font-size: 2.5rem;
  }

  .terms-header p {
    font-size: 1.1rem;
  }

  .terms-content {
    padding: 40px 30px;
  }

  .terms-section h2 {
    font-size: 1.5rem;
  }

  .terms-table {
    display: block;
    overflow-x: auto;
  }

  .terms-contact {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .terms-header h1 {
    font-size: 2rem;
  }

  .terms-content {
    padding: 30px 20px;
  }

  .terms-section h2 {
    font-size: 1.3rem;
  }

  .terms-table th,
  .terms-table td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }

  .terms-back-btn .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.hee{
  color: var(--blue);
}