@import url(/assets/theme/theme.css);

/* Basic Resets */
.gpu-deep-learning-page a {
  color: inherit;
  text-decoration: none;
}

.gpu-deep-learning-page button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* Global Blob Background Elements */
.gpu-deep-learning-blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(120px);
  z-index: 1;
}

.gpu-deep-learning-blob-1 {
  top: -300px;
  right: -300px;
}

.gpu-deep-learning-blob-2 {
  bottom: -400px;
  left: -200px;
}

/* Hero Section */
.gpu-deep-learning-hero {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.gpu-deep-learning-hero-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.gpu-deep-learning-hero-content {
  flex: 1;
  max-width: 1200px;
}

.gpu-deep-learning-hero-badge {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.gpu-deep-learning-hero h2 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.gpu-deep-learning-hero h2 span {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gpu-deep-learning-hero-description {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 650px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.gpu-deep-learning-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gpu-deep-learning-cta-primary {
  background-color: #3b82f6;
  color: #f5f5f5;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  position: relative;
  z-index: 10;
}

.gpu-deep-learning-cta-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

.gpu-deep-learning-cta-secondary {
  background-color: rgba(59, 130, 246, 0.1);
  color: #f5f5f5;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.2s ease;
  z-index: 10;
  position: relative;
}

.gpu-deep-learning-cta-secondary:hover {
  background-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.gpu-deep-learning-trusted-by {
  margin-top: auto;
}

.gpu-deep-learning-trusted-by-text {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.gpu-deep-learning-trusted-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gpu-deep-learning-trusted-logo {
  height: 40px;
  opacity: 0.9;
  filter: grayscale(1) brightness(1.5);
  transition: all 0.3s ease;
}

.gpu-deep-learning-trusted-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/* Hero Form Styles */
.gpu-deep-learning-hero-form-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(19, 18, 19, 0.9) 100%);
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.gpu-deep-learning-hero-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: gpu-deep-learning-shimmer 2s infinite;
}

@keyframes gpu-deep-learning-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.gpu-deep-learning-form-header {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
  color: #3b82f6;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.gpu-deep-learning-form-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.gpu-deep-learning-form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gpu-deep-learning-form-row .gpu-deep-learning-form-control {
  margin-bottom: 0;
  flex: 1;
}

.gpu-deep-learning-form-control {
  width: 100%;
  padding: 0.75rem 0.875rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  color: #f5f5f5;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.gpu-deep-learning-form-control:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15),
              0 4px 12px rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

.gpu-deep-learning-form-control::placeholder {
  color: rgba(245, 245, 245, 0.6);
  transition: all 0.3s ease;
}

.gpu-deep-learning-form-control:focus::placeholder {
  color: rgba(59, 130, 246, 0.8);
  transform: translateY(-2px);
}

.gpu-deep-learning-form-control[type="textarea"],
textarea.gpu-deep-learning-form-control {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.gpu-deep-learning-hero-recaptcha {
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  transform: scale(0.8);
  transform-origin: center;
}

.gpu-deep-learning-form-submit {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.gpu-deep-learning-form-submit::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.5s ease;
}

.gpu-deep-learning-form-submit:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.gpu-deep-learning-form-submit:hover::before {
  left: 100%;
}

.gpu-deep-learning-form-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.gpu-deep-learning-form-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.gpu-deep-learning-form-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: gpu-deep-learning-spin 1s linear infinite;
}

@keyframes gpu-deep-learning-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Features Section */
.gpu-deep-learning-features-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.gpu-deep-learning-section-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 30px;
}

.gpu-deep-learning-section-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.gpu-deep-learning-section-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
}

.gpu-deep-learning-feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.gpu-deep-learning-feature-row:last-child {
  margin-bottom: 0;
}

.gpu-deep-learning-feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.gpu-deep-learning-feature-content {
  flex: 1;
  padding: 2rem;
}

.gpu-deep-learning-feature-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.gpu-deep-learning-feature-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.gpu-deep-learning-feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.gpu-deep-learning-feature-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.gpu-deep-learning-feature-list-item svg {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.gpu-deep-learning-feature-image-state-art,
.gpu-deep-learning-feature-image-AI-and-ML,
.gpu-deep-learning-feature-image-High-Speed-Networking,
.gpu-deep-learning-feature-image-Enterprise-Grade-Storage {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 400px;
  position: relative;
}

.gpu-deep-learning-feature-image-state-art {
  background-image: url(/assets/images/State-of-the-Art.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gpu-deep-learning-feature-image-AI-and-ML {
  background-image: url(/assets/images/AI-and-ML.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gpu-deep-learning-feature-image-High-Speed-Networking {
  background-image: url(/assets/images/High-Speed-Networking.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gpu-deep-learning-feature-image-Enterprise-Grade-Storage {
  background-image: url(/assets/images/Enterprise-Grade-Storage.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gpu-deep-learning-feature-image-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.3) 0%, rgba(18, 18, 18, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gpu-deep-learning-image-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gpu-deep-learning-image-description {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Specifications Section */
.gpu-deep-learning-specifications-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.gpu-deep-learning-nvidia-feature-image {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 400px;
  position: relative;
}

.gpu-deep-learning-nvidia-feature-image-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  background-image: url(/assets/images/NVIDIA\ RTX\ 4000\ Ada\ Generation.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Why Choose Section */
.gpu-deep-learning-why-choose-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.gpu-deep-learning-product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-evenly;
  align-items: start;
  gap: 16px;
}

.gpu-deep-learning-fea-product {
  display: flex;
  background-color: rgb(19,18,19);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 15px;
  height: max-content;
}

.gpu-deep-learning-fea-product div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gpu-deep-learning-fea-product img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

/* Benefits Section */
.gpu-deep-learning-benefits-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

/* Pre-footer CTA Section */
.gpu-deep-learning-pre-footer-cta {
  background-color: rgba(59, 130, 246, 0.05);
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.gpu-deep-learning-pre-footer-cta-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gpu-deep-learning-pre-footer-cta-content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 2rem;
}

.gpu-deep-learning-pre-footer-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 1rem;
}

.gpu-deep-learning-pre-footer-cta-description {
  font-size: 1.125rem;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 2rem;
}

.gpu-deep-learning-pre-footer-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gpu-deep-learning-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

/* FAQ Section - Preserved original design */
.faq-section {
  padding: 30px 5%;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.hero-badge {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #f5f5f5;
}

.section-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.8);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 1.25rem;
  font-weight: 500;
  font-size: 1.125rem;
  color: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-icon:before,
.faq-icon:after {
  content: '';
  position: absolute;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.faq-icon:before {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.faq-icon:after {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

.faq-item.active .faq-icon:before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.8);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gpu-deep-learning-hero h2 {
    font-size: 3.5rem;
  }
  
  .gpu-deep-learning-section-title {
    font-size: 2.5rem;
  }
  
  .gpu-deep-learning-pre-footer-cta-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 900px) {
  .gpu-deep-learning-hero-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .gpu-deep-learning-hero-content {
    max-width: 100%;
  }
  
  .gpu-deep-learning-hero-form-box {
    max-width: 100%;
  }
  
  .gpu-deep-learning-feature-row,
  .gpu-deep-learning-feature-row:nth-child(even) {
    flex-direction: column;
  }
  
  .gpu-deep-learning-feature-content,
  .gpu-deep-learning-feature-image-state-art,
  .gpu-deep-learning-feature-image-AI-and-ML,
  .gpu-deep-learning-feature-image-High-Speed-Networking,
  .gpu-deep-learning-feature-image-Enterprise-Grade-Storage,
  .gpu-deep-learning-nvidia-feature-image {
    width: 100%;
  }
  
  .gpu-deep-learning-feature-image-state-art,
  .gpu-deep-learning-feature-image-AI-and-ML,
  .gpu-deep-learning-feature-image-High-Speed-Networking,
  .gpu-deep-learning-feature-image-Enterprise-Grade-Storage,
  .gpu-deep-learning-nvidia-feature-image {
    margin-bottom: 2rem;
    height: 300px;
  }
  
  .gpu-deep-learning-feature-row:nth-child(even) .gpu-deep-learning-feature-image-state-art,
  .gpu-deep-learning-feature-row:nth-child(even) .gpu-deep-learning-feature-image-AI-and-ML,
  .gpu-deep-learning-feature-row:nth-child(even) .gpu-deep-learning-feature-image-High-Speed-Networking,
  .gpu-deep-learning-feature-row:nth-child(even) .gpu-deep-learning-feature-image-Enterprise-Grade-Storage,
  .gpu-deep-learning-feature-row:nth-child(even) .gpu-deep-learning-nvidia-feature-image {
    order: -1;
  }
  
  .gpu-deep-learning-section-title {
    font-size: 2.25rem;
  }
  
  .gpu-deep-learning-product-features {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .gpu-deep-learning-hero h2 {
    font-size: 2.75rem;
  }
  
  .gpu-deep-learning-hero-description {
    font-size: 1rem;
  }
  
  .gpu-deep-learning-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .gpu-deep-learning-cta-primary, 
  .gpu-deep-learning-cta-secondary {
    width: 100%;
  }
  
  .gpu-deep-learning-trusted-logos {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .gpu-deep-learning-pre-footer-cta-title {
    font-size: 2rem;
  }
  
  .gpu-deep-learning-pre-footer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .gpu-deep-learning-pre-footer-cta-buttons .gpu-deep-learning-btn {
    width: 100%;
  }
  
  .gpu-deep-learning-section-title {
    font-size: 2.25rem;
  }

  .gpu-deep-learning-form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .gpu-deep-learning-form-row .gpu-deep-learning-form-control {
    margin-bottom: 0.75rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gpu-deep-learning-hero h2 {
    font-size: 2.25rem;
  }
  
  .gpu-deep-learning-section-title {
    font-size: 1.75rem;
  }
  
  .gpu-deep-learning-section-description {
    font-size: 1rem;
  }
  
  .gpu-deep-learning-feature-title {
    font-size: 1.5rem;
  }
  
  .gpu-deep-learning-feature-description {
    font-size: 1rem;
  }
  
  .gpu-deep-learning-pre-footer-cta-title {
    font-size: 1.75rem;
  }
  
  .gpu-deep-learning-pre-footer-cta-description {
    font-size: 1rem;
  }

  .gpu-deep-learning-hero-form-box {
    padding: 1.25rem;
    max-width: 100%;
    margin: 0 1rem;
  }
  
  .gpu-deep-learning-form-header {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .gpu-deep-learning-form-control {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .gpu-deep-learning-form-submit {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .gpu-deep-learning-hero-recaptcha {
    transform: scale(0.7);
  }

  .faq-section {
    padding: 40px 0;
  }
}

/* 4K and Large Screen Support */
@media (min-width: 1920px) {
  .gpu-deep-learning-hero-container,
  .gpu-deep-learning-pre-footer-cta-container {
    max-width: 100%;
  }
  
  .gpu-deep-learning-hero h2 {
    font-size: 4.5rem;
  }
  
  .gpu-deep-learning-section-title {
    font-size: 3.5rem;
  }
  
  .gpu-deep-learning-hero-description {
    font-size: 1.5rem;
  }
  
  .gpu-deep-learning-section-description {
    font-size: 1.25rem;
  }
}