.elementor-625 .elementor-element.elementor-element-2688c1d{--display:flex;}body.elementor-page-625 .container{max-width:1460px;}body.elementor-page-625 .elementor-section.elementor-section-boxed>.elementor-container{max-width:1460px;}body.elementor-page-625 .e-con {--container-max-width:1460px;}/* Start custom CSS *//* IOL Account Page Styles */

:root {
  --primary-color: #00c8ff;
  --secondary-color: #0055a4;
  --accent-color: #33ffcc;
  --dark-bg: #0a192f;
  --medium-bg: #112240;
  --light-bg: #1d3557;
  --text-light: #e6f1ff;
  --text-medium: #a8b2d1;
  --iol-blue: #0a4da4;
  --iol-light-blue: #0089ce;
  --glass-bg: rgba(10, 25, 47, 0.85);
  --glass-border: rgba(0, 200, 255, 0.3);
  --glass-highlight: rgba(51, 255, 204, 0.2);
  --transition-speed: 0.3s;
  --box-shadow: 0 4px 20px rgba(0, 200, 255, 0.15);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  background-image: 
    linear-gradient(rgba(10, 25, 47, 0.97), rgba(10, 25, 47, 0.97)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='rgba(100, 255, 218, 0.05)' stroke-width='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Main Container */
.account-page-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.account-content-wrapper {
  max-width: 1000px;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--box-shadow);
  position: relative;
}

.account-content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--iol-blue), var(--iol-light-blue));
  z-index: 1;
}

/* Header Section */
.account-header {
  text-align: center;
  padding: 40px 20px 20px;
  position: relative;
}

.account-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(120deg, var(--iol-light-blue), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.account-subtitle {
  color: var(--text-medium);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Area */
.account-content {
  padding: 20px 30px 40px;
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-credit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* Account Info Section */
.account-info-section {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* IOL Info Section */
.iol-info-section {
  background: var(--medium-bg);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.iol-info-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--iol-light-blue) 0%, transparent 70%);
  opacity: 0.05;
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.iol-info-section h2 {
  color: var(--iol-light-blue);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.iol-info-section p {
  color: var(--text-medium);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.benefits-list {
  margin-top: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.benefit-item i {
  color: var(--iol-light-blue);
  font-size: 1.1rem;
  margin-top: 3px;
}

.benefit-item span {
  color: var(--text-light);
  font-size: 1rem;
}

/* Help Section */
.help-section {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

.help-section h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.help-section p {
  color: var(--text-medium);
  margin-bottom: 25px;
  font-size: 1rem;
}

.help-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--dark-bg);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
  margin-bottom: 20px;
  width: fit-content;
}

.help-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.support-note {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--medium-bg);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.support-note i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.support-note p {
  margin: 0;
  font-size: 0.9rem;
}

/* Setup Steps Section */
.setup-steps {
  margin-bottom: 40px;
}

.setup-steps h2 {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.setup-steps h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--iol-light-blue), var(--primary-color));
  border-radius: 3px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step {
  background: var(--medium-bg);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(10, 77, 164, 0.1), transparent);
  opacity: 0;
  transition: all var(--transition-speed) ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--iol-light-blue);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--iol-blue);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.step-content h3 {
  color: var(--iol-light-blue);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.step-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

/* Footer Section */
.account-footer {
  background: var(--iol-blue);
  padding: 30px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-footer p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.social-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.social-share span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--medium-bg);
  color: var(--text-medium);
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .account-info-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .steps-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .account-header h1 {
    font-size: 2.2rem;
  }
  
  .setup-steps h2 {
    display: block;
    text-align: center;
  }
  
  .setup-steps h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .account-content {
    padding: 20px 20px 30px;
  }
  
  .account-header h1 {
    font-size: 1.8rem;
  }
  
  .account-subtitle {
    font-size: 1rem;
  }
  
  .iol-info-section, 
  .help-section,
  .step {
    padding: 20px;
  }
  
  .iol-info-section h2 {
    font-size: 1.5rem;
  }
  
  .help-section h2 {
    font-size: 1.4rem;
  }
  
  .help-button {
    width: 100%;
    justify-content: center;
  }
  
  .social-share {
    flex-wrap: wrap;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 137, 206, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 137, 206, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 137, 206, 0); }
}

/* Apply animations */
.account-content-wrapper {
  animation: fadeIn 0.8s ease-out;
}

.step-number {
  animation: pulse 2s infinite;
}

/* Decorative elements */
.account-content-wrapper::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.03;
  bottom: -75px;
  left: -75px;
  border-radius: 50%;
  z-index: 0;
}

.setup-steps::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
  pointer-events: none;
}/* End custom CSS */