/* Global Styles */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --background-color: #0f172a;
  --text-color: #f8fafc;
  --card-bg: #1e293b;
  --font-family: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #2563eb, #f59e0b);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}

/* Custom Selection */
::selection {
  background: rgba(37, 99, 235, 0.3);
  color: #fff;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

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

ul {
  list-style: none;
}

/* Navbar */
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: 80px;
  /* Fixed height to prevent resizing */
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  width: 150px;
  /* Placeholder width to maintain layout */
  height: 100%;
}

.logo img {
  height: 160px;
  /* Much larger logo */
  position: absolute;
  top: -25px;
  /* Negative top to center vertically while overflowing */
  left: 0;
  z-index: 1001;
}

.nav-links {
  display: flex;
  gap: 2rem;
}



.nav-links a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 4px 0;
  transition: 0.4s;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  /* Changed to min-height for responsiveness */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Space betwen text and image */
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 5%;
  /* Increased padding */
  flex-direction: column;
  /* Mobile first */
}

@media (min-width: 968px) {
  .hero {
    flex-direction: row;
    text-align: left;
  }

  .hero-content {
    width: 50%;
    text-align: left;
  }

  .hero-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-image {
    width: 45%;
    display: flex;
    justify-content: center;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(37, 99, 235, 0.1) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(245, 158, 11, 0.1) 50%, transparent 52%);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

@media (min-width: 968px) {
  .hero-content {
    margin-bottom: 0;
  }
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.3));
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.hero-content h1 {
  font-size: 3rem;
  /* Adjusted for better mobile fit */
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #60a5fa, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 4rem;
  }
}


.hero-content p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  border: none;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.btn.secondary {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  backdrop-filter: blur(5px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Features Section */
.features {
  padding: 5rem 5%;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(20px);
  padding: 3.5rem 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card img {
  height: 90px;
  margin-bottom: 2rem;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  background: rgba(30, 41, 59, 0.6);
  border-color: var(--primary-color);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(37, 99, 235, 0.1);
}

.feature-card:hover img {
  transform: scale(1.15) rotate(8deg);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  z-index: 2;
}

.feature-card p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  /* Push button to bottom */
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
  width: 100%;
}

.feature-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  position: relative;
}

.feature-card ul li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.feature-card .btn {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

/* Footer */
footer {
  background-color: #020617;
  padding: 2rem 5%;
  text-align: center;
  color: #64748b;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 70px;
    background-color: var(--card-bg);
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }


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

/* Page Headers */
.page-header {
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('assets/images/hero-bg.jpg');
  /* Fallback or use color */
  background-color: #1e293b;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Nike-style Heading */
.nike-heading {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -4px;
  line-height: 0.85;
  color: white;
  position: relative;
  z-index: 2;
  margin: 0;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: 10px 10px 0px rgba(37, 99, 235, 0.4);
  /* Added a sharp shadow instead of gradient clip for a more aggressive look */
  transform: skewX(-5deg);
  /* Extra tilt for that aggressive sporty feel */
}

/* Optional Backdrop Text for Depth */
.page-header::after {
  content: 'LOGYANTRA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  pointer-events: none;
}

/* Content Sections */
.content-section {
  padding: 4rem 5%;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #60a5fa, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.content-section p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #cbd5e1;
}

/* Internship Grid */
.internship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.internship-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.internship-card h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.internship-card ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

/* Contact Form */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #334155;
  background-color: #0f172a;
  color: white;
  font-family: inherit;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Projects Page Styles */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.project-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.project-info p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.project-info .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* About Page Specifics */
.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
  flex-direction: column;
  /* Mobile first */
}

@media (min-width: 768px) {

  /* Lowered breakpoint */
  .about-content {
    flex-direction: row;
    justify-content: space-between;
    /* Ensure spacing */
  }
}

.about-text {
  flex: 1;
  text-align: left;
  /* Ensure text is left aligned */
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  /* Align image container to right */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.about-image:hover {
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

/* =========================================================================
   AUTHENTIC CERTIFICATE VERIFICATION SYSTEM (PREMIUM)
   ========================================================================= */

.verification-section {
  padding: 10rem 5%;
  background-color: #0b0f1a;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.verify-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.verification-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.glow-text {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.verification-content p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 4rem;
}

/* Verify Card */
.verify-card-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.verify-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1rem;
  width: 100%;
  max-width: 650px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.verify-card:focus-within {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 99, 235, 0.2);
}

.input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-icon {
  padding-left: 1.5rem;
  color: #475569;
  font-size: 1.2rem;
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1.2rem;
  color: #f8fafc;
  font-family: inherit;
  font-size: 1.1rem;
  outline: none;
}

.input-group input::placeholder {
  color: #475569;
}

.verify-btn-enhanced {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.verify-btn-enhanced:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* Result Container */
.certificate-container {
  margin-top: 5rem;
  perspective: 2000px;
}

.cert-card {
  background: #1e293b;
  border-radius: 30px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  display: inline-block;
  max-width: 100%;
  animation: certAppear 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes certAppear {
  from {
    opacity: 0;
    transform: rotateX(-20deg) translateY(50px);
  }

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

.cert-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cert-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.cert-card:hover .cert-image-wrapper img {
  transform: scale(1.02);
}

.cert-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.1), transparent);
  background-size: 100% 200%;
  animation: scan 4s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  from {
    background-position: 0 -100%;
  }

  to {
    background-position: 0 100%;
  }
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-link:hover {
  background: white;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

/* Status Toasts */
.error-toast {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  color: #f87171;
  font-weight: 500;
  animation: shake 0.5s ease;
}

@keyframes shake {

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

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }
}

/* Background Orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #1e3a8a;
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #312e81;
  bottom: -50px;
  right: -50px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .glow-text {
    font-size: 2.5rem;
  }

  .verify-card {
    border-radius: 30px;
    padding: 0.5rem;
  }

  .input-group {
    flex-direction: column;
    padding: 1rem;
  }

  .input-icon {
    display: none;
  }

  .input-group input {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
  }

  .verify-btn-enhanced {
    width: 100%;
    justify-content: center;
  }

  .cert-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
}


/* =========================================================================
   PREMIUM CONTACT PAGE SYSTEM (RESIZED & BEAUTIFIED)
   ========================================================================= */

:root {
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --primary-glow: rgba(37, 99, 235, 0.5);
}

.contact-section-premium {
  padding: 8rem 5%;
  background-color: #050810;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Contact Info Card */
.contact-info-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent, rgba(37, 99, 235, 0.1), transparent);
  animation: rotate 10s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  color: #60a5fa;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.contact-info-card h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: #fff;
}

.contact-info-card p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.info-items {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item:hover {
  transform: translateX(10px);
}

.info-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #60a5fa;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.info-item:hover .info-icon {
  transform: scale(1.1) rotate(-10deg);
  background: #2563eb;
  color: white;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.info-text span {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-text strong {
  font-size: 1.15rem;
  color: #f1f5f9;
  font-weight: 600;
}

.social-links-premium {
  display: flex;
  gap: 1.2rem;
}

.social-links-premium a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links-premium a:hover {
  background: #fff;
  color: #0f172a;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Contact Form Card */
.contact-form-card {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 3.5rem;
  box-shadow:
    0 40px 100px -20px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group-premium {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group-premium:last-of-type {
  border-bottom: none;
}

.form-group-premium label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.form-group-premium label i {
  color: #2563eb;
  font-size: 1rem;
}

.form-group-premium input,
.form-group-premium textarea {
  background: rgba(10, 15, 30, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
  color: #475569;
}

.form-group-premium input:focus,
.form-group-premium textarea:focus {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.verify-btn-enhanced {
  width: 100%;
  margin-top: 1rem;
  padding: 1.3rem;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
  border-radius: 18px;
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.5);
}

.verify-btn-enhanced:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px -10px rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Background Orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.3;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1e40af, transparent);
  top: -200px;
  left: -200px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #312e81, transparent);
  bottom: -150px;
  right: -150px;
}

/* Page Header Enhancements */
.contact-header {
  height: 50vh;
  background: linear-gradient(rgba(5, 8, 16, 0.7), rgba(5, 8, 16, 0.9)), url('assets/images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15rem;
  background: linear-gradient(to top, #050810, transparent);
  z-index: 1;
}

/* Responsiveness */
@media (max-width: 1100px) {
  .contact-wrapper {
    gap: 2rem;
    padding: 0 2rem;
    margin: 0 auto;
    transform: none;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 2.5rem;
  }
}

@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-section-premium {
    padding: 5rem 5%;
  }

  .contact-info-card {
    order: 2;
  }

  .contact-form-card {
    order: 1;
  }
}

@media (max-width: 768px) {
  .form-group-premium {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .form-row {
    gap: 0.5rem;
    flex-direction: column;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .contact-form-card h2,
  .contact-info-card h2 {
    font-size: 2rem;
  }

  .contact-wrapper {
    padding: 0 1rem;
  }

  .nike-heading {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {

  .contact-info-card,
  .contact-form-card {
    padding: 1.2rem;
  }

  .form-group-premium input,
  .form-group-premium textarea {
    padding: 1rem;
    border-radius: 12px;
  }

  .verify-btn-enhanced {
    padding: 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

.hidden {
  display: none !important;
}

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


/* Consultancy Section Styles */
.consultancy-section {
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.section-title-premium {
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.consultancy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.consultancy-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.consultancy-card:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(30, 41, 59, 0.6);
  border-color: #2563eb;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

.consult-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #60a5fa;
  margin: 0 auto 2.5rem;
  position: relative;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2),
    inset 0 0 15px rgba(37, 99, 235, 0.1);
}

.consult-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, #2563eb, transparent, #60a5fa);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.consultancy-card:hover .consult-icon {
  transform: scale(1.1) rotateY(180deg);
  background: #2563eb;
  color: white;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.6),
    0 0 20px rgba(96, 165, 250, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.consultancy-card:hover .consult-icon::after {
  opacity: 1;
}

.consultancy-card h3 {
  margin-bottom: 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.consultancy-card p {
  color: #94a3b8;
  line-height: 1.8;
}

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

/* Service Inquiry Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.close-modal:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  transform: rotate(90deg);
}

#modal-service-title {
  text-align: center;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-clickable,
.internships-clickable {
  cursor: pointer;
}

.service-clickable:hover,
.internships-clickable:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

/* Premium Modal Enhancements */
.premium-modal {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  border-radius: 16px;
}

.premium-modal::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.premium-modal>* {
  position: relative;
  z-index: 1;
}

.modal-header-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

#modal-service-title {
  text-align: center;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.premium-input-group {
  margin-bottom: 1.5rem;
}

.premium-input-group label {
  display: block;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.premium-input-group input,
.premium-input-group textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 1rem !important;
  box-sizing: border-box !important;
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.premium-input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.premium-input-group input:focus,
.premium-input-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.premium-input-group input::placeholder,
.premium-input-group textarea::placeholder {
  color: #64748b;
  font-weight: 300;
}

.premium-submit-btn {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.premium-submit-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: left 0.5s ease;
}

.premium-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(59, 130, 246, 0.5);
}

.premium-submit-btn:hover::before {
  left: 100%;
}

.premium-submit-btn:active {
  transform: translateY(1px);
  box-shadow: 0 5px 10px -5px rgba(59, 130, 246, 0.4);
}