@media (max-width: 768px) { 
	.sur { margin-left: -16px !important; 
    padding-right: 0;} 
};

.west-box {
  margin-bottom: 0 !Important;
}
/* CTA Button Styles */
.cta-button {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(145deg, #1d253b, #001e23);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  box-shadow: 0 8px 0 #0f151f, 0 10px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::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: left 0.6s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 #0f151f, 0 15px 25px rgba(0, 0, 0, 0.5);
  border-color: #ffffff;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 #0f151f, 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* Pulse animation */
.cta-button {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 0 #0f151f, 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 8px 0 #0f151f, 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px #ffffff80;
  }
  100% {
    box-shadow: 0 8px 0 #0f151f, 0 10px 20px rgba(0, 0, 0, 0.4);
  }
}

/* Glow effect on hover */
.cta-button::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffffff, #1d253b, #001e23, #ffffff);
  border-radius: 52px;
  opacity: 0;
  z-index: -2;
  transition: opacity 0.3s ease;
  filter: blur(2px);
}

.cta-button:hover::after {
  opacity: 0.5;
}

/* Optional: Add shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.cta-button.shimmer {
  background: linear-gradient(145deg, #1d253b, #001e23, #1d253b, #001e23);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite, pulse 2.5s infinite;
}
/* Custom List Styles */
body {
  background-color: #051818;
  font-family: 'Inter', sans-serif;
  color: #c8e9e9;
}

/* ===== UL Custom Markers (Checkmarks) ===== */
.custom-ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.custom-ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #c8e9e9;
  font-size: 16px;
}

.custom-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: #0a3f4b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.custom-ul li::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #c8e9e9;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Hover effect for UL items */
.custom-ul li:hover::before {
  background-color: #1d253b;
  transform: translateY(-50%) scale(1.1);
  transition: all 0.2s ease;
}

/* ===== OL Custom Markers (Numbered) ===== */
.custom-ol {
  list-style: none;
  counter-reset: custom-counter;
  padding: 0;
  margin: 20px 0;
}

.custom-ol li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #c8e9e9;
  font-size: 16px;
}

.custom-ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(145deg, #0a3f4b, #1d253b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8e9e9;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 3px 0 #05222b, 0 3px 8px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(200, 233, 233, 0.2);
}

/* Hover effect for OL items */
.custom-ol li:hover::before {
  background: linear-gradient(145deg, #1d253b, #0a3f4b);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 0 #05222b, 0 5px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}

/* ===== Alternative UL with different checkmark style ===== */
.custom-ul-alt {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.custom-ul-alt li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #c8e9e9;
}

.custom-ul-alt li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #0a3f4b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8e9e9;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid #c8e9e9;
}

/* ===== Nested Lists Support ===== */
.custom-ul ul, .custom-ol ul,
.custom-ul-alt ul, .custom-ol ol {
  margin-top: 10px;
  margin-left: 20px;
}

.custom-ul ul li::before {
  background-color: #1d253b;
  width: 18px;
  height: 18px;
}

.custom-ol ol li::before {
  background: linear-gradient(145deg, #1d253b, #05222b);
  width: 25px;
  height: 25px;
  font-size: 12px;
}

/* ===== List Container Styling ===== */
.list-container {
  background: rgba(10, 63, 75, 0.2);
  border-radius: 12px;
  padding: 20px 25px;
  border: 1px solid #0a3f4b;
  box-shadow: 0 8px 0 #05222b, 0 10px 20px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}

.list-title {
  color: #c8e9e9;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #0a3f4b;
  padding-bottom: 8px;
}
/* Updated UL Styles - Matching OL dimensions and styling */

/* ===== UL Custom Markers (Checkmarks) - UPDATED ===== */
.custom-ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.custom-ul li {
  position: relative;
  padding-left: 45px; /* Same as OL */
  margin-bottom: 15px;
  line-height: 1.6;
  color: #c8e9e9;
  font-size: 16px;
}

.custom-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; /* Same as OL */
  height: 30px; /* Same as OL */
  background: linear-gradient(145deg, #0a3f4b, #1d253b); /* Same gradient as OL */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 0 #05222b, 0 3px 8px rgba(0, 0, 0, 0.4); /* Same as OL */
  border: 1px solid rgba(200, 233, 233, 0.2); /* Same as OL */
}

.custom-ul li::after {
  content: '✓';
  position: absolute;
  left: 10px; /* Adjusted for 30px circle */
  top: 50%;
  transform: translateY(-50%);
  color: #c8e9e9;
  font-size: 16px; /* Slightly larger for checkmark */
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Hover effect for UL items - matching OL */
.custom-ul li:hover::before {
  background: linear-gradient(145deg, #1d253b, #0a3f4b); /* Same as OL hover */
  transform: translateY(-50%) scale(1.1); /* Same as OL */
  box-shadow: 0 4px 0 #05222b, 0 5px 12px rgba(0, 0, 0, 0.5); /* Same as OL */
  transition: all 0.2s ease;
}

/* ===== Alternative UL Style (if needed) ===== */
.custom-ul-alt {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.custom-ul-alt li {
  position: relative;
  padding-left: 45px; /* Same as OL */
  margin-bottom: 15px;
  line-height: 1.6;
  color: #c8e9e9;
}

.custom-ul-alt li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; /* Same as OL */
  height: 30px; /* Same as OL */
  background: linear-gradient(145deg, #0a3f4b, #1d253b); /* Same gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8e9e9;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 3px 0 #05222b, 0 3px 8px rgba(0, 0, 0, 0.4); /* Same shadow */
  border: 1px solid rgba(200, 233, 233, 0.2); /* Same border */
}

/* Hover for alt version */
.custom-ul-alt li:hover::before {
  background: linear-gradient(145deg, #1d253b, #0a3f4b);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 0 #05222b, 0 5px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}

/* ===== Nested Lists Support - UPDATED ===== */
.custom-ul ul, .custom-ol ul,
.custom-ul-alt ul, .custom-ol ol {
  margin-top: 10px;
  margin-left: 20px;
}

.custom-ul ul li::before {
  width: 25px; /* Slightly smaller for nested */
  height: 25px;
  background: linear-gradient(145deg, #1d253b, #0a3f4b);
}

.custom-ul ul li::after {
  left: 8px; /* Adjusted for smaller circle */
  font-size: 14px;
}

.custom-ol ol li::before {
  background: linear-gradient(145deg, #1d253b, #05222b);
  width: 25px;
  height: 25px;
  font-size: 12px;
}

/* ===== List Container Styling (unchanged) ===== */
.list-container {
  background: rgba(10, 63, 75, 0.2);
  border-radius: 12px;
  padding: 20px 25px;
  border: 1px solid #0a3f4b;
  box-shadow: 0 8px 0 #05222b, 0 10px 20px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}

.list-title {
  color: #c8e9e9;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #0a3f4b;
  padding-bottom: 8px;
}