*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Quicksand", sans-serif;
    min-height: 100vh;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
.strong{
    color: #daec00;
    font-weight: bold;
}

/* header */
.nav-container{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}
.nav-bar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    background: transparent;
}
.nav-bar.scrolled{
    position: fixed;
    background: #0d594c;
    backdrop-filter: blur(10px);
    color: #0d594c;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.nav-bar img{
    width: 150px;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #daec00;
    text-transform: uppercase;
}
.nav-link{
    transition: 0.3s ease;
}
.nav-link:hover{
    color: #fff;
}
.hamburger{
    display: none;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #daec00;
}





/* hero section */
.hero{
    min-height: 100vh; /* full viewport height */
    background: url('../images/1.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}
.hero::before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0.6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.content{
    position: relative;
    z-index: 10;
    animation: slideIn 1.2s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.gradient{
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #0d594c,#ebff13, #188472,#daec00);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    color: transparent;
    animation: slideColors 5s linear infinite ;
}
@keyframes slideColors {
    100% {
        background-position: 100% 50%;
    }
    0% {
        background-position: 0% 50%;
    }
}
.content h1{
    color: #fff;
    margin-bottom: 1.5rem;
}
.content p{
    font-weight: bold;
    font-size: 1.5rem;
    color: #daec00;
}
.pear{
    margin-top: 1.5rem;
}
.subscribe {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #daec00;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    width: 400px;
}
.subscribe input{
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    background: transparent;
    color: black;
    font-size: 14px;
    z-index: 1;
}
.subscribe:focus-within{
    border: 2px solid #0d594c;
}
.subscribe input::placeholder{
    color: black;
}
.subscribe button{
    background: #daec00;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    margin: 4px;
    font-weight: bold;
    transition: background 0.2s;
}
.subscribe button:hover{
    background: #0d594c;
    cursor: pointer;
}
.typeWriter{
    color: #daec00 !important;
    font-weight: bold;
    width: 70%;
}
.typeWriter::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.7s infinite;
  color: #daec00;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}




/* flash style */
.flash-messages {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 100px;
  z-index: 9999;
  pointer-events: none; /* so it doesn't block clicks under it */
}

.flashes {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* base flash box */
.flash {
  pointer-events: auto; /* allow clicking inside the box */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform-origin: right top;
  transition: opacity .35s ease, transform .35s ease;
  opacity: 1;
  max-width: 400px;
}

/* per-category colors */
.flash.success {
  background: #e6ffed;
  color: #0b6b2f;
  border: 1px solid #bfe6c4;
}

.flash.error {
  background: #fff1f2;
  color: #7a141a;
  border: 1px solid #f3c2c8;
}

.flash.info {
  background: #e8f5ff;
  color: #0b4a66;
  border: 1px solid #cfe9ff;
}

/* hide animation  */
.flash.hide {
  opacity: 0;
  transform: translateY(-8px) scale(.98);
}

/* close button */
.flash-close {
  background: transparent;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  padding: 0 6px;
}





/* about section */
#about{
    background: linear-gradient(rgb(255, 255, 255),#daec00 );
    padding: 1.5rem;
    padding-top: 5rem;
    display: flex;
    justify-content: space-between;
}
#about img{
    max-width: 100%;
}
.text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 20px;
    color: #0d594c;
    box-shadow: 3px 3px 3px 3px;
}
.text h1{
    text-align: center;
    padding-top: 1.5rem;
    color: #0d594c;
}
.text p{
    display: flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items: center;
}





/*why students love us */
.mission{
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 95%;
    display: flex;
    margin-top: 3rem;
}
.card{
    width: 600px;
    border-radius: 5px;
    overflow: hidden;
}
.card img{
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 5px 5px 0px 0px;
}
.mission h1{
    margin-top: 3rem;
    font-size: 2.5rem;

}
.safe{
    width: 100%;
    height: 50%;
    display: block;
    object-fit: cover;
}




/* benefit */
.cont{
    background-color: #daec00;
    padding-top: 1.5rem;
    justify-content: center;
}
.cont h2{
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-size: 3rem;
}
.benefit{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    padding-left: 1.5rem;
}
.benefit-card{
    padding: 1.5rem;
    background-color: #0d594c;
    width: 80%;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 5px 10px 20px rgba(0,0,0,0.5);
}
.benefit-card p{
    margin-top: 0.5rem;
}



/* book call */
.bookcall{
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 40vh;
    background-color: #0d594c;
    color: white;
}
.bookcall button{
    background-color: #daec00;
    border: none;
    padding:0.5rem 3rem;
    border-radius: 3px;
    color: white;
    transition: 0.5s ease-in-out;
    margin-top: 0.8rem;
}
.bookcall button:hover{
    transform: scale(0.9)
}
.waitlist{
    margin-top: 1.5rem;
}
.waitlist input{
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    padding: 0.5rem;
    border-radius: 50px;
    border: none;
    /* width: 23em; */

}
.waitlist button{
    padding: 0.7rem;
    border-radius: 5px;
    border: none;
    background-color:  rgb(132, 185, 16);
    color: white;
    transition: 0.5s ease-in-out;
}
.waitlist button:hover{
    transform: scale(0.9);
}

/* footer */
footer{
    background: linear-gradient(rgb(52, 52, 52));
    /* background-color: rgb(52, 52, 52); */
    padding: 1.5rem;
    color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logotext{
    display: flex;
    align-items: center;
    margin-bottom: 1.45rem;
}
.logotext img{
    margin-right: 0.2rem;
    width: 150px;
}
.foot p{
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
}
.footerlink{
    list-style: none;
    line-height: 30px;
}
.footerlink li{
    text-decoration: none;
}
.footerlink li a{
    color: #daec00;
    font-size: 1rem;
    text-transform: uppercase;
}
.footer-btn p{
    margin-bottom: 0.8rem;
}
.footer-btn input{
    border: none;
    padding: 0.45rem;
    border-radius: 3px;
}
.footer-btn button{
    background-color:rgb(132, 185, 16);
    border: none;
    padding: 0.5rem;
    border-radius: 3px;
    color: black;
    transition: 0.5s ease-in-out;
}
.footer-btn button:hover{
    transform: scale(0.9)
}
.icon-img{
    margin-top: 1.5rem;
    width: 30px;
    margin-right: 1.5rem;
}
.copyright{
    width: 15px;
    color: white;
}




/* chatBot */
#chatbot-toggler{
    position: fixed;
    bottom: 30px;
    right: 35px;
    border: none;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: #0d594c;
    transition:0.2s ;
    z-index: 1000;
}
body.show-chatbot #chatbot-toggler{
    transform: rotate(90deg);
}

#chatbot-toggler span{
    color: #daec00;
    position: absolute;
}


body.show-chatbot #chatbot-toggler span:first-child,
#chatbot-toggler span:last-child{
    opacity: 0;
}

body.show-chatbot #chatbot-toggler span:last-child{
    opacity: 1;
}

.chatbot-popup{
    position: fixed;
    right: 35px;
    bottom: 90px;
    opacity: 0;
    transform: scale(0.2);
    transform-origin: bottom right;
    pointer-events: none;
    width: 400px;
    background-color: #f2f3e8;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
    z-index: 1001;
}
body.show-chatbot .chatbot-popup{
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.chat-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: #0d594c;

}
.chat-header .header-info{
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-info .chatbot-logo{
    height: 35px;
    width: 35px;
    fill: #0d594c;
    flex-shrink: 0;
    background: #daec00;
    border-radius: 50%;

}
.header-info .logo-text{
    color: #daec00;
    font-size: 1.31rem;
    font-weight: 600;
}
.chat-header #close-chatbot{
    border: none;
    color: #daec00;
    height: 40px;
    width: 40px;
    font-size: 1.5rem;
    margin-right: -10px;
    padding-top: 2px;
    cursor: pointer;
    border-radius: 50%;
    background: none;
    transition: 0.2 ease;
}
.chat-header #close-chatbot:hover{
    background: #196e60;
}
.chat-body{
    padding: 25px 22px;
    display: flex;
    gap: 20px;
    overflow-y: auto;
    height: 400px;
    margin-bottom: 82px;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: #0d594c transparent;
}
.chat-body .message{
    display: flex;
    align-items: center;
    gap: 11px;

}
.chat-body  .bot-message .bot-avatar{
    height: 35px;
    width: 35px;
    fill: #daec00;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 2px;
    background: #0d594c;
    border-radius: 50%;
}
.chat-body  .user-message .attachment{
    width: 50%;
    margin-top: -7px;
    border-radius: 13px 3px;
}
.chat-body .message .message-text{
    padding: 12px 16px;
    font-size: 0.95rem;
    max-width: 75%;
}
.chat-body .user-message{
    flex-direction: column;
    align-items: flex-end;
}
.chat-body .bot-message .message-text{
    color: #0d594c;
    background: #daec00;
    border-radius: 13px 13px 13px 3px;
}
.chat-body .user-message .message-text{
    color: #daec00;
    background: #0d594c;
    border-radius: 13px 13px 3px 13px;
}
.chat-body .bot-message .thinking-indicator{
    display: flex;
    gap: 4px;
    padding-block: 8px;
}
.chat-body .bot-message .thinking-indicator .dot{
    height: 7px;
    width: 7px;
    opacity: 0.7;
    border-radius: 50%;
    background: #0d594c;
    animation: dotpulse 1.8s ease-in-out infinite;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
    animation-delay: 0.2s;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
    animation-delay: 0.3s;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes dotpulse {
    0% , 44%{
        transform: translateY(0);
    }
    28%{
        opacity: 0.4;
        transform: translateY(-4px);
    }
    44%{
        opacity: 0.2;
    }
}
.chat-footer{
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #f2f3e8;
    padding: 15px 22px 20px ;
}
.chat-footer .chat-form{
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    outline: 1px solid #daec00;
}
.chat-footer .chat-form:focus-within{
    outline: 2px solid #0d594c;
}
.chat-form .message-input{
    border: none;
    outline: none;
    height: 47px;
    resize: none;
    width: 100%;
    max-height: 80px;
    white-space: pre-line;
    font-size: 0.95rem;
    padding: 14px 0 13px 18px;
    border-radius: inherit;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
.chat-form .message-input:hover{
    scrollbar-color: #0d594c  transparent;
}
.chat-form .chat-controls{
    display: flex;
    height: 47px;
    align-items: center;
    align-self: flex-end;
    padding-right: 6px;
}
.chat-controls .send-message{
    color: #daec00;
    display: none;
    background: #0d594c;
}
.chat-form .message-input:valid~ .chat-controls .send-message{
    display: block;
}
.chat-controls .send-message:hover{
    background: #daec00;
    color: #0d594c;
}
.chat-controls button{
    height: 35px;
    width: 35px;
    border: none;
    cursor: pointer;
    color: #0d594c;
    background: #daec00;
    border-radius: 50%;
    font-size: 1.15rem;
    background: none;
    transition: 0.2s ease;
}
.chat-controls button:hover{
    background-color: #daec00;
}
.chat-form .file-upload-wrapper{
    height: 35px;
    width: 35px;
    position: relative;
}

.chat-form .file-upload-wrapper :where(img, button) {
    position: absolute;
}
.chat-form .file-upload-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat-form .file-upload-wrapper #file-cancel {
    color: #ff0000;
    background: #daec00;
}

.chat-form .file-upload-wrapper :where(img, #file-cancel),
.chat-form .file-upload-wrapper .file-uploaded #file-upload{
    display: none;
}

.chat-form .file-upload-wrapper.file-uploaded img,
.chat-form .file-upload-wrapper .file-uploaded:hover #file-cancel{
    display: block;
}



/* Terms */
.terms{
    padding: 1.5rem;
    padding-top: 6rem;
    background-color: rgb(40, 40, 40);
    color: white;
}
.terms-header  h1{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #daec00;
}
.terms-address{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.terms-about{
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    gap: 0.7rem;
}
.terms-about h2{
    margin-bottom: 1.5rem;
    color: #daec00;
}
.terms-ul{
    padding-left: 2rem;
}
.terms-ul h4{
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
}
.terms-ul li{
    align-items: first baseline;
    list-style: disc;
    margin-bottom: 0.6rem;
}
/* span{
    font-weight: bold;
    font-style: oblique;
} */





/* for brands */
.bg{
    background: linear-gradient(#0d594c, #daec00);
}
.brand{
    padding: 70px;
    padding-top: 90px;
    gap: 1.5rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fdffea;
}
.brands-image img{
    border-radius: 35%;
    width: 100%;
    min-width: 700px;
    height: 680px;
    object-fit: cover;
}
.brand-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.brand-text h1{
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #daec00;
}
.brand-text  h2{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #daec00;
}
.brand-text  p{
    margin-bottom: 1rem;
}
.brand-text button{
    background-color: #0d594c;
    border: none;
    padding: 0.5rem;
    border-radius: 3px;
    color: #daec00;
    transition: 0.1s ease;
}
.brand-text button:hover{
   background-color: #188472;
}



@media (min-width: 769px) and (max-width: 1300px){
    .brand{
        flex-direction: column;
    }
    /*
    .safe{
        min-height: 287px;
    } */
    .bookcall{
        min-height: none;
    }
    .mission h1{
        font-size: 1.5rem;
        color: #0d594c;
    }
    .card h2{
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: #0d594c;
    }
    .content{
        margin-top: 1rem;
    }
    .card img{
        height: 60%;
    }
    

}


@media (min-width: 481px) and (max-width: 768px){
    .brands-image img{
        border-radius: 35%;
        width: 100%;
        min-width: 400px;
        height: 400px;
        object-fit: cover;
        padding-left: 0;
        margin-left: 0;
    }
    .brands{
        padding-top: 0rem;
    }
    .text p{
        width: 100%;
    }


    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px)rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateZ(-8px)rotate(-45deg);
    }
    .nav-menu{
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.5s ease-in-out;
        background-color:  #0d594c;
        backdrop-filter: blur(2px);
    }
    .nav-menu.active{
        left: 0;
    }
    .nav-item{
        margin: 16px 0;
        color: #0d594c;
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .container{
        flex-direction: column;
        align-items: center;
    }

    .benefit{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
    }
    .gradient{
        font-size: 2.5rem;
    }
    .cont h2{
        font-size: 2rem;
        padding: 10px;
    }
    .typeWriter{
        width: 100%;
    }
    .content{


    }
    .content p{
        font-size: 1rem;
    }
    .hero{

    }
    .brand{
        flex-direction: column;
    }
    .mission h1{
        font-size: 2.5rem;
        color: #0d594c;
    }
    .card img{
        height: 80%;
    }
    .card{
       width: 80%;
       height: 100%;
    }
    .card h2{
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #0d594c;
    }
    .safe{
        min-height: 380.2px;
    }

}

@media (min-width: 351px) and (max-width: 480px){
    /* navbar */
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px)rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateZ(-8px)rotate(-45deg);
    }
    .nav-menu{
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.5s ease-in-out;
        background-color:  #0d594c;
        backdrop-filter: blur(2px);
    }
    .nav-menu.active{
        left: 0;
    }
    .nav-item{
        margin: 16px 0;
        color: #0d594c;
    }



    /* Home */
    .gradient{
        font-size: 2rem;
    }
    .cont h2{
        font-size: 2rem;
    }
    /*
    .typeWriter{
        width: 100%;
        font-size: 10px;
    }*/
    .content p{
       font-size: 0.5rem;
    }
    .hero{

    }
    .content{


    }
    .content h1{
        font-size: 1.5rem;
    }
    .pear{

        font-size: 10px;
    }
    .subscribe {
        width: 100%;
        margin-top: 2rem;
    }
    .subscribe button{
        width: 100px;
        min-height: 20px;
        padding: 0.8rem;
        font-size: 0.8rem;
    }



    /* why students */
    .mission h1{
        font-size: 1.9rem;
        color: #0d594c;
    }
    .card{
       width: 80%;
       height: 100%;
    }
    .card img{
        height: 50%;
    }
    .card h2{
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        color: #0d594c;
    }
    .container{
        flex-direction: column;
        align-items: center;
    }
    .safe{
        height: 248.66px;
    }

    /* About */
    .text p{
        width: 100%;
    }

    /* Benefits */
    .benefit{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
    }

    /* brands */
    .brands-image img{
        border-radius: 35%;
        width: 100%;
        min-width: 300px;
        height: 300px;
        object-fit: cover;
        padding-left: 0;
        margin-left: 0;
    }
    .brands-img{
        margin-top: 3rem;
    }
    .brand{
        padding: 0.5rem;
        margin-top: 3.8rem;
        gap: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 2.5rem;
    }
    .brand-text{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .brand-text h1{
        font-size: 2rem;
    }
    .brand-text h2{
        font-size: 1.2rem;
        text-align: center;
    }
    .brand-text p{
        font-size: 15px;
    }
    .safe{
        min-height: 300px;
    }

    /* chatbot */
    .chat-body{
        height: 300px;
        margin-left: 0.5rem;
    }
    .chatbot-popup{
        width: 300px;
    }

    /* footer */
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
@media (max-width: 350px){
    /* forbrands */
    .brands-image img{
        border-radius: 35%;
        width: 100%;
        min-width: 300px;
        height: 300px;
        object-fit: cover;
        padding-left: 0;
        margin-left: 0;
    }
    .brand{
        padding: 0.5rem;
        padding-top: 5.5rem;
        gap: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .brand-text{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .brand-text h1{
        font-size: 2rem;
    }
    .brand-text h2{
        font-size: 1.2rem;
        text-align: center;
    }
    .brand-text p{
        font-size: 10px;
    }
    .safe{
        min-height: 206px;
    }


    /* navbar */
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px)rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateZ(-8px)rotate(-45deg);
    }
    .nav-menu{
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.5s ease-in-out;
        background-color:  #0d594c;
        backdrop-filter: blur(2px);
    }
    .nav-menu.active{
        left: 0;
    }
    .nav-item{
        margin: 16px 0;
        color: #0d594c;
    }



    /* Home */
    .gradient{
        font-size: 1.5rem;
    }
    .cont h2{
        padding-top: 15px;
        font-size: 1.5rem;
        padding: 10px;
    }
    .typeWriter{
        width: 100%;
        font-size: 10px;
    }
    .content p{
        font-size: 10px;
    }
    .hero{
        justify-content: center;
    }
    .content h1{
        font-size: 1.0rem;
    }
    .pear{
        margin-top: 1.2rem;
        font-size: 10px;
    }
    .subscribe {
        width: 100%;
        margin-top: 1.5rem;
    }
    .subscribe button{
        width: 100px;
        min-height: 20px;
        padding: 0.8rem;
        font-size: 0.8rem;
    }


    /* why students */
    .container{
        flex-direction: column;
        align-items: center;
    }
    .mission h1{
        font-size: 1.5rem;
        color: #0d594c;
    }
    .card{
       width: 80%;
    }
    .card h2{
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        color: #0d594c;
    }
    .card p{
        font-size: 0.7rem;
    }


    /* about */
    .text p{
        width: 100%;
    }


    /* Benefits */
    .benefit{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0px;
    }


    /* chatbot */
    .chat-body{
        height: 250px;
        margin-left: 0.5rem;
    }
    .chatbot-popup{
        width: 250px;
    }


    /* footer */
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}






















