@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://fonts.googleapis.com/css?family=Syne:600,800|Montserrat:400|Inter:700");

:root {
    --royalblue: #0672ca;
    --nav_bg: #0672ca;
    --accent-color: #fddd25;
    --partwhite: #ffffff;
    --boldblack: #111111;
    --primary-dark: #045a9e;
    --accent-dark: #e6c700;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --mid-gray: #b4b5b7;
    --dark-gray: #495057;
    --black: #212529;
    --sec_bg1: #ffffff;
    --sec_bg2: #f5f5f5e2;
    --boxshadow: #01010187;
}

[data-theme="dark"] {
    --royalblue: #00b9d5;
    --nav_bg: #202020;
    --accent-color: #fddd25;
    --partwhite: #121212;
    --boldblack: #f1f1f1;          
    --primary-dark: #DFBBB1; 
    --accent-dark: #d0d7d1;       
    --white: #121212;             
    --light-gray: #1c1c1e;
    --mid-gray: #2c2c2e;
    --dark-gray: #ced4da;
    --black: #f8f9fa;
    --sec_bg1: #101010;            
    --sec_bg2: #2f3236;
    --boxshadow: #0672cad7;
}

*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
@media
(prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body, html{
    overflow-x: hidden;
}

body{
    width: 100%;
    height: auto;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--boldblack);
}

.navbar {
    background-color: var(--nav_bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0 auto;
    padding: 0 20px;
    height: 5rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: inset -4px -4px 16px 1px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--boldblack);
    transition: all 0.3s ease-in-out;
}

.navbar.on_top{
    height: 5rem;
    transition: all 0.3s ease-in-out;
}
.navbar.on_scroll{
    height: 4.5rem;
    transition: all 0.3s ease-in-out;
}
.navbar-brand a {
    font-family: Syne, sans-serif;
    color: var(--accent-color);
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.navbar-brand a:hover {
    text-decoration: underline dashed 1px;
    transform: translateY(-1px);
}

.navbar-links {
    display: flex;
    list-style: none;
}

.navbar-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-links li a i {
    margin-right: 8px;
    font-size: 20px;
}

.navbar-links li a:hover {
    background: #ffffff1a;
    color: var(--accent-color);
}
.theme-toggle-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      color: #333;
      text-decoration: none;
      border-radius: 4px;
      transition: background-color 0.2s, color 0.2s;
    }

.theme-toggle-group {
      display: flex;
      gap: 5px;
      background-color: #f0f0f0;
      border-radius: 4px;
      padding: 2px;
    }

    .theme-toggle-button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .theme-toggle-button.active {
      background-color: #d0d0d0;
    }

@media (max-width: 768px) {
.navbar-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: rgba(6, 114, 202, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    padding: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.navbar-menu.active {
    left: 0;
}

.navbar-links {
    flex-direction: column;
}

.navbar-links li {
    margin: 15px 0;
}

.navbar-links li a {
    padding: 12px;
    margin: 0;
}

.navbar-toggle {
    display: block;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
}
*:not(a){
    cursor: grab;
}
section{
    padding: 100px 200px;
}

.main{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
}
[data-theme="light"] .main{
    background-image: url(Image/bg.webp);
    background-attachment: fixed;
}
[data-theme="dark"] .main{
    background-image: url(Image/bg_dark.webp);
    background-attachment: scroll;
}
.main .content{
    max-width: 800px;
}

.main .content h2{
    color: #ffffff;
    font-size: 2em;
    font-weight: 100;
}
.main .content h4{
    color: #ffffff;
    font-size: 2em;
    font-weight: 100;
}

.main .content h2 span{
    font-size: 2.8rem;
    font-weight: 700;
}
.main .content .context{
    visibility: hidden;
    /* display: none; */
}

.animated-text{
    position: relative;
    height: 70px;
    overflow: hidden;
}

.animated-text h3{
    color: var(--accent-color);
    font-size: 3em;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: 1px;
}

.animated-text h3:nth-child(1){
    animation: text-move 6s infinite ease-in-out 2s;
}

@keyframes text-move {
    0% {
        margin-top: 0px;
    }
    
    15% {
        margin-top: -70px;
    }
    
    30% {
        margin-top: -140px;
    }
    
    45% {
        margin-top: -210px;
    }
    
    60% {
        margin-top: -140px;
    }
    
    75% {
        margin-top: -70px;
    }
    
    90% {
        margin-top: 0px;
    }
    
    100% {
        margin-top: 0px;
    }
}

.btn{
    background-color: rgb(0, 242, 255);
    font-size: 1em;
    font-weight: 600;
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 2px;
    margin-top: 30px;
    background: #00000073;
    transition: all 0.3s ease-in;
}

.btn:hover{
    background: #00000059;
}

.media-icons{
    margin-top: 50px;
}

.fab{
    color: white;
    font-size: 25px;
    margin-right: 30px;
    transition: all 0.3s ease;
}
.fab:hover{
    color: var(--accent-color);
}

/* About */
.title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-title{
    position: relative;
    color: var(--royalblue);
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 60px;
}

.section-title::before{
    content: "";
    position: absolute;
    top: 56px;
    left: 50%;
    width: 140px;
    height: 4px;
    background-color: var(--royalblue);
    transform: translateX(-50%);
}

.section-title::after{
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--royalblue);
    transform: translateX(-50%);
}
.about{
    background: var(--sec_bg1);
    margin-bottom: 6.25rem;
}
.about .content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.about .content .col-left{
    position: relative;
    width: 45%;
}

.about .content .col-right{
    position: relative;
    width: 50%;
}

.about .content .col-left .img-card{
    position: relative;
    width: 100%;
    background-color: #224439d0;
    background: url(Image/img1.webp);
    background-size: 100%;
    background-position-y: 90%;
    background-repeat: no-repeat;
    min-height: 440px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.about .content .col-left .img-card:hover{
    box-shadow: -1px 8px 17px var(--boxshadow);
    filter: brightness(1.5) contrast(1);
}
.about .content .col-right .content-title{
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 20px;
}

.about .content .col-right .paragraph-text{
    font-size: 1em;
}

/* Skills Section */
.skills{
    background-color: var(--sec_bg2);
}
.skills .content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--boldblack);
    margin-top: 20px;
}

.skills .content .col-left{
    position: relative;
    width: 46%;
}

.skills .content .col-left .content-title{
    margin-bottom: 20px;
}

.skills .content .col-right{
    position: relative;
    width: 46%;
}

.skills .content .col-right .bar{
    margin-bottom: 15px;
    padding: 10px;
}

.skills .content .col-right .bar .info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.skills .content .col-right .bar .info span{
    font-size: 18px;
    font-weight: 500;

}

.skills .content .col-right .bar .info span img{
    height: 48px;
    
}

.skills .content .col-right .bar .line{
    position: relative;
    width: 100%;
    height: 15px;
    background-color: var(--mid-gray);
    border-radius: 10px;
}

.skills .content .col-right .bar .line::before{
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.skills .content .col-right .bar .lightroom::before{
    width: 80%;
    background-color: var(--black);
}

.skills .content .col-right .bar .figma::before{
    width: 75%;
    background-color: var(--black);
}

.skills .content .col-right .bar .framer::before{
    width: 40%;
    background-color: var(--black);
}

.skills .content .col-right .bar .illustrator::before{
    width: 20%;
    background-color: var(--black);
}

.features-section {
    color: var(--boldblack);
    background: var(--sec_bg1);
    padding: 60px 20px;
    text-align: center;
}

.features-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 auto;
    align-content: center;
    align-items: center;
    gap: 50px;
    height: min-content;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 25px;
    animation: marquee 3s infinite linear;   
}

.feature-item {
  flex: 1;
  min-width: 240px;
  margin: 10px;
  padding: 20px;
}

.feature-icon {
  /* color: #39FF14; */
  color: var(--royalblue);
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 20px;
  margin: 10px 0;
}

.feature-item p {
  font-size: 15px;
  color: var(--dark-gray);
  font-weight: 300;
  line-height: 1.6;
}


/* Services */
.services{
    background-color: var(--sec_bg2);
    min-height: 88vh;

}
.services .content, .project_btn{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 20px;
}

.title p{
    font-size: 1em;
    width: 80%;
    text-align: center;
}

.services .content .card{
    background-color: var(--partwhite);
    margin: 10px;
    padding: 25px;
    width: 41vh;
    min-height: 36vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid var(--royalblue);
    transition: 0.3s linear;
}

.services .content .card .service-icon{
    color: var(--royalblue);
    font-size: 8rem;
    text-align: center;
    transition: 0.3s linear;
}

.services .content .card .info{
    text-align: center;
}

.services .content .card .info h3{
    color: var(--royalblue);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 10px;
    transition: 0.3s linear;
    
}

.services .content .card:hover{
    background-color: var(--royalblue);
    color: var(--partwhite);
    box-shadow: -1px 8px 17px var(--boxshadow);
}

.services .content .card:hover .icon-card{
    background-color: var(--royalblue);
    box-shadow: 0 5px 15px #ffff00;
    color: var(--partwhite);
}
.services .content .card:hover .service-icon,
.services .content .card:hover .info h3
{
    transform: translateY(-10px);
}
.services .content .card:hover .info h3{
    color: var(--partwhite);
}

.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--partwhite);
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--boxshadow);
    filter: drop-shadow(-10px 4px 8px rgb(0, 0, 0, 0.3));
    transition: transform 0.2s, box-shadow 0.2s;
}
.custom-dropdown {
  position: relative;
  width: 90px;
  font-size: 16px;
}

.dropdown-selected {
  padding: 10px;
  border: 1px solid white;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  background-color: var(--nav_bg);
  position: relative; 
}

.dropdown-selected::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: white;
  pointer-events: none;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid white;
  border-radius: 4px;
  background-color: var(--nav_bg);
  color: white;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.dropdown-options.show {
  display: block;
}

.option {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  transition: all 0.3s ease-in-out;
}

.option:hover {
  /* background-color: var(--primary-dark); */
  text-decoration: underline white 1px ;
}

.option.selected {
  font-weight: bold;
}
svg {
  width: 20px;
  height: 20px;
}

/* Tools Section */
.tools {
    /* background-image: linear-gradient(35deg, rgba(253, 253, 253, 0.03) 0%, rgba(253, 253, 253, 0.03) 53%,rgba(109, 109, 109, 0.03) 53%, rgba(109, 109, 109, 0.03) 59%,rgba(228, 228, 228, 0.03) 59%, rgba(228, 228, 228, 0.03) 66%,rgba(42, 42, 42, 0.03) 66%, rgba(42, 42, 42, 0.03) 95%,rgba(165, 165, 165, 0.03) 95%, rgba(165, 165, 165, 0.03) 100%),linear-gradient(205deg, rgba(62, 62, 62, 0.03) 0%, rgba(62, 62, 62, 0.03) 31%,rgba(200, 200, 200, 0.03) 31%, rgba(200, 200, 200, 0.03) 41%,rgba(30, 30, 30, 0.03) 41%, rgba(30, 30, 30, 0.03) 47%,rgba(151, 151, 151, 0.03) 47%, rgba(151, 151, 151, 0.03) 60%,rgba(95, 95, 95, 0.03) 60%, rgba(95, 95, 95, 0.03) 100%),linear-gradient(30deg, rgba(7, 7, 7, 0.03) 0%, rgba(7, 7, 7, 0.03) 19%,rgba(63, 63, 63, 0.03) 19%, rgba(63, 63, 63, 0.03) 33%,rgba(175, 175, 175, 0.03) 33%, rgba(175, 175, 175, 0.03) 37%,rgba(244, 244, 244, 0.03) 37%, rgba(244, 244, 244, 0.03) 60%,rgba(177, 177, 177, 0.03) 60%, rgba(177, 177, 177, 0.03) 100%),linear-gradient(90deg, rgb(162, 162, 162),rgb(229, 229, 229)); */
    background: var(--sec_bg1);
    margin: 0 auto 30px auto;
}
.tools .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 20px;
}

.title p {
    font-size: 1em;
    width: 80%;
    text-align: center;
}

.tools .content .card {
    background-color: var(--partwhite);
    width: 340px;
    margin: 10px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    transition: 0.3s linear;
    min-height: 20rem;
    z-index: 1;
    position: relative;
    border: 1px solid var(--royalblue);
    transition: all 0.3s ease-in-out;
}
.tools .content .card .bg_text{
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: palegreen;
    opacity: 0.2;
    z-index: 0;
    transition: all 1s ease-in-out;
    animation: rotate 10s infinite linear;
    pointer-events: none;
}
@keyframes rotate {
    0% {
      transform: scale(3) rotate(0deg);
    }
    50% {
      transform: scale(5) rotate(180deg);
    }
    100%{
        transform: scale(3) rotate(360deg);
    }
  }

.tools .content .card .info h3 {
    text-align: center;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px;
    transition: 0.3s linear;
    z-index: 1;
}

.tools .content .card:hover {
    /* background-image: linear-gradient(328deg, rgba(29, 29, 29, 0.05) 0%, rgba(29, 29, 29, 0.05) 25%,rgba(226, 226, 226, 0.05) 25%, rgba(226, 226, 226, 0.05) 50%,rgba(21, 21, 21, 0.05) 50%, rgba(21, 21, 21, 0.05) 75%,rgba(216, 216, 216, 0.05) 75%, rgba(216, 216, 216, 0.05) 100%),linear-gradient(172deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 25%,rgba(108, 108, 108, 0.05) 25%, rgba(108, 108, 108, 0.05) 50%,rgba(21, 21, 21, 0.05) 50%, rgba(21, 21, 21, 0.05) 75%,rgba(236, 236, 236, 0.05) 75%, rgba(236, 236, 236, 0.05) 100%),linear-gradient(207deg, rgba(153, 153, 153, 0.05) 0%, rgba(153, 153, 153, 0.05) 25%,rgba(83, 83, 83, 0.05) 25%, rgba(83, 83, 83, 0.05) 50%,rgba(5, 5, 5, 0.05) 50%, rgba(5, 5, 5, 0.05) 75%,rgba(82, 82, 82, 0.05) 75%, rgba(82, 82, 82, 0.05) 100%),linear-gradient(297deg, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0.05) 25%,rgba(223, 223, 223, 0.05) 25%, rgba(223, 223, 223, 0.05) 50%,rgba(232, 232, 232, 0.05) 50%, rgba(232, 232, 232, 0.05) 75%,rgba(153, 153, 153, 0.05) 75%, rgba(153, 153, 153, 0.05) 100%),linear-gradient(204deg, rgba(120, 120, 120, 0.05) 0%, rgba(120, 120, 120, 0.05) 25%,rgba(191, 191, 191, 0.05) 25%, rgba(191, 191, 191, 0.05) 50%,rgba(246, 246, 246, 0.05) 50%, rgba(246, 246, 246, 0.05) 75%,rgba(123, 123, 123, 0.05) 75%, rgba(123, 123, 123, 0.05) 100%),linear-gradient(90deg, rgb(32,234,255),rgb(37,116,255)); */
    color: var(--partwhite);
    box-shadow: -1px 8px 17px var(--boxshadow);
}

.tools .content .card:hover .info h3 {
    transform: translateY(-5px);
    color: var(--boldblack);
}
.btn {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.625rem 1.25rem;
    background-color: var(--royalblue);
    color: var(--partwhite);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: clamp(0.875rem, 2.5vw, 1rem); /* Scales button text */
}

.btn:hover {
    background-color: var(--royalblue);
    box-shadow: inset 0px 0px 20px rgb(0 0 0 / 47%);
}
/* Contact */
.contact{
    background-color: var(--sec_bg2);
}
.contact .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
  }
  
  .contact .content .row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  .contact .content .row .card{
    background-color: var(--partwhite);
    width: 240px;
    height: 15em;
    margin: 20px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid var(--royalblue);
  }
  .contact .content .row .card:hover{
    box-shadow: -1px 8px 17px var(--boxshadow);
  }
  .i{
    transform: scale(1.5);
  
}
  .contact .content .row .card .contact-icon{
    color: var(--royalblue);
    font-size: 4em;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }
  
  .contact .content .row .card:hover .contact-icon{
    transform: translateY(-10px);
    /* text-decoration: underline; */
  }
  
  .contact .content .row .card .info{
    text-align: center;
  }
  
  .contact .content .row .card .info h3{
    color: var(--boldblack);
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
  }
  
  .contact .content .row .card .info span{
    color: #666;
    font-weight: 500;
  }
  .contact .content .row .card .info a{
    color: #666;
    font-weight: 500;
  }

  .contact .content .row .card .info a:hover{
    text-decoration: underline;
  }
#scrollToTopBtn {
    position: fixed;
    padding: 15px;
    bottom: 20px;
    right: 30px;
    border: none;
    outline: none;
    background-color: #ffffff00;
    cursor: pointer;
    border-radius: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
#scrollToTopBtn.show{
    opacity: 1;
    visibility: visible;
}
#scrollToTopBtn.hide{
    opacity: 0;
    visibility: hidden;
}

.btn_container{
    display: flex;
    border-radius: 20%;
    padding: 10px;
    margin: 10px;
    background-color: var(--royalblue);
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.chev-up{
    color: var(--white);
}

/* Footer */  
  .footer{
    color: #ffffff;
    text-align: center;
    padding: 2em 0em 1em 0em ;
    min-height: 1vh;
  }
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    background-color: #111 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' viewBox='0 0 192 192'%3E%3Cpath fill='%239C92AC' fill-opacity='0.4' d='M192 15v2a11 11 0 0 0-11 11c0 1.94 1.16 4.75 2.53 6.11l2.36 2.36a6.93 6.93 0 0 1 1.22 7.56l-.43.84a8.08 8.08 0 0 1-6.66 4.13H145v35.02a6.1 6.1 0 0 0 3.03 4.87l.84.43c1.58.79 4 .4 5.24-.85l2.36-2.36a12.04 12.04 0 0 1 7.51-3.11 13 13 0 1 1 .02 26 12 12 0 0 1-7.53-3.11l-2.36-2.36a4.93 4.93 0 0 0-5.24-.85l-.84.43a6.1 6.1 0 0 0-3.03 4.87V143h35.02a8.08 8.08 0 0 1 6.66 4.13l.43.84a6.91 6.91 0 0 1-1.22 7.56l-2.36 2.36A10.06 10.06 0 0 0 181 164a11 11 0 0 0 11 11v2a13 13 0 0 1-13-13 12 12 0 0 1 3.11-7.53l2.36-2.36a4.93 4.93 0 0 0 .85-5.24l-.43-.84a6.1 6.1 0 0 0-4.87-3.03H145v35.02a8.08 8.08 0 0 1-4.13 6.66l-.84.43a6.91 6.91 0 0 1-7.56-1.22l-2.36-2.36A10.06 10.06 0 0 0 124 181a11 11 0 0 0-11 11h-2a13 13 0 0 1 13-13c2.47 0 5.79 1.37 7.53 3.11l2.36 2.36a4.94 4.94 0 0 0 5.24.85l.84-.43a6.1 6.1 0 0 0 3.03-4.87V145h-35.02a8.08 8.08 0 0 1-6.66-4.13l-.43-.84a6.91 6.91 0 0 1 1.22-7.56l2.36-2.36A10.06 10.06 0 0 0 107 124a11 11 0 0 0-22 0c0 1.94 1.16 4.75 2.53 6.11l2.36 2.36a6.93 6.93 0 0 1 1.22 7.56l-.43.84a8.08 8.08 0 0 1-6.66 4.13H49v35.02a6.1 6.1 0 0 0 3.03 4.87l.84.43c1.58.79 4 .4 5.24-.85l2.36-2.36a12.04 12.04 0 0 1 7.51-3.11A13 13 0 0 1 81 192h-2a11 11 0 0 0-11-11c-1.94 0-4.75 1.16-6.11 2.53l-2.36 2.36a6.93 6.93 0 0 1-7.56 1.22l-.84-.43a8.08 8.08 0 0 1-4.13-6.66V145H11.98a6.1 6.1 0 0 0-4.87 3.03l-.43.84c-.79 1.58-.4 4 .85 5.24l2.36 2.36a12.04 12.04 0 0 1 3.11 7.51A13 13 0 0 1 0 177v-2a11 11 0 0 0 11-11c0-1.94-1.16-4.75-2.53-6.11l-2.36-2.36a6.93 6.93 0 0 1-1.22-7.56l.43-.84a8.08 8.08 0 0 1 6.66-4.13H47v-35.02a6.1 6.1 0 0 0-3.03-4.87l-.84-.43c-1.59-.8-4-.4-5.24.85l-2.36 2.36A12 12 0 0 1 28 109a13 13 0 1 1 0-26c2.47 0 5.79 1.37 7.53 3.11l2.36 2.36a4.94 4.94 0 0 0 5.24.85l.84-.43A6.1 6.1 0 0 0 47 84.02V49H11.98a8.08 8.08 0 0 1-6.66-4.13l-.43-.84a6.91 6.91 0 0 1 1.22-7.56l2.36-2.36A10.06 10.06 0 0 0 11 28 11 11 0 0 0 0 17v-2a13 13 0 0 1 13 13c0 2.47-1.37 5.79-3.11 7.53l-2.36 2.36a4.94 4.94 0 0 0-.85 5.24l.43.84A6.1 6.1 0 0 0 11.98 47H47V11.98a8.08 8.08 0 0 1 4.13-6.66l.84-.43a6.91 6.91 0 0 1 7.56 1.22l2.36 2.36A10.06 10.06 0 0 0 68 11 11 11 0 0 0 79 0h2a13 13 0 0 1-13 13 12 12 0 0 1-7.53-3.11l-2.36-2.36a4.93 4.93 0 0 0-5.24-.85l-.84.43A6.1 6.1 0 0 0 49 11.98V47h35.02a8.08 8.08 0 0 1 6.66 4.13l.43.84a6.91 6.91 0 0 1-1.22 7.56l-2.36 2.36A10.06 10.06 0 0 0 85 68a11 11 0 0 0 22 0c0-1.94-1.16-4.75-2.53-6.11l-2.36-2.36a6.93 6.93 0 0 1-1.22-7.56l.43-.84a8.08 8.08 0 0 1 6.66-4.13H143V11.98a6.1 6.1 0 0 0-3.03-4.87l-.84-.43c-1.59-.8-4-.4-5.24.85l-2.36 2.36A12 12 0 0 1 124 13a13 13 0 0 1-13-13h2a11 11 0 0 0 11 11c1.94 0 4.75-1.16 6.11-2.53l2.36-2.36a6.93 6.93 0 0 1 7.56-1.22l.84.43a8.08 8.08 0 0 1 4.13 6.66V47h35.02a6.1 6.1 0 0 0 4.87-3.03l.43-.84c.8-1.59.4-4-.85-5.24l-2.36-2.36A12 12 0 0 1 179 28a13 13 0 0 1 13-13zM84.02 143a6.1 6.1 0 0 0 4.87-3.03l.43-.84c.8-1.59.4-4-.85-5.24l-2.36-2.36A12 12 0 0 1 83 124a13 13 0 1 1 26 0c0 2.47-1.37 5.79-3.11 7.53l-2.36 2.36a4.94 4.94 0 0 0-.85 5.24l.43.84a6.1 6.1 0 0 0 4.87 3.03H143v-35.02a8.08 8.08 0 0 1 4.13-6.66l.84-.43a6.91 6.91 0 0 1 7.56 1.22l2.36 2.36A10.06 10.06 0 0 0 164 107a11 11 0 0 0 0-22c-1.94 0-4.75 1.16-6.11 2.53l-2.36 2.36a6.93 6.93 0 0 1-7.56 1.22l-.84-.43a8.08 8.08 0 0 1-4.13-6.66V49h-35.02a6.1 6.1 0 0 0-4.87 3.03l-.43.84c-.79 1.58-.4 4 .85 5.24l2.36 2.36a12.04 12.04 0 0 1 3.11 7.51A13 13 0 1 1 83 68a12 12 0 0 1 3.11-7.53l2.36-2.36a4.93 4.93 0 0 0 .85-5.24l-.43-.84A6.1 6.1 0 0 0 84.02 49H49v35.02a8.08 8.08 0 0 1-4.13 6.66l-.84.43a6.91 6.91 0 0 1-7.56-1.22l-2.36-2.36A10.06 10.06 0 0 0 28 85a11 11 0 0 0 0 22c1.94 0 4.75-1.16 6.11-2.53l2.36-2.36a6.93 6.93 0 0 1 7.56-1.22l.84.43a8.08 8.08 0 0 1 4.13 6.66V143h35.02z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: repeat;
    background-blend-mode: hard-light;
    animation: marquee 30s infinite linear;
    padding: 3.5rem;
}

@keyframes marquee {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -1190px;
  }
}
  
  .footer .footer-title{
    font-size: 20px;
    font-weight: 600;
  }
  
  .footer p{
    font-size: 16px;
    margin-top: 10px;
  }
  
  .footer p a{
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
  }


  @media (max-width:1040px) {
    body{
        max-width: 1040px;
    }
    header{
        padding: 12px 20px;
    }

    header.sticky{
        padding: 10px 0px;
    }

    header .navigation{
        display: none;
    }
    .navbar{
        justify-content: center;
    }
    .navbar-brand a {
        justify-content: center;
        right: 0;
        left: 0;
    }
    .navbar-brand a:hover {
    text-decoration: none;
    transform: none;
    }
    .navbar.on_top{
    height: 4rem;
    }
    .navbar.on_scroll{
    height: 3.5rem;
    }
    .main .content .context{
        visibility: visible;
    }
    .main .content .hr1{
        display: none;
    }
    .buymeacoffee{
        display: none;
    }
    .media-icons{
        margin-top: 0px;
        padding: 30px;
        display: flex;
        justify-content: space-between;
    }
    .fab:hover{
    transform: none;
    }
    section{
        padding: 80px 20px;
    }

    .main{
        background-image: url(Image/bkgrnd.webp);
        background-attachment: scroll;
    }
    .main .content{
        padding: 100% 15px 0 15px;
        transform: translateY(-16%);
    }
    .main .content h2 span{
        padding-right: 50px;
        top: 0px;
        left: 0px;
    }
    .main .content h2{
        font-size: 1em;
        padding: 0 10px;
        background-color: var(--main-color);
    }
    .main .content h4{
        font-size: 1em;
        padding: 0 10px;
        background-color: var(--main-color);
    }
    .animated-text h3{
        font-size: 2.2em;
    }
    .section-title{
        font-size: 1.8em;
    }
    .about .content{
        flex-direction: column;
    }
    .about .content .column{
        width: 100%;
        position: relative;
    }
    .about .content .col-left .img-card{
        background: url(Image/img1.webp);
        background-position-y: 100%;
        background-size: cover;
        min-height: 400px;
        border-radius: 100%;
    }
    .about .content .col-left .img-card:hover{
        box-shadow: none;
    }
    .about .content .col-right{
        margin-top: 40px;
    }
    .about .content .col-right .paragraph-text{
        font-size: 1em;
    }
    .services .content .card{
        max-width: max-content;
}
    /* Skills */
    .skills .content{
        flex-direction: column;
    }
    .skills .content .column{
        position: relative;
        width: 100%;
    }
    .skills .content .col-right{
        margin-top: 40px;
    }
    .skills .content .col-right .bar .lightroom::before{
        background-color: var(--royalblue);
    }

    .skills .content .col-right .bar .figma::before{
        background-color: var(--royalblue);
    }

    .skills .content .col-right .bar .framer::before{
        background-color: var(--royalblue);
    }

    .skills .content .col-right .bar .illustrator::before{
        background-color: var(--royalblue);
    }
    .contact-form{
        padding: 35px 40px;
    }
    .features-section {
        display: none;
    }
    #scrollToTopBtn {
        transform: translateX(15px) scale(0.8);
        right: 0;
    }
}
