/* Secure by Design Section */
.main-secure-section {
  background-color: #f8faff;
    
}
.secure-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .secure-section {
    padding: 5rem 1.5rem;
  }
}



/* Grid Container */
.secure-grid {
  
  gap: 1.5rem;
  margin-bottom: 2rem;
}



/* Column Styling */
.secure-column {
  background-color: #F9FAFB;
  padding: 1.5rem;
  border-radius: 1.5rem;
}

@media (min-width: 768px) {
  .secure-column {
    padding: 2.5rem;
  }
}

/* Left Column */
.secure-left {
  display: flex;
  flex-direction: column;
}

/* Right Column */
.secure-right {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Title Styling */
.secure-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .secure-title {
    font-size: 2rem;
  }
}

/* Description Paragraph */
.secure-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .secure-description {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
  }
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Feature Item */
.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

/* Check Icon */
.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  background-color: #588DFA;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-icon svg {
  width: 1rem;
  height: 1rem;
}

/* Feature Text */
.feature-text {
  color: #1A1F35;
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .feature-text {
    font-size: 1rem;
  }
}

/* Button */
.secure-btn {
  background-color: #111827;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
  display: inline-block;
}

@media (min-width: 768px) {
  .secure-btn {
    width: auto;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.secure-btn:hover {
  background-color: #000000;
}

/* Globe Container */
.globe-wrapper {
  padding: 1.5rem;
  z-index: 10;
  position: relative;
  pointer-events: none;
}

@media (min-width: 768px) {
  .globe-wrapper {
    padding: 2.5rem;
  }
}

/* Globe Canvas Container */
.globe-canvas-container {
  position: relative;
  height: 300px;
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#globe-canvas {
  width: 600px;
  height: 600px;
  max-width: 100%;
  aspect-ratio: 1;
  opacity: 0.8;
  transform: translateY(50%);
}

#globe-canvas,
.globem {
  transform: translateX(7%) translateY(25%);
}

@media (min-width: 768px) {
  .globe-canvas-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
   
  }
  .secure-column, secure-left {
    height: 400px;
  }
}



.secure-column, secure-left{
  position: relative;
  overflow: hidden;
  background-color: #0f172a;
  color: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


@media (min-width: 768px) {
  #globe-canvas,
  .globem {
    transform: translateX(10%) translateY(50%);
  
  }
}



/* CTA Section */
.cta-section {
  background-color: #111827;
  border-radius: 1.5rem;
  padding: 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background Video */
.cta-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section {
    border-radius: 2rem;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 20rem;
    border-radius: 2rem;
  }
}

/* Background Pattern */


/* CTA Gradient Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000, transparent, transparent);
  opacity: 0.8;
  z-index: 2;
}

/* CTA Content */
.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 42rem;
  width: 100%;
}

/* Logo Container */
.cta-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-logo {
    margin-bottom: 2rem;
  }
}

.cta-logo svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

@media (min-width: 768px) {
  .cta-logo svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.cta-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.cta-logo-main {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .cta-logo-main {
    font-size: 1.25rem;
  }
}

.cta-logo-sub {
  color: white;
  font-weight: 300;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .cta-logo-sub {
    font-size: 1.25rem;
  }
}

/* CTA Heading */
.cta-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cta-heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-heading {
    font-size: 3.75rem;
  }
}

.cta-heading .highlight {
  color: #9CA3AF;
}

/* CTA Description */
.cta-description {
  color: #9CA3AF;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

/* Button Container */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    width: auto;
    gap: 1rem;
  }
}

/* CTA Primary Button */
.cta-btn-primary {
  background-color: #588DFA;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-btn-primary {
    width: auto;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .cta-btn-primary {
    padding: 1rem 2rem;
  }
}

.cta-btn-primary:hover {
  background-color: #4169E1;
}

.cta-btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

/* CTA Secondary Button */
.cta-btn-secondary {
  background-color: #333333;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-btn-secondary {
    width: auto;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .cta-btn-secondary {
    padding: 1rem 2rem;
  }
}

.cta-btn-secondary:hover {
  background-color: #444444;
}
