
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
:root {

    /**
   * colors
   */

    --st-patricks-blue: hsl(236, 57%, 28%);
    --amaranth-purple: hsl(335, 88%, 38%);
    --royal-blue-dark: hsl(231, 68%, 21%);
    --chrome-yellow: hsl(5, 100%, 69%);
    --space-cadet-1: hsl(230, 41%, 25%);
    --space-cadet-2: hsl(230, 59%, 16%);
    --winter-sky_50: hsla(335, 87%, 53%, 0.5);
    --purple-navy: hsl(236, 26%, 43%);
    --ksu-purple: hsl(275, 54%, 33%);
    --winter-sky: hsl(212, 100%, 50%);
    --razzmatazz: hsl(212, 87%, 53%);
    --platinum: hsl(0, 0%, 90%);
    --black_70: hsla(0, 0%, 0%, 0.7);
    --rajah: hsl(5, 100%, 69%);
    --white: hsl(0, 0%, 100%);

    --gradient-1: linear-gradient(90deg, var(--royal-blue-dark) 0, var(--ksu-purple) 51%, var(--royal-blue-dark));
    --gradient-2: linear-gradient(90deg, var(--razzmatazz), var(--rajah));

    /**
   * typography
   */

    --ff-source-sans-pro: 'Source Sans Pro', sans-serif;
    --ff-poppins: 'Poppins', sans-serif;

    --fs-1: 4.2rem;
    --fs-2: 3.8rem;
    --fs-3: 3.2rem;
    --fs-4: 2.5rem;
    --fs-5: 2.4rem;
    --fs-6: 2rem;
    --fs-7: 1.8rem;
    --fs-8: 1.5rem;

    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;

    /**
   * border radius
   */

    --radius-4: 4px;
    --radius-12: 12px;

    /**
   * spacing
   */

    --section-padding: 60px;

    /**
   * transition
   */

    --transition-1: 0.15s ease;
    --transition-2: 0.35s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

    /**
   * shadow
   */

    --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    list-style: none;
}

/* dropdowns */
.paste-button {
    position: relative;
    display: block;
    font-family: "Poppins", sans-serif;
}

.button {
    background-color: transparent;
    color: #fff;
    padding: 5px 0;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    border: none;
    cursor: pointer;
    transition: all 0.50s ease;
}

.dropdown-content {
    display: none;
    font-size: 13px;
    position: absolute;
    z-index: 2;
    min-width: 200px;
    background-color: #212121;
    border-radius: 0px 15px 15px 15px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.1s;
}

.dropdown-content a:hover {
    background-color: black;
    color: black;
}

.dropdown-content a:focus {
    background-color: #212121;
    color: black;
}

.dropdown-content #top:hover {
    border-radius: 0px 13px 0px 0px;
}

.dropdown-content #middle:hover {
    border-radius: 0px 0px 13px 13px;
}

.dropdown-content #bottom:hover {
    border-radius: 0px 0px 13px 13px;
}

.paste-button:hover button {
    border-radius: 15px 15px 0px 0px;
}

.paste-button:hover .dropdown-content {
    display: block;
}

 body {
    min-height: 100vh;
    background: #0F1156;
    color: #fff;

}
.navbar{
    list-style-type: none;
}
.navbar a{
    text-decoration: none;
}
.containern {
    padding-inline: 15px;
}

.w-100 {
    width: 100%;
}

.banner-animation {
    animation: waveAnim 2s linear infinite alternate;
}

@keyframes waveAnim {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    100% {
        transform: translate(2px, 2px) rotate(2deg);
    }
}

.header {

    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(1, 1, 1, 0.5);
    padding: 15px 200px;
    transition: all 0.50s ease;
}

.navbar {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.navbar li {
    margin: 0 9px;
    display: flex;
    align-items: center;
}

.navbar a,
.button {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 5px 0;
    transition: all 0.50s ease;
}

.containern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar a:hover,
.button:hover {
    color: #6D7FFB;
}

.main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 20px;
    /* Add margin to the right side */
}

.main a {
    margin-right: 25px;
    margin-left: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.50s ease;
}

.user {
    display: flex;
    align-items: center;
}

.user i {
    color: #29fd53;
    font-size: 20px;
    margin-right: 7px;
}

.main a:hover {
    color: #29fd53;
}

#menu-icon {
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    display: none;
}
.img-thumbnail1{
    height:90px;
    width:90px;
    padding: 10px;
}
.img-thumbnail2{
    height:70px;
    width:70px ;
    margin-left: 65px; 
    margin-right:20px;
}
@media (max-width: 1280px) {
    .header {
        padding: 14px 2%;
        transition: 0.2s;
    }

    .navbar li {
        margin: 0 10px;
    }
}



.section {
    margin-top:200px;
    margin-left:20px;
}

```
/* -----------------------------------
  #FOOTER

.footer {
    font-size: var(--fs-8);
    padding: 40px;
} 

.footer a {
    color: inherit;
}

.footer-top {
    background-repeat: no-repeat;
    background-size: auto, 200%;
    background-position: center, center;
    color: var(--white);
    padding: 30px 0;
}

.footer-brand {
    margin-block-end: 30px;
}

.footer-brand .logo {
    font-weight: var(--fw-700);
    margin-block-end: 15px;
}

.footer-brand .text {
    font-size: 16px;
    /* Adjusted font size for consistency */


.social-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.footer-top .social-link {
    background-color: var(--white);
    color: var(--winter-sky);
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
}

.footer-top .social-link:is(:hover, :focus) {
    background-image: var(--gradient-2);
    color: var(--white);
}

.footer-list:not(:last-child) {
    margin-block-end: 25px;
}

.footer-list-title {
    font-family: var(--ff-source-sans-pro);
    font-size: 18px;
    /* Adjusted font size for consistency */
    font-weight: var(--fw-700);
    margin-block-end: 15px;
}

.footer-link {
    padding-block: 5px;
    font-size: 16px;
    /* Adjusted font size for consistency */
}

:is(.footer-link, .footer-item-link):not(address):is(:hover, :focus) {
    text-decoration: underline;
}

.footer-item-link {
    font-size: 16px;
    /* Adjusted font size for consistency */
}

.footer-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-block: 10px;
}

.footer-item-icon {
    background-image: var(--gradient-2);
    padding: 13px;
    border-radius: 50%;
}

.footer-bottom {
    background-color: #526C7F;
    padding: 10px;
    text-align: center;
    color: #D0D03D;
    margin: 0 -30px -30px -30px;
}

.copyright-link {
    display: inline-block;
    text-decoration: underline;
}

.copyright-link:is(:hover, :focus) {
    text-decoration: none;
}


/* -----------------------------------
  #MEDIA QUERIES

/* responsive for smaller than 576px screen */
@media (max-width: 575px) {
    .footer-top .containerf {
        display: block;
        margin-right: 20px;
    }

    .footer-list-link {
        display: block;
        text-align: center;
    }

    .footer-brand,
    .footer-list {
        margin-block-end: 20px;
    }

    .footer-brand .text,
    .footer-list-title,
    .footer-link,
    .footer-item-link {
        font-size: 16px;
        /* Ensuring consistent font size on smaller screens */
    }
}

/* responsive for larger than 550px screen */
@media (min-width: 550px) {
    .footer-top .containerf {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

/* responsive for larger than 768px screen */
@media (min-width: 768px) {
    .footer-top .containerf {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-brand,
    .footer-list,
    .footer-item {
        flex: 1;
    }
}

/* responsive for larger than 992px screen */
@media (min-width: 992px) {
    .footer-top .containerf {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / span 1;
    }

    .footer-list,
    .footer-item {
        grid-column: span 1;
    }

    .footer-brand .text {
        max-width: 45ch;
    }
}

/* responsive for larger than 1200px screen */
@media (min-width: 1200px) {
    .footer-top .containerf {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 1090px) {
    #menu-icon {
        display: block;
        margin-right:40px;
    }

    .navbar{
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
       margin-left: 0;
       position:absolute;
        top:6rem;
       left:60%;
       width:40%;
        z-index: 1;
        background-color:blue;
        
       display:none;
      

    }
   
     .navbar li{
       display: block;
        text-align:center;
        line-height: 50px;
       
    }
    /*.navbar {
        position: absolute;
        top: 100%;
        right: 2%;
        width: 270px;
        height: auto;
        background: #0F1156;
       display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        overflow: hidden;
        max-height: 0;
    }

    .navbar li {
        margin: 10px 0;
    }*/

    .navbar.active {
        max-height: 500px;
        /* Adjust based on content height */

    }

    .navbar a:hover,
    .button:hover {
        color: yellow;
    }

}

@media (max-width: 1000px){
    .navbar{

       position:absolute;
        top:6rem;
       left:60%;

    }
}
@media (max-width: 600px){
    .navbar{

       position:absolute;
        top:6rem;
       left:50%;
       width:50%;
    }
}

@media (max-width: 576px) and (min-width: 400px){
    .navbar{

       position:absolute;
        top:6rem;
       left:50%;
       width:50%;
       right:0;
    }
}


.timeline {
    margin-top: 120px;
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #FFDEE9, #B5FFFC);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    animation: moveline 11s linear forwards;
}

@keyframes moveline {
    0%{
        height: 0;
    }
    10%{
        height:0;
    }
    
}
.cover {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #FFDEE9 0%, #B5FFFC 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: movedown 1s linear forwards;
    opacity: 0;
     margin-bottom: 30px; /* Add margin between cards */
}

.card-img-top {
    width: 100%;
    height: 300px; /* Set a fixed height for images */
    object-fit: contain;
   /* object-fit: cover;  Ensure images cover the container without distortion */
}

.left-box {
    padding-right: 30px;
}

.right-box {
    padding-left: 30px;
}

.left-arrow, .right-arrow {
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
}

.left-arrow {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
    right: -15px;
}

.right-arrow {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
    left: -15px;
}

.left-dot, .right-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    top: 36px;
    z-index: 10;
    background: radial-gradient(circle, #FFDEE9, #B5FFFC);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.left-dot {
    right: -38px;
}

.right-dot {
    left: -35px;
}

@keyframes movedown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.line:nth-child(1) .cover{
    animation-delay: 0s;
}
.line:nth-child(2) .cover{
    animation-delay: 2s;
}
.line:nth-child(3) .cover{
    animation-delay: 3.5s;
}
.line:nth-child(4) .cover{
    animation-delay: 5.5s;
}
.line:nth-child(5) .cover{
    animation-delay: 7s;
}
.line:nth-child(6) .cover{
    animation-delay: 8s;
}
.line:nth-child(7) .cover{
    animation-delay: 9s;
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
        height: 100%;
    }
     .left-box{
        margin-left:45px;
        margin-top:20px;
        width: 100%; /* Ensure both boxes take full width */
         width: calc(100% - 60px); /* Make sure the boxes fit within the screen */
    }
    .right-box{
        margin-left:3px;
        margin-top:20px;
        width: 100%; /* Ensure both boxes take full width */
         width: calc(100% - 20px); /* Make sure the boxes fit within the screen */
    }
    /*.left-box, .right-box {
        margin-left: 0;
        margin-top: 20px;
        padding: 0 15px;
    }*/

    .cover {
        width: 100%;
        max-width: none;
    }

    .left-dot, .right-dot {
        left: -32px;
    }

    .left-arrow, .right-arrow {
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }

    .card-img-top {
        height: 200px; /* Adjust image height for smaller screens */
    }
}

@media (min-width: 600px) and (max-width: 800px) {
    .cover {
        width: 100%;
        max-width: 16rem;
    }

    .timeline::after {
        height: 100%;
    }

    .left-box {
        margin-left: -28px;
        margin-top: 20px;
    }

    .right-box {
        margin-left: 242px;
        margin-top: 20px;
    }

    .card-img-top {
        height: 250px; /* Adjust image height for medium screens */
    }
}

@media screen and (max-width: 400px) {
    .cover {
        width: 100%;
        max-width: 16rem;
    }

    .card-img-top {
        height: 150px; /* Adjust image height for very small screens */
    }

    .timeline::after {
        left: 32px; /* Adjust line position for very small screens */
        height: 100%;
    }
}


/*stles.css code
@media screen and (max-width:600px) {
    .timeline{
    margin-top: 120px;
}
    /*.timeline{
        margin:50px auto;
    }*
    .timeline::after{
        left:31px;
        height: 230%;
    }
  
    .left-box{
        margin-left:45px;
        margin-top:20px;
    }
    .right-box{
        margin-left:3px;
        margin-top:20px;
    }
    .cover{
        width:20rem;
    }
    .left-dot, .right-dot{
        left:-32px;
    }
    .left-arrow, .right-arrow{
        border-right:15px solid #fff;
        border-left:0;
        left:-15px;
    }
    .img-thumbnail1{
    height:50px;
    width:50px;
    
}
.img-thumbnail2{
    height:60px;
    width:60px ;

}
 .footer-list{
        margin-left:-20px;
    }
}

 @media (min-width: 600px) and (max-width: 800px){
  
   
    .cover{
        width:16rem;
    }
    .timeline::after{
        
        height: 230%;
    }
     .left-box{
        margin-left:-28px;
        margin-top:20px;
    }
    .right-box{
        margin-left:242px;
        margin-top:20px;
    }
    
}

@media screen and (max-width:400px) {
    /*.timeline{
        margin:30px auto;
    }*
    
    .cover{
        width:16rem;
    }
    

}
/*chatgpt's first time code
@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
        height: 100%;
    }

    .left-box, .right-box {
        margin-left: 0;
        margin-top: 20px;
        padding: 0 15px;
    }

    .cover {
        width: 100%;
        max-width: none;
    }

    .left-dot, .right-dot {
        left: -32px;
    }

    .left-arrow, .right-arrow {
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }
}

@media (min-width: 600px) and (max-width: 800px) {
    .cover {
        width: 100%;
        max-width: 16rem;
    }

    .timeline::after {
        height: 100%;
    }

    .left-box {
        margin-left: -28px;
        margin-top: 20px;
    }

    .right-box {
        margin-left: 242px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 400px) {
    .cover {
        width: 100%;
        max-width: 16rem;
    }
}
*/

.date{
  background:linear-gradient(90deg, #1e3c72, #2a5298);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-size: 1.2em;
font-weight: bold;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);

}
a{
    text-decoration: none;
}
