:root
{
--black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

*{
    box-sizing: border-box;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;  
}

html
{
    scroll-behavior: smooth;
}

.no-scroll
{
    overflow: hidden;
    height: 100%;
}

@font-face
{
    font-family: myWebFont;
    src: url(LobsterTwo-Bold.ttf);
}

@font-face
{
    font-family: headingsFont;
    src: url(Merienda-VariableFont_wght.ttf);
}

@font-face {
    font-family: namestyling;
    src: url(AbrilFatface-Regular.ttf);
}

.archivo-uniquifier> {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body
{
    background-image: url(/White-background-with-wavy-lines.jpg);
    border-radius: 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 1000;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-name
{
    
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(to right, #ffb300, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: myWebFont;
}

.navbar-name:hover
{
    color: transparent;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-menu:hover {
    color: #ddd;
}


.navbar .navbar-menu:not(#cta-button) {
    padding: 10px 15px;
    margin: 0 5px;
    transition: 0.3s ease;
}

.navbar .navbar-menu:not(.cta-button):hover {
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px #ffb300;
}

#cta-button {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#cta-button:hover {
    background-color: #0056b3;
}

.dropdown
{
    float: left;
    position: relative;
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}

.dropdown-content
{
    display: none;
    max-height: initial;
    position: absolute;
    background-color: #444;
    min-width: 190px;
    top: 3.2rem;
    pointer-events: initial;
    transition: top .3s;
}

.dropdown-content a
{
    color: white;
    padding: 12px 16px;
    text-decoration: none;
}

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

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

.dropdown:hover .dropdown__arrow {
    transform: rotate(180deg);
}

.dropdown-link
{
    display: flex;
    gap: 3px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 25px;
}

.hamburger span {
    background-color: white;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: 0.3s ease;
}

.mobile-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: var(--black-color-light);
    overflow-x: hidden;
    pointer-events: none; /* prevents clicks when hidden */
}
  
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
  

.mobile-menu .closebtn {
    position: absolute;
    right: 15px;
    font-size: 55px;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.name_closebtn
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

@media screen and (max-width: 767px) {
    .menu-left, .menu-right #cta-button {
        display: none;
    }

    .menu-right .hamburger {
        display: flex;
    }
}

@media screen and (max-width: 911px) {
    .menu-left, .menu-right #cta-button {
        display: none;
    }

    .menu-right .hamburger {
        display: flex;
    }
    
}

@media screen and (min-width: 912px) 
{
    .menu-left
    {
        display: flex;
    }

    .mobile-menu.open
    {
        display: none;
    }
}

.mobile-menu .mediaLinks
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: rgb(255, 179, 0);
    padding: 5px;
    margin: auto;
    list-style: none;
}

.menu-items
{
    margin: 0;
    padding: 0;
}

li a
{
    text-decoration: none;
    color: white;
}


.item-icon
{
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    box-shadow: 0px 2px #ffb300;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 18px;
    gap: 5px;
}
.item-icon:hover
{
    border-left: 5px solid #c1ff64aa;
}


.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    box-shadow: 0px 2px #ffb300;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-link:hover
{
    border-left: 7px solid #c1ff64aa;
    box-shadow: 0px 2px 0px #ffb300;
}

.mb-dropdown
{
    cursor: pointer;
}

.portfolio_arrow
{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    gap: 5px;
}

.dropdown-arrow
{
    color: white;
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}

.dropdown_menu
{
    display: none;
    box-shadow: 0px 2px #ffb300;
}

.dropdown_menu.open
{
    display: block;
}

.dropdown-arrow
{
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotate
{
    transform: rotate(180deg);
}

.sub-portfolio
{
    padding: 1rem 3.5rem;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-size: 17px;
}


.overall-container
{
    overflow: hidden;
}

header
{
    width: 100%;
    background-image: url(/Dark\ background\ with\ glow\ ball.jpg);
    border-radius: 15px;
    overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin-top: 100px;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  animation: wordAppear 0.4s ease forwards;
  margin-right: 5px;
}

.marquee-text {
  display: inline-block;
  animation: marquee 20s linear infinite;
  color: whitesmoke;
  font-size: 18px;
  font-weight: bold;
  animation: marquee 20s linear infinite;  /* moved here */
  animation-delay: 3s;  /* wait for words to appear first */
  transform: translateX(100vw);
}

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

@keyframes marquee {
  from { transform: translateX(100vw); }  /* start from right */
  to   { transform: translateX(-100%); } /* scroll to left */
}

@media (max-width: 576px)
{
    header
    {
        margin: auto;
        
    }
}

@media (max-width: 768px)
{
    header
    {
        margin: auto;
    }

    .marquee-text {
        font-size: 16px;
    }
}

.hero-image
{
    display: flex;
    margin: auto;
    max-width: 100%;
    margin-top: 50px;
    margin-bottom: 70px;
}

.wrapper
{
    display: flex;
    width: 95%;
    margin: auto;
    height: 300px;
    justify-content: center;
    padding: 0 2%;
    overflow: hidden;
    /* margin-bottom: 35px; */
}

.cols
{
    width: 50%;
}

.topline
{
    display: block;
    position: relative;
    font-size: 30px;
    letter-spacing: 5px;
    color: white;
}

.name-style
{
    font-family: namestyling;
}

h1
{
    font-size: clamp(2.2rem, -0.875rem + 8.333vw, 3.3rem);
    font-family: myWebFont;
    font-weight: 900;
    color: #00bfff;
}

.multiText
{
    font-family: myWebFont;
    color: #00bfff;
}

.cv-container
{
    width: fit-content;
    position: relative;
    left: 27%;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.cvbtn
{
    width: fit-content;
    display: inline-block;
    padding: 10px 20px;
    font-size: 22px;
    text-align: center;
    border: none;
    border-radius: 5px;
    background-color: #086bad;
    color: #ffffff;
    box-shadow: 3px 3px #ffb300;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cvbtn:hover
{
    transform: translateY(-5px);
    box-shadow: 0px 5px 0px #ffb300;
    filter: drop-shadow(0 0 2em #c1ff64aa);
}


button:hover
{
    background-color: rgb(27, 30, 204);
}

@media (max-width: 576px)
{
    .wrapper
    {
        width: 100%;
        margin: auto;
        height: calc(30vh - 10px);
        margin-bottom: 15px;
    }

    .cols
    {
        width: 100%;
        margin: auto;
    }

    .multiText
    {
        width: 300px;
    }

    .cv-container
    {
        left: 5px;
    }

    .cvbtn
    {
        padding: 5px;
        margin: 0px 0px;
        font-size: 22px;
    }

    .hero-image
    {
        max-width: 95%;
    }
}

@media (max-width: 820px)
{
    .hero-image
    {
        max-width: 95%;
    }
}

@media (min-width: 1024px)
{
    .wrapper
    {
        height: 220px;
    }
}

button:hover
{
    background-color: rgb(27, 30, 204);
}


#aboutme
{
    height: fit-content;
    width: fit-content;
    color: #0a0b50;
    display: flex;
    margin: auto;
    text-align: center;
    font-family: headingsFont;
    font-size: 35px;
    font-weight: bolder;
    line-height: 56px;
    margin-top: 100px;
}

.line-under
{
    width: 56px;
    height: 2px;
    border-bottom: 2px #79e96e groove;
    display: flex;
    margin: auto;
    margin-bottom: 50px;
}

.myDetails
{
    height: fit-content;
    width: 90%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.myPix
{
    
    height: 400px;
    border-radius: 20%;
}

.aboutmetext
{
    
    height: fit-content;
    width: 80%;
    margin: auto;
    border-radius: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.article
{
    padding: 2px;
    padding-top: 10px;
    font-size: 18px;
    border-radius: 10px;
    font-size: 18px;
}

.description
{
    height: fit-content;
    border-left: solid 10px #00bfff;
    padding: 5px;
    border-radius: 7px;
    border-style: groove;
    box-shadow: 0px 5px 7px 0px;
    text-align: justify;
}

.description-wrapper
{
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.description_
{
    height: fit-content;
    border-left: solid 10px #00bfff;
    padding: 5px;
    border-radius: 7px;
    border-style: groove;
    box-shadow: 0px 5px 7px 0px;
    text-align: justify;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.description_.collapsed {
    
}

.toggle-btn {
    position: absolute;
    bottom: -8px;
    padding: 2px 6px;
    background-color: #00bfff;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

@media (min-width: 1025px)
{
    .toggle-btn
    {
        display: none;
    }

    .description_
    {
        max-height: none !important;
    }
}

.toggle-btn:hover {
    background-color: #0099cc;
}

.toggle-name {
    font-weight: bold;
    font-size: 14px;
}

.toggle-icon {
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s ease-out;
    display: inline-block;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}


@media (max-width: 767px)
{
    .myDetails
    {
        flex-direction: column;
        width: 95%;
    }

    .myPix
    {
        width: 80%;
        height: auto;
        margin: auto;
    }

    .aboutmetext
    {
        height: fit-content;
        width: 100%;
    }
}


.MySkills
{
    background-image: url(/Dark\ dynamic\ background.jpg);
    border-radius: 15px;
}

#skills-section
{
    width: 90%;
    position: relative;
    margin: auto;
    margin-top: 70px;
    border: 1px #00bfff solid;
    border-radius: 10px;
    padding: 8px;
}

.skills-heading
{
    height: fit-content;
    width: fit-content;
    color: white;
    display: flex;
    margin: auto;
    text-align: center;
    margin-top: 100px;
    font-family: headingsFont;
    font-size: 35px;
    font-weight: bolder;
    line-height: 56px;
}

.skillset-heading
{
    height: fit-content;
    width: fit-content;
    color: white;
    text-align: center;
    margin-top: 10px;
    font-family: headingsFont;
    font-size: 25px;
    font-weight: bolder;
    line-height: 32px;
}

.line_under
{
    width: 56px;
    height: 2px;
    border-bottom: 2px #79e96e groove;
    margin-bottom: 50px;
}

.skills-container
{
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 20px;
    color: blanchedalmond;

}

.skill-card
{
    position: relative;
}

.skill-img
{
    display: block;
    margin: auto;
    height: 120px;
    width: 200px;
    opacity: 0.6;
    border-radius: 35px;
    animation: logo-spin infinite 20s linear;
}

.skill-name
{
    font-family:'Times New Roman', Times, serif;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    text-transform: capitalize;
    margin: 30px 0 20px;
    color: white;
}

@keyframes logo-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}
  
.skill-info
{
    text-align: center;
    opacity: 0.5;
    font-size: 18px;
    line-height: 30px;
}


.skillLevel
{
    position: absolute;
    top: 80px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.circular-progress
{
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: conic-gradient(#e8862a 3.6deg, #ededed 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress::before
{
    content: "";
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #807979;
}

@media (max-width: 576px)
{
    .skills-container
    {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
    }

    .skill-img
    {
        height: 100px;
        width: 100%;
        border-radius: 30px;
    }

    .skill-name
    {
        font-size: 22px;
    }

    .skillLevel
    {
        right: 2px;
    }

    .circular-progress
    {
        height: 50px;
        width: 50px;
    }

    .circular-progress::before
    {
        height: 25px;
        width: 25px;
    }
}


.skills-section2
{
    width: 95%;
    margin: auto;
    position: relative;
    margin-top: 150px;
    padding-bottom: 10px;
}

.skills_heading
{
    height: fit-content;
    width: fit-content;
    color: white;
    display: flex;
    margin: auto;
    text-align: center;
    margin-top: 100px;
    font-family: headingsFont;
    font-size: 35px;
    font-weight: bolder;
    line-height: 56px;
}

.skills_container
{
    height:fit-content;
    display: grid;
    --gap: 20px;
    gap: var(--gap);
    grid-template-columns: repeat(auto-fit, minmax(clamp(50% - var(--gap),(35rem - 100%) * 999, 100%), 1fr));
    color: blanchedalmond;
}


.skill_name
{
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 300;
    color: white;
}

.skillcard
{
    background-color: slategray;
    border-radius: 15px;
    text-align: center;
    width: 80%;
    height: fit-content;
    margin: auto;
    padding: 1px;
}


#services
{
    margin-top: 150px;
}

.service-heading
{
    height: fit-content;
    width: fit-content;
    color: rgb(10, 11, 80);
    display: flex;
    margin: auto;
    text-align: center;
    margin-top: 100px;
    font-family: headingsFont;
    font-size: 35px;
    font-weight: bolder;
    line-height: 56px;
}

.service-container
{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 20px;
    gap: 35px; 
}

.service1
{
    background: rgb(39, 71, 68);
    width: 250px;
    height: 350px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 3px 3px #79e96e;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service1:hover
{
    transform: translateY(-15px);
    box-shadow: 0px 5px 0px #79e96e;
    filter: drop-shadow(0 0 1em #79e96e);
}

.service2
{
    background: rgb(30, 32, 172);
    width: 250px;
    height: 350px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 3px 3px #79e96e;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service2:hover
{
    transform: translateY(-15px);
    box-shadow: 0px 5px 0px #79e96e;
    filter: drop-shadow(0 0 1em #79e96e);
}


.service3
{
    background: rgb(136, 59, 8);
    width: 250px;
    height: 350px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 3px 3px #79e96e;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service3:hover
{
    transform: translateY(-15px);
    box-shadow: 0px 5px 0px #79e96e;
    filter: drop-shadow(0 0 1em #79e96e);
}


.service4
{
    background: rgb(92, 86, 5);
    width: 250px;
    height: 350px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 3px 3px #79e96e;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service4:hover
{
    transform: translateY(-15px);
    box-shadow: 0px 5px 0px #79e96e;
    filter: drop-shadow(0 0 1em #79e96e);
}

.serviceimg
{
    width: 250px;
    height: 150px;
    border-radius: 5px;
}

.servicehdg
{
    text-align: center;
    color: white;
    padding-top: 10px;
    font-size: 18px;
}

.ulitem1
{
    text-align: left;
}

@media (max-width: 576px)
{
    #Services
    {
        height: fit-content;
        width: 100%;
    }

    .service-container
    {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .service1
    {
        width: 95%;
        margin: auto;
    }

    .service2
    {
        width: 95%;
        margin: auto;
    }

    .service3
    {
        width: 95%;
        margin: auto;
    }

    .service4
    {
        width: 95%;
        margin: auto;
    }

    .serviceimg
    {
        width: 100%;
    }
}


#portfolio-section
{
    margin-top: 200px;
    margin-bottom: 100px;
    width: 100%;
    height: fit-content;
    margin: auto;
    background-image: url(/Dark\ background\ with\ glow\ ball.jpg);
    border-radius: 15px;
}
    
.portfolio-heading
{
    height: fit-content;
    width: fit-content;
    color: white;
    display: flex;
    margin: auto;
    text-align: center;
    margin-top: 100px;
    font-family: headingsFont;
    font-size: 35px;
    font-weight: bolder;
    line-height: 56px;
}


.portfolio-subheading
{
    font-size: 22px;
    font-weight: bold;
    color: white;
    padding-left: 20px;
}

.line-under-eachportfolio
{
    width: 56px;
    height: 2px;
    border-bottom: 2px #2aa31d groove;
    display: flex;
    margin-bottom: 20px;
    margin-left: 25px;
}

.webdev-portfolio
{
    width: 85%;
    margin: auto;
    height: fit-content;
    padding: 10px;
    margin-bottom: 60px;
    border-radius: 7px;
}

@media (max-width: 768px)
{
    .webdev-portfolio
    {
        width: 97%;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 55px;
    }
}

.webdevproj1
{
    height: fit-content;
    width: 650px;
    margin: auto;
    padding: 10px;
    background: #333;
    border-radius: 5px;
    border: 1px #00bfff solid;
}

.webdevproj2
{
    height: fit-content;
    width: 650px;
    margin: auto;
    margin-top: 35px;
    padding: 10px;
    background: #333;
    border-radius: 5px;
    border: 1px #00bfff solid;
}

.webdevprojname
{
    color: white;
    font-size: clamp(1.0625rem, 0.975rem + 0.5vw, 1.25rem);
    font-family: headingsFont;
    padding-left: 4px;
}

.webproj1-img
{
    height: 300px;
    width: 250px;
}

.webdevportf_Img
{
    height: 300px;
    width: 250px;
    margin: auto;
    border-radius: 5px;
}

@media (max-width: 767px) 
{
    .webdev-portfolio
    {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .webproj1-description
    {
        text-wrap: balance;
    }

    .webdevproj1
    {
        width: fit-content;
    }

    .webdevproj2
    {
        width: fit-content;
    }
}

.webproj1-description
{
    font-size: 16px;
    font-family: "Archivo";
    color: white;
    margin-top: 10px;
    text-align: justify;
    word-spacing: normal;
    hyphens: auto;
    padding: 0.5rem;
    
}

@media (max-width: 600px)
{
    .webproj1-description
    {
        text-align: center;
    }
}

.visit-button
{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.visit-btn_style
{
    width: 250px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 5px;
}
.visit-btn_style:hover
{
    box-shadow: 0px 1px 0px #ffb300;
    filter: drop-shadow(0 0 0.1em #ffb300);
}

.webdev-stack
{
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(max(20% - 20px, min(70px, 100%)), 1fr));
    padding: 5px;
    gap: 10px;
    margin-top: -5px;
}

.webdev-stack_3rd
{
     width: 100%;
    height: fit-content;
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(max(25% - 10px, min(70px, 100%)), 1fr));
    padding: 5px;
    gap: 10px;
    margin-top: -5px;
}

.skill_stack
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: fit-content;
    border-radius: 5px;
    background-color: #d6d4d4;
    padding: 2px;
}

.stack_name
{
    font-size: 14px;
    margin: auto;
}

.stack-img
{
    width: 18px;
    height: 18px;
}

@media (max-width: 767px)
{
    .webdev-stack
    {
        grid-template-columns: repeat(auto-fit, minmax(max(25% - 5px, min(60px, 100%)), 1fr));
        padding: 5px;
    }

    .webdev-stack_3rd
    {
        grid-template-columns: repeat(auto-fit, minmax(max(33.3333% - 2px, min(85px, 100%)), 1fr));
        gap: 10px;
        padding: 3px;
    }
}


.contentwriting-portfolio
{
    width: 95%;
    margin: auto;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(max(50% - 20px, min(250px, 100%)), 1fr));
    padding: 10px;
    border-radius: 7px;
    gap: 10px;
    margin-bottom: 60px;
}

@media (min-width: 1025px)
{
    .contentwriting-portfolio
    {
        grid-template-columns: repeat(auto-fit, minmax(max(33.3333% - 20px, min(250px, 100%)), 1fr));
    }
}


.content-writing1
{
    height: fit-content;
    width: fit-content;
    background-color: #d6d4d4;
    border-radius: 5px;
    padding: 10px;
}

.headingstyling
{
    font-size: 22px;
    font-weight: bolder;
    text-align: left;
}

.textstyling
{
    text-align: justify; 
    font-size: 14px; 
}

.readmorestyling
{
    padding: 8px; 
    margin: 3px; 
    background-color: blue;
    color: white;  
    border-radius: 10px; 
    text-decoration: none;
}

.readmorestyling:hover
{
    color: white;
    transform: translateY(-2px);
    box-shadow: 0px 2px 0px #ffb300;
    filter: drop-shadow(0 0 0.1em #ffb300);
}


.techwriting-portfolio
{
    width: 95%;
    margin: auto;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(max(50% - 20px, min(250px, 100%)), 1fr));
    padding: 10px;
    border-radius: 7px;
    gap: 10px;
}

@media (min-width: 1025px)
{
    .techwriting-portfolio
    {
        grid-template-columns: repeat(auto-fit, minmax(max(33.3333% - 20px, min(250px, 100%)), 1fr));
    }
}

.techwriting1
{
    height: fit-content;
    width: fit-content;
    background-color: gainsboro;
    border-radius: 5px;
    margin: auto;
    padding: 10px;
}

.text_styling
{
    text-align: justify; 
    font-size: 15px; 
}

.read-more-styling
{
    padding: 8px;    
    background-color: blue;
    color: white; 
    border-radius: 10px; 
    text-decoration: none;
}

.read-more-styling:hover
{
    color: white;
    transform: translateY(-2px);
    box-shadow: 0px 2px 0px #ffb300;
    filter: drop-shadow(0 0 0.1em #ffb300);
}


.accordion
{
    width: 95%;
    margin: auto;
    margin-top: 50px;
    border: 5px solid #008000;
    border-radius: 10px;
}

.accordion-button
{
    font-size: 24px;
    font-weight: 600;
}
.accordion-button:hover
{
    background-color: white;
    transition: 1s ease-in-out #00bfff;
}

.accordion-collapse
{
    width: 98%;
    margin: auto;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(max(33.3333% - 20px, min(250px, 100%)), 1fr));
    padding: 10px;
    border-radius: 7px;
    gap: 10px;
}

#content-writing1
{
    height: fit-content;
    width: fit-content;
    background-color: #d6d4d4;
    border-radius: 5px;
    padding: 10px;
}

#mycontact
{
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    height: fit-content;
    margin-top: 100px;
    border-radius: 15px;
}


.Contactme
{
    border: 1px groove;
    height: fit-content;
    width: 55%;
    padding: 10px;
    border: 1px solid #00bfff;
    border-radius: 5px;
    background-color: #d6d4d4;
}

.contactme-heading
{
    color: rgb(10, 11, 80); 
    text-align: center;
    font-family: headingsFont;
}

.forminput1
{
    width: 49%;
    border-radius: 5px;
    border-color: #bfc1c2;
    border-style: groove;
    box-shadow: 0px 2px 3px #8787f0;
}

.forminput
{
    width: 49%;
    border-radius: 5px;
    border-color: #bfc1c2;
    border-style: groove;
    box-shadow: 0px 2px 3px #8787f0;
}

#subject
{
    width: 100%;
}

textarea
{
    border-radius: 5px;
    box-shadow: 0px 2px 3px #8787f0;
}

.sub-btn
{
    border-radius: 5px;
    background-color: blue;
    color: white;
    border: none;
    padding: 5px 15px;
    text-decoration: none;
}

.sub-btn:hover
{
    color: white;
    transform: translateX(2px);
    box-shadow: 0px 2px 0px #ffb300;
    filter: drop-shadow(0 0 0.1em #ffb300);
}

.media-links li
{
    list-style: none;
}

.media-links li a
{
    color: white;
    text-decoration: none;
}

.media-links li:not(:last-child)
{
    margin-bottom: 77px;
}

.media-links li:nth-child(1), .media-links li:nth-child(3)
{
    padding-left: 50px;
}

.fb-logo
{
    height: 65px;
    width: 65px;
}

.in-logo
{
    height: 60px;
    width: 60px;
    border-radius: 5px;
}

.x-logo
{
    height: 52px;
    width: 55px;
}

@media (max-width: 820px)
{
    .Contactme
    {
        width: fit-content;
        height: fit-content;
    }
}

@media (min-width: 820px) and (max-width: 1024px)
{
    .Contactme
    {
        width: 65%;
        height: fit-content;
    }
}

@media screen and (min-width: 675px) and (max-width: 911px)
{
    #mycontact
    {
        gap: 130px;
    }

    .media-links
    {
        margin: auto;
    }
    
    .media-links li
    {
        list-style: none;
    }

    .media-links li:not(:last-child)
    {
        margin-bottom: 77px;
    }
    
    .media-links li:nth-child(1), .media-links li:nth-child(3)
    {
        padding-left: 50px;
    }

    .fb-logo
    {
        height: 51px;
        width: 53px;
    }
    
    .in-logo
    {
        height: 48px;
        width: 50px;
    }

    .x-logo
    {
        height: 40px;
        width: 42px;
    }
}


@media (max-width: 674px)
{
    #mycontact
    {
        width: 95%;
        flex-direction: column;
    }

    .Contactme
    {
        width: 95%;
        margin: auto;
        height: fit-content;
    }

    .forminput1
    {
        width: 100%;
        border-style: groove;
        margin-bottom: 23px;
    }

    .forminput
    {
        width: 100%;
        
    }

    #subject
    {
        width: 100%;
    }

    textarea
    {
        border-radius: 5px;
    }

    .media-links
    {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin: 0px;
        margin-top: 10px;
    }
    
    .media-links li
    {
        list-style: none;
    }

    .media-links li:not(:last-child)
    {
        margin-bottom: 0px;
    }
    
    .media-links li:nth-child(1), .media-links li:nth-child(3)
    {
        padding-left: 0px;
    }

   .fb-logo
    {
        height: 46px;
        width: 49px;
    }
    
    .in-logo
    {
        height: 44px;
        width: 46px;
    }

    .x-logo
    {
        height: 34px;
        width: 34px;
    }
}

#goTopBtn
{
  display: none;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: solid #00bfff;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 22px;
  transition: background 0.3s;
}

#goTopBtn:hover {
    background-color: #555;
}


footer
{
    height: 65px;
    width: 100%;
    background-image: url(/Dark\ dynamic\ background.jpg);
    margin-top: 50px;
    text-align: center;
    padding: 0px;
    color: white;  
    border-radius: 5px 5px 0px 0px;
}

@media (max-width: 576px)
{
    footer
    {
        margin-top: 10px;
    }
}
