
body {
    font-family: Arial, sans-serif;
    background: #FFFFFF;
}

.hero-section {
    min-height: 60vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.3), transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-greeting {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin: 10px 0 25px 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary-hero {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-hero:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 400px;
}

.card-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    opacity: 0.8;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-card {
        min-height: 300px;
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
    }
}

.bold {
    font-weight: 400;
    color: black;
}

.lighter-bold {
    font-weight: 200;
    color: black;
}

.container {
    height: 60%
}

.stack-img {
    width: 25px;
    margin-right: 20px;
}

.timeline-wrapper {
  margin: 0 auto;
  max-width: 800px;
  padding: 40px 25px;
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #FFFFFF;
  position: relative;
}

.timeline__block {
    margin: 0 25px 30px 25px;
    transition: transform 0.3s ease;
}

.timeline__block--bg {
  padding: 2em;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.25) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.timeline__block--bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.timeline__block--bg:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.3) 100%);
}

.timeline__block--bg:hover::before {
  transform: scaleX(1);
}

.timeline__middle {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.6) 100%);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.point {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.6), 0 0 0 4px rgba(255,255,255,0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.6), 0 0 0 4px rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.8), 0 0 0 6px rgba(255,255,255,0.5);
  }
}

.point--bottom {
  top: Initial;
  bottom: 0;
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  box-shadow: 0 0 20px rgba(250, 112, 154, 0.6), 0 0 0 4px rgba(255,255,255,0.3);
}

.edu--bg {
  background: linear-gradient(135deg, #0575E6 0%, #021B79 100%);
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}

.edu--bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(79, 172, 254, 0.2), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.2), transparent 40%);
  animation: bgShift 20s ease infinite;
}

@keyframes bgShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.timeline__heading {
  font-size: 2.5rem;
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 800px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.timeline__heading::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #4facfe, transparent);
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

.timeline__block__title {
  margin: 0 0 15px 0;
  font-size: 1.4em;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline__block__title::before {
  content: '▸';
  color: #4facfe;
  font-size: 1.2em;
  animation: slideRight 1.5s ease infinite;
}

@keyframes slideRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.timeline__subheading {
  margin: 15px 0 10px 0;
  font-size: 1.1em;
  font-weight: 600;
  color: #4facfe;
}

.timeline__text {
  line-height: 1.8;
  padding: 5px 0px;
  font-size: 1.05em;
  color: rgba(255,255,255,0.95);
}

.timeline__text ul {
  margin: 15px 0;
  padding-left: 20px;
}

.timeline__text li {
  margin: 8px 0;
  position: relative;
  padding-left: 10px;
}

.timeline__text li::marker {
  color: #4facfe;
}

.anchor__link {
  color: #4facfe;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
}

.anchor__link:hover {
  color: #00f2fe;
  border-bottom: 2px solid #00f2fe;
  transform: translateY(-2px);
}

.timeline__date {
  font-size: 1.1em;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 10px 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: inline-block;
  max-width: fit-content;
}

.timeline__date__right {
  text-align: right;
  display: flex;
}

.chatbot--page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

.chatbot--page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.3), transparent 50%);
  animation: bgShift 15s ease infinite;
}

.chatbot--heading {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.chatbot--heading h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.chatbot--heading p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
}

main.mb-4 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

main.mb-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.3), transparent 50%);
  animation: bgShift 15s ease infinite;
}

main.mb-4 .container {
  position: relative;
  z-index: 1;
}

.p--email {
  text-align: center;
  color: white;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 30px 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

main.mb-4 .my-5 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  margin: 0 auto;
}

main.mb-4 .form-floating {
  margin-bottom: 18px;
}

main.mb-4 .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main.mb-4 .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

main.mb-4 .form-floating > label {
  color: #6c757d;
  font-weight: 500;
}

main.mb-4 .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  width: 100%;
}

main.mb-4 .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

main.mb-4 .alert {
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 25px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

main.mb-4 .alert-danger {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
}

main.mb-4 .alert-success {
  background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
  color: white;
}

@media (max-width: 768px) {
  main.mb-4 {
    padding: 50px 15px;
  }
  
  main.mb-4 .my-5 {
    padding: 25px 20px;
  }
  
  .p--email {
    font-size: 1.05rem;
  }
}

.chat-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 450px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 0;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
}

.chat-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.chat-container::after {
    content: 'AI Assistant';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 1;
    letter-spacing: 0.5px;
}


#chat-window {
    flex: 1;
    padding: 80px 20px 20px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 2;
}

#chat-window::-webkit-scrollbar {
    width: 8px;
}

#chat-window::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#chat-window::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

#chat-window::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.message {
    margin-bottom: 5px;
    padding: 12px 18px;
    border-radius: 18px;
    max-width: 70%;
    width: fit-content;
    word-wrap: break-word;
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: messageSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message.user::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5px;
    width: 0;
    height: 0;
    border-left: 8px solid #764ba2;
    border-bottom: 8px solid transparent;
}

.message.bot {
    background: white;
    color: #333;
    align-self: flex-start;
    border: 1px solid #e0e0e0;
    border-bottom-left-radius: 4px;
}

.message.bot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 0;
    height: 0;
    border-right: 8px solid white;
    border-bottom: 8px solid transparent;
}

.typing-indicator {
    background: white;
    color: #333;
    align-self: flex-start;
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    padding: 12px 18px;
    max-width: 70px;
    display: flex;
    gap: 4px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: messageSlideIn 0.3s ease-out;
}

.typing-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 0;
    height: 0;
    border-right: 8px solid white;
    border-bottom: 8px solid transparent;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

#chat-form {
    display: flex;
    border-top: 1px solid #e0e0e0;
    background: white;
    padding: 15px;
    gap: 10px;
    position: relative;
    z-index: 2;
}

#chat-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#chat-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#chat-form input::placeholder {
    color: #999;
}

#chat-form button {
    padding: 14px 30px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

#chat-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

#chat-form button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .chatbot--page {
        padding: 40px 15px;
    }
    
    .chatbot--heading h1 {
        font-size: 2rem;
    }
    
    .chat-container {
        height: 400px;
        border-radius: 15px;
    }
    
    .message {
        max-width: 85%;
    }
    
    #chat-form {
        padding: 10px;
    }
    
    #chat-form button {
        padding: 12px 20px;
    }
}

.album {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%) !important;
    padding: 80px 0 !important;
}

.album .container {
    max-width: 1200px;
}

.album .card {
    border: none !important;
    border-radius: 15px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.album .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2) !important;
}

.album .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.album .card:hover .card-img-top {
    transform: scale(1.05);
}

.album .card-body {
    padding: 25px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.album .card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.album .card-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.album .btn-outline-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: none !important;
    padding: 10px 30px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    display: inline-block;
}

.album .btn-outline-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.py-5.text-center.container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.py-5.text-center.container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.py-5.text-center.container .lead {
    color: rgba(255,255,255,0.95) !important;
    font-size: 1.2rem;
    line-height: 1.8;
}

.album .row {
    gap: 30px 0;
}

.album .col {
    padding: 0 15px;
}

@media (max-width: 768px) {
    .py-5.text-center.container h1 {
        font-size: 2.2rem;
    }
    
    .album .card-body h3 {
        font-size: 1.2rem;
    }
    
    .album {
        padding: 50px 0 !important;
    }
}

@media (max-width: 768px) {
    .timeline-wrapper {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        max-width: 100%;
    }

    .timeline__middle {
        display: none;
    }

    .timeline__block {
        grid-column: 1;
        margin: 0 0 20px 0;
    }

    .timeline__block--bg {
        padding: 1.5em;
    }

    .timeline__heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .timeline__block__title {
        font-size: 1.2em;
    }

    .timeline__text {
        font-size: 0.95em;
        line-height: 1.6;
    }

    .timeline__date,
    .timeline__date__right {
        font-size: 1em;
        padding: 8px 12px;
        text-align: left;
        display: block;
        width: 100%;
    }

    .edu--bg {
        padding: 40px 10px;
    }

    .timeline__subheading {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .timeline__heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .timeline__block--bg {
        padding: 1.2em;
    }

    .timeline__block__title {
        font-size: 1.1em;
    }

    .timeline__text {
        font-size: 0.9em;
    }

    .timeline__date,
    .timeline__date__right {
        font-size: 0.9em;
        padding: 6px 10px;
    }

    .edu--bg {
        padding: 30px 5px;
    }
}
