*{
    margin: 0;
    padding: 0;
}
#navbar{
    text-decoration: none;
    display:flex;
    justify-content: space-evenly;
    align-items:center;
    border: 2px solid #a1d1fe;
    border-radius: 20px;
    box-shadow: #a1d1fe;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: bold;
    background-color:white;
    position: sticky;
    width: 38vw;
    height: 38px;
    margin: 120px 0px;
    margin-left:150px;
}
#navbar:hover{
    border: 2px solid rgb(2, 85, 169);
}
.nav-items{
    text-decoration: none;
    color: #4205bd;
    font-size: 17px;
}
.nav-items:hover{
    transition: 0.2s ease-out 0s;
    font-size: 19px;
    color:#024bca;
}
header{
    display:flex;
    justify-content: center;
}
body{
    background-image: linear-gradient(to bottom, #eff6ff,#93c5fd, #eff6ff);
    height:100vh;
}
#Toggle-btn{
    text-decoration: none;
    border: hidden;
    height: 50px;
    width: 50px;
    background: transparent;
    position: absolute;
    right: 0;
    font-size: 20px;
}
#Toggle-btn:hover{
    transform: rotate(15deg) scale(1.2);
    transition: 0.6s ease-in-out 0s;
    text-shadow:3px 3px 6px black;

}
@keyframes shake {
  0%   { transform: rotate(0deg); }
  1%  { transform: rotate(-10deg); }
  2%  { transform: rotate(10deg); } 
  3%  { transform: rotate(-10deg); } 
  4% { transform: rotate(0deg); }  
  100% { transform: rotate(0deg); }  
}
#reminder {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 15px;
    height: 50px;
    width: 165px;
    background: linear-gradient(135deg, #5cb3fe, #00f2fe);
    box-shadow: 2px 4px 10px rgba(0,0,0,0.2);
    position: relative;
    left: 190px;
    top: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: shake 20s ease 5s infinite;
}

.rem-elements {
    font-family: 'Poppins', sans-serif;
    color: rgb(238, 246, 248);
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

#reminder:hover {
    box-shadow: 2px 5px 13px rgba(0,0,0,0.3);
    animation:none;
}
.register{
    display:flex;
    justify-content: center;
    align-items: center;
    border: none;
    position: absolute;
    left:5px;
    top:15px;
}
#reg-option-1{
    display:flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(248, 205, 139);
    border-radius: 20px;
    margin-left: 20px;
    height: 24px;
    width: 67px;
    cursor: pointer;
    font-family: 'Poppins', 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
}
#reg-option-2{
    display:flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(247, 185, 78);
    border-radius: 90px;
    margin-left: 20px;
    height: 24px;
    width: 67px;
    cursor: pointer;
    background-color: rgb(247, 193, 100);
    font-family: 'Poppins', sans-serif;
    font-weight: 200; /* semi-bold */
    letter-spacing: 0.1px;
    font-size: 14px;
}
#reg-option-1:hover ,#reg-option-2:hover{
    transform:scale(1.05);
    box-shadow: 2px 2px 2px rgb(245, 196, 2);
}
.hero-cont{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height : 470px;
    width : 650px;
}
#hero{
    display:flex;
    justify-content: center;
    align-items: center;
    border: transparent;
    border-top-left-radius :30px;
    border-top-right-radius :30px;
    background-image: linear-gradient( to right, #90c0f7, #eff6ff, #90c0f7);
}
main{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}
#hero-1, #hero-2, #hero-3{
    font-size: 30px;
    font-family:'Times New Roman', Times, serif;
}
#hero-1{
    position: relative;
    left: -100px;
    top: 40 px;
}
#hero-3{
    position: relative;
    right: -100px;
    top: -80 px;
}
#hero-des{
    font-size:20px;
    color:rgb(122, 19, 226);
    position: relative;
    left:40px;
    margin-top: 30px;
}
#arrow{
    font-size: 120px;
    transform: rotate(130deg);
    position:relative;
    left: 200px;
    cursor:pointer;
}
@keyframes rotate{
  0%   { transform: rotate(130deg); }
  20%  { transform: rotate(200deg); }
  40%  { transform: rotate(270deg); } 
  60%  { transform: rotate(340deg); } 
  80% { transform: rotate(50deg); }  
  100% { transform: rotate(130deg); }  
}
#arrow:hover{
    animation: rotate 5s ease 0s infinite; 
}
#core {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-family: 'Trebuchet MS', sans-serif;
    border-radius: 25px;
}
#box1 {
    background: linear-gradient(135deg, #eff6ff, #9fc7fc, #eff6ff);    width: 60vw;
    padding: 40px 50px;
    border-radius: 25px;
    box-shadow: 0 0 18px rgba(0, 85, 169, 0.15);
    text-align: left;
    transition: 0.3s ease;
}
#box1:hover {
    box-shadow: 0 0 25px rgba(0, 85, 169, 0.35);
    transform: translateY(-5px);
}
#box1 h1 {
    color: #024bca;
    font-size: 35px;
    margin-bottom: 15px;
}
#box1 p {
    color: #444;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 25px;
}
#box1 button {
    background: #0a63d8;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 85, 169, 0.2);
    transition: 0.3s ease;
}
#box1 button:hover {
    background: #024bca;
    transform: scale(1.07);
    box-shadow: 0 0 15px rgba(2, 75, 202, 0.45);
}

.content{
    display:flex;
    justify-content: space-evenly;
    align-items:first baseline;
    flex-wrap: wrap;
    width:100vw;
    height: 700px;
    background:transparent;
    margin-top: 50 px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.box2{
    display:flex;
    justify-content:space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 150px;
    background-color: rgb(247, 249, 251);
    height: 610px;
    width: 920px;
    border: 2px solid rgb(247, 349, 251);
    border-radius: 20px;
    z-index: 2;
}
.box2:hover{
    border: 2px solid rgb(93, 188, 229);
}
#box2-h{
    display:flex;
    justify-content: center;
    align-items: center;
    width:400px;
    font-size: 18px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border-bottom: solid rgb(166, 202, 234) 2px;
    border-left: solid rgb(166, 202, 234) 2px;
    border-right: solid rgb(166, 202, 234) 2px;
    margin-left: 250px;
    margin-top: 0px;

}
#b2p1, #b2p2, #b2p3, #b2p4{
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items:center;
    height:262px;
    width:457px;
    font-size: 17px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#b2p3{
    border-top: solid rgb(106, 157, 202) 2px;
    border-right: solid rgb(106, 157, 202) 2px;
    background-image: linear-gradient(to bottom, #eff6ff,#b4d3f7, #eff6ff);
    border-bottom-left-radius: 20px;
}
#box3, #box4{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: space-between;
    background-color: rgb(250, 250, 253);
    height: 500px;
    width: 600px;
    border:2px solid black;
    font-size: 17px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: 2px solid rgb(247, 349, 251);
    border-radius: 20px;
    padding-left:10px;
}
#box3:hover , #box4:hover{
     border: 2px solid rgb(93, 188, 229);
}
#faq-section {
    padding: 60px 20px;
    background-color: #f9f9ff;
    text-align: center;
}

#faq-section h2 {
    font-size: 2.5rem;
    color: #4205bd;
    margin-bottom: 80px;
    margin-top: 80px;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
section{
    height: 700px;
    border-radius:25px;
}

.faq-item {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(66, 5, 189, 0.1);
    padding: 20px;
    width: 300px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    font-size: 1.1rem;
    color: #024bca;
    margin-bottom: 10px;
}

.primary-btn {
    background: linear-gradient(90deg, #4205bd, #8c1dff);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(66, 5, 189, 0.3);
}

.secondary-btn {
    background: transparent;
    color: #4205bd;
    padding: 10px 18px;
    border-radius: 25px;
    border: 2px solid #4205bd;
    cursor: pointer;
    transition: 0.2s ease;
}

.secondary-btn:hover {
    transform: scale(1.05);
    background: #f1eaff;
}
.micro-note {
    font-size: 12px;
    color: #6b6b6b;
    margin-top: 2px;
}
.footer{
    display:flex;
    justify-content: space-around;
    align-items: flex-start;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 40px 20px;
    border-top: 2px solid #a1d1fe;
    font-family: 'Trebuchet MS', sans-serif;
}

.footer-box h3{
    font-size: 18px;
    color:#0749b5;
    margin-bottom: 10px;
}

.footer-box p, .footer-box a{
    color:#4b4b4b;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-box a:hover{
    color:#0a63d8;
    font-size: 15px;
}
#end{
    display:flex;
    justify-content: center;
    align-items:center;
    height: 40px;
    font-family:'Trebuchet MS', sans-serif;
    font-size: 14px;
    background: #e0f2fe;
    color:#0b5394;
    border-top: 1px solid #a1d1fe;
}




