header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding-bottom:20px;
    padding-top:auto;
    padding-right:10px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    background-color:#202c39;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    align-items:center;
    z-index:99;
}
.navigation a{
    display:fixed;
    padding:10px 20px;
    background:transparent;
    border: 2px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1em;
    color: black;
    font-weight:500;
    margin:0 10px;
    transition: background 0.3s, color 0.3s;
    background-color: #f2d492;

}
.navigation a:hover{
    background-color:white;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    
}    

.main {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    border-bottom: 5px solid black;
    background-color: #e1e5ee;
    flex-direction: column;
}
.typewriter h1{ 
    overflow:hidden;
    border-right:.15em solid #f2d492;
    white-space:nowrap;
    margin:0 auto;
    letter-spacing: .15em;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}
.search-box{
    width: 600px;
    background: white;
    margin-top: 4vh;
    
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.search {
    background:transparent;
    border:0;
    outline:0;
    
    padding:10px 20px;
    background:transparent;
    border: 2px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1em;
    color: black;
    font-weight:500;
    margin:0 10px;
    transition: background 0.3s, color 0.3s;
    background-color: #f2d492;

}
.search:hover{
    background-color:white;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.result-box ul{
    border-top:1px solid #999;
    padding: 15px 10px;

}
.result-box p{
    list-style:none;
    border-radius:3px;
    padding:15px 10px;
    cursor:pointer;

}
.result-box p:hover{
    background: #B5EFD1;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

@keyframes typing{
    from { width: 0 }
    to { width: 100%; }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #f29559; }
}
.input-se   {
    flex:1;
    height:50px;
    background: transparent;
    border:0;
    outline: 0;
    font-size:18px;
    color: #f29559;

}
@keyframes typewriter {
  from { width: 0 }
  to { width: 100% }
}

.typewriter h1 {
  overflow: hidden;
  border-right: 2px solid #f2d492;
  white-space: nowrap;
  width: 0;
  animation: none;
}


.typewriter.animate h1 {
  animation: typewriter 3s steps(40, end) forwards;
}

#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #f29559;
  color: white;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

#chatbot-icon:hover {
  background-color: #f29559;
  transform: scale(1.1);
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}


#chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 350px;
  height: 450px;
  background-color: #1f1f1f;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


.hidden {
  display: none !important;
}


#chatbot-header {
  background-color:#283845;
  color: white;
  padding: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

#close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}


#chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

/* Chatbot Messages */
#chatbot-messages {
  display: flex;
  flex-direction: column;
}

.message {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  max-width: 85%;
}

.message.user {
  background-color: #f29559;
  color: white;
  align-self: flex-end;
}

.message.bot {
  background-color: #333;
  color: white;
  align-self: flex-start;
}


#chatbot-input-container {
  display: flex;
  padding: 10px;
  border-top: 1px solid #444;
  background-color: #2c2c2c;
}

#chatbot-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 10px;
  background-color: #333;
  color: white;
}

#send-btn {
  margin-left: 10px;
  padding: 10px 15px;
  background-color:  #f29559;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

#send-btn:hover {
  background-color:  #f29559;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.title{
    padding-top:10px;
}
.btn btn-primary{
    background-color: #f29559;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    padding-top:20px;
    margin-bottom:10px;
}
.reveal-text-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.reveal-text {
    opacity: 0;
    transform: translateX(-50px); 
    transition: opacity 1s ease-out, transform 1s ease-out;
    will-change: transform, opacity;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateX(0); 
}
.reveal-text:nth-child(1) {
    transition-delay: 0.1s;
}
.reveal-text:nth-child(2) {
    transition-delay: 0.3s;
}
.offcanvas {
    background-color: #283845;
    color: #f2d492;
    font-family: 'Allan', cursive;
    padding-top: 20px;
    animation: slideFadeIn 2s ease forwards;
    z-index: 2000; 
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
}


@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.offcanvas-title {
    font-size: 1.8em;
    color: #f2d492;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}


.btn-close {
    filter: invert(1); /* white icon */
}


.menu-heading {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.menu-links {
    list-style: none;
    padding: 0;
}

.menu-links li {
    opacity: 0;
    transform: translateX(-20px);
    animation: linkFadeIn 0.5s ease forwards;
    animation-delay: calc(var(--i) * 0.1s);
    margin-bottom: 15px;
}
.menu-links li:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
    color: #283845;
    font-weight: bold;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.menu-links li a {
    text-decoration: none;
    color: #f2d492;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.menu-links li a:hover {
    color: #283845;;
    letter-spacing: 1px;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}


@keyframes linkFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.menu-links li:nth-child(1) { --i: 1; }
.menu-links li:nth-child(2) { --i: 2; }
.menu-links li:nth-child(3) { --i: 3; }
.menu-links li:nth-child(4) { --i: 4; }
.menu-links li:nth-child(5) { --i: 5; }


.offcanvas .form-control {
    background-color: #f8f9fa;
    border: none;
    font-size: 1em;
}

.offcanvas .btn-outline-light {
    color: #f2d492;
    border-color: #f2d492;
}

.offcanvas .btn-outline-light:hover {
    background-color: #f2d492;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    color: #283845;
}
.fullpage-parallax {
          
            background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            
            
            height: 100vh;
            width: 100%;
            
            
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            
           
            display: flex;
            align-items: center;
            justify-content: center;
            
            
            color: white;
            text-align: center;
            position: relative;
        }
        
        .fullpage-parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .parallax-content {
            position: relative;
            z-index: 1;
            padding: 20px;
            max-width: 800px;
            margin-top: 60px; /* Space for fixed navbar */
        }
        
        .parallax-content h2 {
            font-size: 4em;
            margin-bottom: 20px;
            font-family: 'Allan', cursive;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .parallax-content p {
            font-size: 1.8em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .scroll-down-arrow {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2.5em;
            animation: bounce 2s infinite;
            cursor: pointer;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        
        .main-content {
            position: relative;
            z-index: 1;
            background: white;
        }
        
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: #283845; 
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .title {
            color: #f2d492 !important;
            font-family: 'Allan', cursive !important;
            font-size: 2em !important;
            margin: 0 !important;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .navigation {
            display: flex;
            gap: 15px;
        }
        
        
        body {
            padding-top: 70px;
        }