*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* MAIN BACKGROUND */
.main{
    position: relative;
    width: 100%;
    min-height: 50vh;
    background: linear-gradient(135deg,#000000,#0d2460);
    overflow: hidden;
}

/* GLOW EFFECT */
.main::before{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #5169ff;
    filter: blur(150px);
    opacity: 0.3;
    top: 20%;
    left: 30%;
    border-radius: 50%;
}

/* NAVBAR */
.navbar{
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* LOGO */
.logo{
    color: #f5e5e5;
    font-size: 30px;
}

/* MENU */
.menu ul{
    display: flex;
    gap: 40px;
}

.menu ul li{
    list-style: none;
}

.menu ul li a{
    text-decoration: none;
    color: #efe4e4;
    font-weight: bold;
    transition: 0.3s;
}

.menu ul li a:hover{
    color: #5169ff;
}

/* SEARCH */
.search{
    display: flex;
    align-items: center;
}

.srch{
    width: 200px;
    height: 40px;
    background: #0b1434;
    border: 1px solid #1f2a63;
    color: #fff;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.srch:focus {
    border-color: #5169ff;
}

.btn{
    background: #181f58;
    border: 1px solid #3e51b5;
    color: #efe4e4;
    width: 100px;
    height: 40px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: 0.3s;
}

.btn:hover{
    background: #5169ff;
    color: white;
}

/* HERO CONTENT */
.content{
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: white;
    padding: 120px 20px 40px;
    position: relative;
    z-index: 10;
}

.content h1{
    font-size: 50px;
    margin-bottom: 20px;
}

.content .par{
    letter-spacing: 1px;
    line-height: 28px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.get-started-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #4a6cf7, #6d8cff);
  color: white;
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(74, 108, 247, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
  outline: none;
}

.get-started-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.get-started-btn:hover {
  background: linear-gradient(135deg, #5d7cff, #7e9aff);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(74, 108, 247, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.get-started-btn:hover i {
  transform: translateX(5px) rotate(5deg);
}

.get-started-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(74, 108, 247, 0.5);
}

.get-started-btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* ABOUT SECTION */
.about{
    padding: 80px 20px;
    text-align: center;
    color: white;
    
    background: linear-gradient(135deg,#000000,#0d2460);
}

.about h2{
    font-size: 32px;
    margin-bottom: 20px;
}

.about p{
    line-height: 28px;
    opacity: 0.9;
}

/* LEARN SECTION */
.learn{
    padding: 80px 20px;
    text-align: center;
    color: white;
    
    
    background: linear-gradient(135deg,#1a1f35,#0a0a0a);
}

.learn h2{
    font-size: 32px;
    margin-bottom: 30px;
}

.learn-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.learn-item{
    background: rgba(255,255,255,0.08);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 18px;
    transition: 0.3s;
    flex: 0 1 auto;
}

.learn-item:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

/* CONTACT SECTION */
.contact-section {
    background: #000;
}

.footer-container{
    background: #000;
    text-align: center;
    padding: 60px 20px;
}

.footer h1{
    color: #fff;
    margin-bottom: 30px;
    font-size: 32px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fa{
    color: white;
    font-size: 26px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.fa:hover{
    color: #5169ff;
    transform: translateY(-3px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px){
    .navbar{
        flex-direction: column;
        height: auto;
        gap: 15px;
        padding: 20px;
    }

    .menu ul{
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .search {
        width: 100%;
        justify-content: center;
    }

    .srch {
        width: 60%;
    }

    .btn {
        width: 80px;
    }

    .content h1{
        font-size: 32px;
    }

    .content {
        padding-top: 80px;
    }

    .learn-item {
        width: calc(50% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .learn-item {
        width: 100%;
    }

    .content h1 {
        font-size: 28px;
    }

    .menu ul {
        gap: 15px;
    }

    .menu ul li a {
        font-size: 14px;
    }
}