@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,400i,500,500i,700,700i&display=swap");
body {
  line-height: inherit;
  background-color: hsl(var(--background));
  font-family: DM Sans, system-ui, sans-serif;
  color: hsl(var(--foreground));
}
body {
  /* CSS Variables that may have been missed get put on body */
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-gradient-from: hsl(var(--navy)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--navy) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: hsl(var(--navy) / 0.9) var(--tw-gradient-to-position);
  --tw-ring-offset-color: hsl(var(--background));
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  --tw-space-y-reverse: 0;
  --tw-space-y-reverse: 0;
  --tw-space-y-reverse: 0;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),
    0 2px 4px -2px var(--tw-shadow-color);
  --tw-space-y-reverse: 0;
  --tw-text-opacity: 1;
  --tw-gradient-from: #d1d5db var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(209 213 219 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #9ca3af var(--tw-gradient-to-position);
}

* {
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
}

* {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

* {
  border-color: hsl(var(--border));
}

body {
  margin: 0;
  line-height: inherit;
}

body {
  background-color: hsl(var(--background));
  font-family: DM Sans, system-ui, sans-serif;
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: DM Sans, sans-serif;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: DM Sans, system-ui, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

:root {
  --background: 0 0% 100%;
  --foreground: 220 20% 10%;
  --card: 0 0% 100%;
  --primary: 145 80% 42%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 14% 96%;
  --muted: 220 14% 96%;
  --muted-foreground: 220 10% 45%;
  --accent: 270 70% 55%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 13% 91%;
  --radius: 0.5rem;
  --hero-bg: 145 50% 96%;
  --section-alt: 220 14% 97%;
  --navy: 220 40% 13%;
  --green-light: 145 60% 90%;
  --purple: 270 70% 55%;
  --purple-light: 270 80% 95%;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-background {
  background-color: hsl(var(--background));
}

*,
:before,
:after {
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
}

*,
:before,
:after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

:backdrop {
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
}

.dcg-logo {
  width: 100%;
}

.header {
  padding: 5px 0;
}

.logo-sec {
  width: 14%;
}

.justify-end {
  justify-content: flex-end;
}

/* Navbar CSS */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  position: relative;
}

/* Links */
.nav-link,
.dropdown-btn {
  font-size: 14px;
  color: #6b7280; /* muted */
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.dropdown-btn:hover {
  color: #111827; /* foreground */
}

/* Dropdown wrapper */
.dropdown {
  position: relative;
}

/* Arrow icon */
.arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  width: 260px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Dropdown list */
.dropdown-menu ul {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #f3f4f6;
}

/* Header base animation */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

/* Hidden state (scroll down) */
.header--hidden {
  transform: translateY(-100%);
}

/* Visible state (scroll up) */
.header--visible {
  transform: translateY(0);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.border-b {
  border-bottom-width: 1px;
}

.border-border {
  border-color: hsl(var(--border));
}

.bg-navy {
  background-color: hsl(var(--navy));
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.fixed {
  position: fixed;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.border-t {
  border-top-width: 1px;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.flex {
  display: flex;
}

.h-16 {
  height: 4rem;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.bg-hero {
  background-color: hsl(var(--hero-bg));
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.bg-section-alt {
  background-color: hsl(var(--section-alt));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-navy {
  --tw-gradient-from: hsl(var(--navy)) var(--tw-gradient-from-position);
  --tw-gradient-to: hsl(var(--navy) / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-navy\/90 {
  --tw-gradient-to: hsl(var(--navy) / 0.9) var(--tw-gradient-to-position);
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-3 {
  gap: 0.75rem;
}

.flex-col {
  flex-direction: column;
}

.gap-4 {
  gap: 1rem;
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
}

button {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button {
  text-transform: none;
}

button {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

button {
  cursor: pointer;
}

.inline-flex {
  display: inline-flex;
}

.h-10 {
  height: 2.5rem;
}

.w-full {
  width: 100%;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded-s {
  border-radius: 0.3rem;
}

.rounded-xl {
  border-radius: 1rem;
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-semibold {
  font-weight: 600;
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}

.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.hover\:bg-primary\/90:hover {
  background-color: hsl(var(--primary) / 0.9);
}

a {
  color: inherit;
  text-decoration: inherit;
}

.hidden {
  display: none;
}

.gap-6 {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
}

.h-9 {
  height: 2.25rem;
}

.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.font-medium {
  font-weight: 500;
}

@media (min-width: 768px) {
  .md\:inline-flex {
    display: inline-flex;
  }
}

.hover\:bg-accent:hover {
  background-color: hsl(var(--accent));
}

.hover\:text-accent-foreground:hover {
  color: hsl(var(--accent-foreground));
}

.grid {
  display: grid;
}

.items-start {
  align-items: flex-start;
}

.gap-12 {
  gap: 3rem;
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.second-sec-grid {
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
}
.second-sec-col1 {
  grid-row-start: 1;
  grid-row-end: 3;
}

.second-sec-col4 {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
  grid-column-end: 4;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.opacity-70 {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .md\:gap-12 {
    gap: 3rem;
  }
}

.max-w-2xl {
  max-width: 42rem;
}

.text-primary-foreground\/60 {
  color: hsl(var(--primary-foreground) / 0.6);
}

p {
  margin: 0;
}

.h-8 {
  height: 2rem;
}

.w-8 {
  width: 2rem;
}

.rounded-full {
  border-radius: 9999px;
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.hover\:text-foreground:hover {
  color: hsl(var(--foreground));
}

.rounded-2xl {
  border-radius: 1.5rem;
}

.border {
  border-width: 1px;
}

.bg-card {
  background-color: hsl(var(--card));
}

.p-6 {
  padding: 1.5rem;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.accordion-item.active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.icon {
  margin-left: auto;
  transition: transform 0.4s ease;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

.review-scroller {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}

.review-track {
  display: flex;
  width: 300%;
  animation: scrollReviews 40s linear infinite;
}

/* Pause animation on hover */
.review-scroller:hover .review-track {
  animation-play-state: paused;
}

/* Keep spacing between duplicate sets */
.review-set {
  display: grid;
  grid-auto-flow: column;
  column-gap: 24px;
  padding-right: 24px;
}

/* Infinite scroll animation */
@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Smooth accordion animation */
.accordion-content {
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  opacity: 1;
  padding: 0 20px 20px;
}

h2 {
  font-size: inherit;
  font-weight: inherit;
}

h2 {
  margin: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.font-bold {
  font-weight: 700;
}

@media (min-width: 768px) {
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.mb-8 {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.2);
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.text-primary {
  color: hsl(var(--primary));
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.text-primary-foreground\/80 {
  color: hsl(var(--primary-foreground) / 0.8);
}

.h-11 {
  height: 2.75rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hover\:text-primary-foreground:hover {
  color: hsl(var(--primary-foreground));
}

.border-transparent {
  border-color: transparent;
}

.bg-purple-light {
  background-color: hsl(var(--purple-light));
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-purple {
  color: hsl(var(--purple));
}

.hover\:bg-secondary\/80:hover {
  background-color: hsl(var(--secondary) / 0.8);
}

h1 {
  font-size: inherit;
  font-weight: inherit;
}

h1 {
  margin: 0;
}

.leading-tight {
  line-height: 1.25;
}

.text-navy {
  color: hsl(var(--navy));
}

@media (min-width: 1024px) {
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

.max-w-md {
  max-width: 28rem;
}

.pt-4 {
  padding-top: 1rem;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-1 {
  border: 1px solid rgba(128, 128, 128, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.hero-sec-img {
  width: 500px;
}

.certi-sec {
  justify-content: flex-start;
}

.certi-sec > p {
  transform: translateY(-20px);
}

.leaners-sec {
  align-items: flex-start;
}

.rating-sec {
  align-items: flex-end;
}

.hacks-sec {
  justify-content: flex-start;
}

.hacks-sec > p {
  transform: translateY(-20px);
}

.certi-icon-bg {
  background-image: url("../Images/web-images/bootcamp-certi-bw.png");
  background-repeat: no-repeat;
  background-position: bottom -100px right 0;
  background-size: cover;
}

.learner-icon-bg {
  background-image: url("../Images/web-images/learner-icon.png");
  background-repeat: no-repeat;
  background-position: bottom -20px right 0;
  background-size: cover;
}

.rating-icon-bg {
  background-image: url("../Images/web-images/rating-icon-2.png");
  background-repeat: no-repeat;
  background-position: bottom -20px right 0;
  background-size: cover;
}

.hacks-img {
  background-image: url("../Images/web-images/hacks-img.png");
  background-repeat: no-repeat;
  background-position: bottom -10px right 0;
  background-size: cover;
}

.career-sec-bg {
  background-image: url("../Images/web-images/growthGuideBg.png");
  background-repeat: no-repeat;
  background-position: bottom -10px right 0;
  background-size: contain;
}

.discount-sec-bg {
  background-image: url("../Images/web-images/discountBg.png");
  background-repeat: no-repeat;
  background-position: bottom -10px right 0;
  background-size: contain;
}

.certi-sec-bg {
  background-image: url("../Images/web-images/certificateBG.png");
  background-repeat: no-repeat;
  background-position: bottom -10px right 0;
  background-size: contain;
}

.curriculum-sec-bg {
  background-image: url("../Images/web-images/IndustryReleventBG.png");
  background-repeat: no-repeat;
  background-position: bottom -10px right 0;
  background-size: contain;
}

.cheetsheet-sec-bg {
  background-image: url("../Images/web-images/cheatSheetBg.png");
  background-repeat: no-repeat;
  background-position: bottom -10px right 0;
  background-size: contain;
}

.interview-sec-bg {
  background-image: url("../Images/web-images/interviewPrepBg.png");
  background-repeat: no-repeat;
  background-position: bottom -10px right 0;
  background-size: contain;
}

.int-img {
  object-fit: contain;
}

.rounded-lg {
  border-radius: var(--radius);
}

.border-primary\/20 {
  border-color: hsl(var(--primary) / 0.2);
}

.bg-green-light\/50 {
  background-color: hsl(var(--green-light) / 0.5);
}

.p-4 {
  padding: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.bg-green-light\/30 {
  background-color: hsl(var(--green-light) / 0.3);
}

.border-destructive\/20 {
  border-color: hsl(var(--destructive) / 0.2);
}

.bg-destructive\/5 {
  background-color: hsl(var(--destructive) / 0.05);
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),
    0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

svg {
  display: block;
  vertical-align: middle;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.gap-1 {
  gap: 0.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.border-0 {
  border-width: 0px;
}

.bg-primary\/10 {
  background-color: hsl(var(--primary) / 0.1);
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.hover\:bg-primary\/80:hover {
  background-color: hsl(var(--primary) / 0.8);
}

h3 {
  font-size: inherit;
  font-weight: inherit;
}

h3 {
  margin: 0;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"] {
  animation: accordion-up 0.2s ease-out;
}

.mb-4 {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

.text-primary\/30 {
  color: hsl(var(--primary) / 0.3);
}

.leading-relaxed {
  line-height: 1.625;
}

.fill-yellow-500 {
  fill: #eab308;
}

.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.p-3 {
  padding: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

.w-3 {
  width: 0.75rem;
}

.w-auto {
  width: 5rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.hover\:no-underline:hover {
  text-decoration-line: none;
}

.h-6 {
  height: 1.5rem;
}

.w-6 {
  width: 1.5rem;
}

.bg-destructive {
  background-color: hsl(var(--destructive));
}

.text-left {
  text-align: left;
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.pr-4 {
  padding-right: 1rem;
}

.shrink-0 {
  flex-shrink: 0;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.duration-200 {
  transition-duration: 0.2s;
}

.duration-200 {
  animation-duration: 0.2s;
}

.text-destructive-foreground {
  color: hsl(var(--destructive-foreground));
}

.text-destructive {
  color: hsl(var(--destructive));
}

.h-full {
  height: 100%;
}

.from-gray-300 {
  --tw-gradient-from: #d1d5db var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(209 213 219 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-gray-400 {
  --tw-gradient-to: #9ca3af var(--tw-gradient-to-position);
}

.hero-right-sec-mt {
  margin-top: 0 !important;
}

@keyframes accordion-up {
  0% {
    height: var(--radix-accordion-content-height);
    height: var(--radix-accordion-content-height);
  }
  100% {
    height: 0;
    height: 0px;
  }
}

/* Jiggle / Wiggle animation */
@keyframes wiggle {
  0% { transform: rotate(0deg); }
  2% { transform: rotate(-2deg); }
  4% { transform: rotate(2deg); }
  6% { transform: rotate(-2deg); }
  8% { transform: rotate(2deg); }
  10% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* Apply animation */
.wiggle-btn {
  animation: wiggle 3.5s ease-in-out infinite;
  transform-origin: center;
}

/* Stop animation on hover (important UX rule) */
.wiggle-btn:hover {
  animation-play-state: paused;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.cta-glow-btn {
  animation: pulseGlow 2.8s infinite;
}

.cta-glow-btn:hover {
  animation-play-state: paused;
}

.cta-shine-btn {
  position: relative;
  overflow: hidden;
}

.cta-shine-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -150%;
  }
  60% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.cta-shine-btn:hover::after {
  animation-play-state: paused;
}




.mob-rev-sec {
  display: none;
}


.form-container {
  z-index: 1;
  justify-content: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  display: grid;
  grid-template-columns: 40% 60%;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px){
.form-container{
  position: relative;
  left: 0%;
}
}

.left-panel {
  background: linear-gradient(135deg, #15c15d 0%, #32af39 50%, #0f9c4a 100%);
  color: white;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.left-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 10%,
    transparent 10%
  );
  background-size: 25px 25px;
  animation: float 20s linear infinite;
}

.left-panel-content {
  position: relative;
  z-index: 1;
}

.left-panel h1 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.left-panel p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}
.join_us{
  font-weight: 300;
}
.free_Bootcamp{
  font-size: 2rem;
  font-weight: 600;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  font-weight: 300;
  padding: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.features li:hover {
  opacity: 1;
  transform: translateX(3px);
}

.features li::before {
  content: "";
  font-size: 18px;
  flex-shrink: 0;
}

.workshop-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.form-panel {
  background-color: #d6f5e380;
  padding: 35px 35px;
  display: flex;
  flex-direction: column;
}

.form-header {
  margin-bottom: 25px;
}

.form-title {
  color: #2e7d32;
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group {
  margin-bottom: 18px;
  position: relative;
}

label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 8px;
  font-size: 13px;
}

label .icon {
  font-size: 15px;
}

label span.required {
  color: #f44336;
  font-weight: bold;
  margin-left: 2px;
}

input,
select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafafa;
  font-family: "DM-Sans", sans-serif;
  color: #333;
}

input:hover,
select:hover {
  border-color: #c8e6c9;
  background: #f5f5f5;
}

input:focus,
select:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  background: white;
  transform: translateY(-1px);
}

input::placeholder {
  color: #999;
}

.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 5px;
}

.session-option {
  background: #fafafa;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.session-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.session-option:hover {
  border-color: #4caf50;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.15);
}

.session-option:hover::before {
  opacity: 1;
}

.session-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #4caf50;
  cursor: pointer;
}

.session-option input[type="radio"]:checked + .session-content {
  color: #2e7d32;
}

.session-option:has(input[type="radio"]:checked) {
  border-color: #4caf50;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), white);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
}

.session-content {
  flex: 1;
  color: #555;
  line-height: 1.4;
  font-size: 13px;
}

.session-content strong {
  font-size: 14px;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234caf50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.formSubBtn {
  width: 100%;
  background: #15c15d;
  color: white;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
  box-shadow: 0 6px 18px rgba(76, 175, 80, 0.3);
}

.formSubBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.formSubBtn:hover::before {
  left: 100%;
}

.formSubBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
  background: #23ac5c;
}

.formSubBtn:active {
  transform: translateY(-1px);
}

.formSubBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.error {
  border-color: #f44336 !important;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1) !important;
  background: #ffebee !important;
}

.error-message {
  color: #f44336;
  font-size: 12px;
  margin-top: 6px;
  display: none;
  font-weight: 500;
  /* display: flex; */
  align-items: center;
  gap: 4px;
}

.error-message::before {
  content: "⚠️";
  font-size: 13px;
}

.success {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  padding: 35px;
  text-align: center;
  border-radius: 16px;
  display: none;
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
  margin-top: 15px;
}

.success h3 {
  color: #2e7d32;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}

.success p {
  font-size: 15px;
  line-height: 1.6;
}

.success-icon {
  font-size: 60px;
  margin-bottom: 15px;
  animation: float 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .form-container {
    grid-template-columns: 1fr;
    max-width: 550px;
  }

  .left-panel {
    padding: 35px 30px;
  }

  .left-panel h1 {
    font-size: 28px;
  }

  .form-panel {
    padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 15px 10px;
  }

  .form-container {
    max-width: 100%;
  }

  .left-panel,
  .form-panel {
    padding: 30px 25px;
  }

  .left-panel h1 {
    font-size: 26px;
  }

  .form-title {
    font-size: 22px;
  }

  .sessions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .left-panel,
  .form-panel {
    padding: 25px 20px;
  }

  .left-panel h1 {
    font-size: 24px;
  }

  .form-title {
    font-size: 20px;
  }

  .formSubBtn {
    font-size: 14px;
    padding: 13px;
  }
}

/* Material Icons */
.material-icons.icon {
  font-size: 20px !important;
  width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: middle;
}

/* Two-column layouts */
.name-email-row,
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 18px;
}

.name-email-row .form-group,
.form-row .form-group {
  margin-bottom: 0;
}

/* Responsive - Stack on mobile */
@media (max-width: 768px) {
  .name-email-row,
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Remix Icons - Professional & Lightweight */
.ri.icon {
  font-size: 20px !important;
  width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: middle;
  color: #2e7d32;
}

/* Two-column layouts (keep these) */
.name-email-row,
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 18px;
}

.name-email-row .form-group,
.form-row .form-group {
  margin-bottom: 0;
}

/* Responsive - Stack on mobile */
@media (max-width: 768px) {
  .name-email-row,
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


@media (max-width: 670px) {
  .dcg-logo {
    width: 300%;
  }

  .hero-sec-img {
    width: 100%;
  }
  .second-sec-grid {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }
  .second-sec-col1 {
    grid-row-start: unset;
    grid-row-end: unset;
  }

  .second-sec-col4 {
    grid-row-start: unset;
    grid-row-end: unset;
    grid-column-start: unset;
    grid-column-end: unset;
  }
  .certi-sec{
    padding: 90px 0;
  }
  .certi-text{
    opacity: 0;
  }
  .hacks-text{
    opacity: 0;
  }
  .hacks-sec{
    padding: 100px 0;
  }
  .mob-text-head {
    font-size: 0.8rem;
  }
  .mob-text-content {
    font-size: 0.8rem;
  }
  .mob-rev-sec {
    display: flex;
  }
  .desk-rev-sec {
    display: none;
  }
  .dcg-foot-logo {
    transform: translateX(-50px);
  }
}

/* These were inline style tags. Uses id+class to override almost everything */
/* #radix-:r1:.style-qovoO {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:r3:.style-vZAVd {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:r5:.style-oBMQg {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:r7:.style-AZFCf {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:r9:.style-hkHbS {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:rb:.style-RHOnr {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:rd:.style-vmcbA {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:rf:.style-zHbNw {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:rh:.style-AXJm4 {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:rj:.style-T4IbH {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:rl:.style-RdLGQ {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}  
#radix-:rn:.style-nTKgV {  
   --radix-accordion-content-height: var(--radix-collapsible-content-height);  
    --radix-accordion-content-width: var(--radix-collapsible-content-width);  
}   */
