body {
    margin: 0;
    padding: 0;
    background: #030b1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: white;
}
/* NAVBAR */

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo-highlight {
    color: #FFB800;
}

header {
    width: 100%;
    padding: 20px 60px;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between; /* REQUIRED */
    align-items: center;
    width: 100%;
    /* border: 1px solid yellow; */
}

.nav-left a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-center {
    width: 70%;
    display: flex;
    justify-content: space-around;
    border: #161b22;
    padding: 1em;
    border-radius: 30px;
    background: rgba(0, 140, 255, 0.05);
}

.nav-center a {
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.3s;
}

.nav-center a:hover {
    color: #FFB800;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signup-btn {
    padding: 8px 18px;
    border-radius: 20px;
    background: #ffc000;
    color: black;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    /* box-shadow: #FFB800 0px 0px 15px; */
}

.signup-btn:hover {
    background: #ffb800;
}

/* Dropdown Box (GitHub style) */

i {
  font-size: 12px;
  margin-left: 2px;
}


.dropdown {
  position: relative;
}

.dropdown-box {
  position: absolute;
  top: 45px;
  left: 0;
  width: 260px;
  background: #051547;
  border: 1px solid #30363d;
  padding: 12px;
  border-radius: 8px;
  display: none;
  animation: fadeIn 0.12s ease-out;
  z-index: 999;
}

.dropdown-box a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #FFFFFF;
}

.dropdown-box a:hover {
  background: #21262d;
  color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-box {
  display: block;
}

Floating Blobs
.blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,102,255,0.4), rgba(0,0,0,0));
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s infinite ease-in-out alternate;
    z-index: -1;
}
.blob:nth-child(1) { top: 10%; left: 10%; animation-duration: 12s; }
.blob:nth-child(2) { bottom: 10%; right: 15%; animation-duration: 14s; }

@keyframes float {
    from { transform: translateY(0px); }
    to   { transform: translateY(-40px); }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

/* Gradient Light Behind Text */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 300px;
    /* background: radial-gradient(circle, rgba(0,140,255,0.45), rgba(0,0,0,0)); */
    background: radial-gradient(circle, rgb(3, 39, 146), rgba(1, 0, 27, 0));
    filter: blur(120px);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero h1 span.keyword {
    color: #FFB800;
}

.hero p {
    font-size: 1.35rem;
    margin-top: 15px;
    opacity: 0.9;
}

/* Typewriter */
.typewriter {
    /* color: #3eb8ff; */
    color: #FFB300;
    font-weight: 700;
    border-right: 2px solid white;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    padding-left: 6px;
}

/* Buttons */
.btn-row {
    margin-top: 30px;
}

.cta {
    background: linear-gradient(90deg, #ffb300, #ff8800);
    padding: 14px 28px;
    border-radius: 50px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255,136,0,0.6);
}

.cta:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255,180,0,0.9);
}

.cta-outline {
    border: 2px solid #FFB300;
    padding: 12px 28px;
    color: #FFB300;
    border-radius: 50px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-outline:hover {
    background: #FFB300;
    color: #000;
    transform: scale(1.08);
    /* box-shadow: 0 0 25px rgba(0,153,255,0.8); */
    box-shadow: 0 0 25px rgba(255,180,0,0.8);
}

/* Trust Badges */
/* .badges {
    margin-top: 40px;
    font-size: 1rem;
    opacity: 0.9;
} */



h1, h2 {
    text-align: center;
    margin-top: 20px;
}
h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
    margin-top: 10px;
    color: #000b2c;
}

/* Body Part */

.course-content {
    width: 90%;
    margin: 0 auto;
    /* border: 1px solid black; */
}

.course-header{
    height: 70vh;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10vh;
    justify-content: space-between;
    /* background-color: #DADADA; */
    /* background-color: #b4b4b4; */
    background-color: #F0F0F0;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(187, 187, 187, 0.08);
    transition: 0.3s ease;
    
}
.course-image-box {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
}

.course-image-box img {
    height: 100%;
    border-radius: 4%;
}

.course-description-box {
    width: 50%;
    padding:0 7% 0 7%;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

.course-description-box h2 {
    padding-top: 20px;
    color: #051547;
}


.course-description-box p{
    font-size: 1rem;
    margin-top: 20px;
    color: #051547;
    font-size: 1.1rem;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    
}

/* Button Properties */

.btn-primary {
    background-color: #ffbd22;
    color: #051547;
}
.btn-primary:hover {
    background-color: #FFB300;
}
.btn-secondary {
    background-color: #051547;
    color: white;
    margin-left: 20px;
}

.btn-secondary:hover {
    background-color: #040d2a;
}

/* Why Codeion, Mission, Vision section */

.codeops-info {
    width: 90%;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.info-block {
    padding: 40px 35px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(187, 187, 187, 0.08);
    transition: 0.3s ease;
    text-align: left;
}

.info-block:hover {
    box-shadow: 0 12px 36px rgba(187, 187, 187, 0.16);
}

.info-block h2 {
    color: #0b2d64;
    font-size: 28px;
    margin-bottom: 12px;
}

.info-block p {
    color: #051547;
    font-size: 16px;
    line-height: 1.7;
}

/* Responsive */
@media (min-width: 800px) {
    .codeops-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Get started  section*/

.get-started {
    width: 90%;
    margin: 80px auto;
    text-align: center;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.get-started h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.get-started p {
    margin-bottom: 30px;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.get-started .btn-primary {
    background-color: #ffbd22;
    color: #051547;
}
.get-started .btn-primary:hover {
    background-color: #FFB300;
}

/* Footer Section  */

.footer {
  background: #010d25;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  gap: 75px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  padding: 4vh 0 0vh 0;
}


.footer-section {
  flex: 1;
  min-width: 180px;
  list-style-type: none;
  line-height: 1.5;
  text-align: center;
}

.footer-section address {
  font-style: normal;
  line-height: 1.6;
  font-size: 14px;
}

.address-acknoledgement {
  margin-top: 10px;
  font-size: 12px;
  color: #888888;
}

.contact-us a, 
.join-us a {
  color: #FFBD22;
  text-decoration: none;
}

.privacy-policy li > a {
  margin: 4px 0;
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
}

.privacy-policy li > a:hover {
color: #FFB300;
}


.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  width: 90%;
  border-top: 1px solid #1a3d7c;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.social {
  font-size: 14px;
}

.social a {
  color: #FFB300;
  text-decoration: none;
  margin: 0 4px;
}

.social a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ----------------------FAQ CSS--------------------------------- */
.faq-container {
width: 90%;
margin: 50px auto;
}


.faq-item {
background: #888888;
margin-bottom: 10px;
border-radius: 12px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
}


.faq-question {
width: 100%;
padding: 18px 20px;
border: none;
background: #FAFAFA;
text-align: left;
cursor: pointer;
outline: none;
font-size: 18px;
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
}


.faq-answer {
max-height: 0;
overflow: hidden;
background: #051547;
padding: 0 20px;
font-size: 16px;
transition: max-height 0.3s ease, padding 0.3s ease;
}


.faq-answer.open {
max-height: 200px;
padding: 15px 20px 20px;
}


.icon {
transition: transform 0.3s ease;
font-size: 22px;
}


.rotate {
transform: rotate(45deg);
}