#landing_page{
   padding-top: 0;
}
.landing_page{
   width: 100%;
   height: 100vh;

   display: flex;
   flex-direction: column;
   align-items: start;
   justify-content: center ;
}
.landing_page::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: radial-gradient(circle at center, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
   z-index: -1;
}
.hero-subtitle {
   font-size: 1.5rem;
   color: var(--text-gray);
   margin-bottom: 2rem;
   text-transform: uppercase;
   letter-spacing: 3px;
}
.hero-subtitle span {
   color: var(--accent-red);
}
.social-icons {
   display: flex;
   margin-top: 2rem;
}
.social-icons a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   border: 2px solid var(--accent-red);
   margin-right: 15px;
   color: var(--accent-red);
   font-size: 1.3rem;
   transition: var(--transition);
   text-decoration: none;
}
.social-icons a:hover {
   background: var(--accent-red);
   color: var(--text-light);
   transform: translateY(-5px);
}
@media screen and (max-width: 649px){
   #landing_page{
      padding: 5%;
   }
   #landing_page h1{
      font-size: 2.5rem;
   }
   .hero-subtitle{
      font-size: 1.2rem;
   }
   .social-icons a{
      width: 35px;
      height: 35px;

      font-size: 1rem;
   }
}
/*Marqee section*/
#marqee{
   background-color: var(--accent-red);
   padding: 5%;
}
#marqee .wrapper{
   width: 90%;
   max-width: 1536px;
   height: 100px;

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

   position: relative;
   overflow: hidden;
   mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0));
}
#marqee .item{
   width: 300px;
   height: 55px;

   display: flex;
   justify-content: center;
   align-items: center;
   position: absolute;
   left: max(calc(300px * 11), 100%);
   animation: scrollLeft 30s linear infinite;

   background-repeat: no-repeat;
   background-size: contain;
   background-position: center center;
}
#marqee .item1{
   animation-delay: calc(30s / 11 * (11 - 1) * -1);
   background-image: url('../images/logos/logo.png');
}
#marqee .item2{
   animation-delay: calc(30s / 11 * (11 - 2) * -1);
   background-image: url('../images/logos/logo_prodronshot.png');
}
#marqee .item3{
   animation-delay: calc(30s / 11 * (11 - 3) * -1);
   background-image: url('../images/logos/logo_vektor.png');
}
#marqee .item4{
   animation-delay: calc(30s / 11 * (11 - 4) * -1);
   background-image: url('../images/logos/orlsante.png');
}
#marqee .item5{
   animation-delay: calc(30s / 11 * (11 - 5) * -1);
   background-image: url('../images/logos/TB_logo_white-01.png');
}
#marqee .item6{
   animation-delay: calc(30s / 11 * (11 - 6) * -1);
   background-image: url('../images/logos/hrabiny.jpg');
}
#marqee .item7{
   animation-delay: calc(30s / 11 * (11 - 7) * -1);
   background-image: url('../images/logos/main_logo.png');
}
#marqee .item8{
   animation-delay: calc(30s / 11 * (11 - 8) * -1);
   background-image: url('../images/logos/tridentu.svg');
}
#marqee .item9{
   animation-delay: calc(30s / 11 * (11 - 9) * -1);
   background-image: url('../images/logos/logo_white.png');
}
#marqee .item10{
   animation-delay: calc(30s / 11 * (11 - 10) * -1);
   background-image: url('../images/logos/logo1_wh.png');
}
#marqee .item11{
   animation-delay: calc(30s / 11 * (11 - 11) * -1);
   background-image: url('../images/logos/kozmetika.png');
}
@keyframes scrollLeft {
   to{
      left: -300px;
   }
}
@media screen and (max-width: 897px){
   #marqee .item{
      width: 100px;
      height: 40px;

      left: max(calc(100px *8), 100%);
   }
}
/*About me section*/
#about_me{
   background-color: var(--card-bg);
}
.about_me .wrapper{
   width: 100%;

   display: flex;
   justify-content: space-between;
   align-items: center;
}
.about_me .wrapper aside.text{
   width: 50%;
}
.about_me .wrapper aside.text p{
   font-size: 1.2rem;
   color: var(--text-gray);
   margin-bottom: 3%;
}
.about_me .wrapper figure.image{
   width: 40%;
}
.about_me .wrapper figure.image img{
   width: 100%;
}
/* Add to the About Me section styles */
.cv-btn {
   display: inline-flex;
   align-items: center;
   background: transparent;
   color: var(--accent-red);
   border: 2px solid var(--accent-red);
   padding: 12px 25px;
   font-family: 'Oswald', sans-serif;
   font-size: 1rem;
   text-decoration: none;
   text-transform: uppercase;
   cursor: pointer;
   transition: var(--transition);
   margin-top: 25px;
}
.cv-btn i {
   margin-left: 10px;
   transition: transform 0.3s ease;
}
.cv-btn:hover {
   background: var(--accent-red);
   color: var(--text-light);
}
.cv-btn:hover i {
   transform: translateY(3px);
}
/* Responsive adjustments */
@media screen and (max-width: 900px){
   .about_me .wrapper{
      flex-direction: column;
   }
   .about_me .wrapper aside.text{
      width: 100%;
   }
   .about_me .wrapper figure.image{
      width: 100%;
      margin-top: 5%;
   }
}
@media (max-width: 768px) {
   .cv-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
   }
}
@media screen and (max-width: 500px){
   .about_me .wrapper aside.text p{
      font-size: 0.8rem;
   }
}
/*Skills*/
.skills-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
   margin-top: 40px;
}
.skill-category {
   background: var(--card-bg);
   padding: 25px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   transition: var(--transition);
}
.skill-category:hover {
   border-color: var(--accent-red);
   transform: translateY(-5px);
}
.skill-category h3 {
   font-size: 1.5rem;
   margin-bottom: 20px;
   color: var(--accent-red);
   display: flex;
   align-items: center;
}
.skill-category h3 i {
   margin-right: 10px;
   font-size: 1.8rem;
}
.skill-item {
   margin-bottom: 20px;
}
.skill-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 8px;
}
.skill-name {
   font-size: 1.1rem;
   color: var(--text-light);
}
.skill-percentage {
   font-size: 1rem;
   color: var(--accent-red);
   font-weight: 600;
}
.skill-bar {
   width: 100%;
   height: 10px;
   background: rgba(255, 255, 255, 0.1);
   overflow: hidden;
   position: relative;
}
.skill-progress {
   height: 100%;
   background: var(--accent-red);
   width: 0;
   transition: width 1.5s ease-in-out;
   position: relative;
}
.skill-progress::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   background-image: linear-gradient(
      -45deg, 
      rgba(255, 255, 255, 0.2) 25%, 
      transparent 25%, 
      transparent 50%, 
      rgba(255, 255, 255, 0.2) 50%, 
      rgba(255, 255, 255, 0.2) 75%, 
      transparent 75%, 
      transparent
   );
   background-size: 20px 20px;
   animation: move 1s linear infinite;
   overflow: hidden;
}
@keyframes move {
   0% {
      background-position: 0 0;
   }
   100% {
      background-position: 20px 0;
   }
}
/* Animation for progress bars when they come into view */
.skill-progress.animate {
   width: var(--skill-level);
}
/* Responsive adjustments */
@media (max-width: 768px) {
   .skills-container {
      grid-template-columns: 1fr;
   }
}
/* Services Section */
#services {
   background-color: var(--card-bg);
   margin: 40px 0;
}
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
   margin-top: 40px;
}
.service-card {
   background: var(--dark-bg);
   padding: 35px 30px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   transition: var(--transition);
   position: relative;
   overflow: hidden;
   height: 100%;
   display: flex;
   flex-direction: column;
}
.service-card::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
   z-index: 0;
}
.service-card:hover {
   border-color: var(--accent-red);
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
}
.service-icon {
   font-size: 2.8rem;
   color: var(--accent-red);
   margin-bottom: 20px;
   position: relative;
   z-index: 1;
   transition: var(--transition);
   text-align: center;
}
.service-card:hover .service-icon {
   transform: scale(1.1);
}
.service-title {
   font-size: 1.6rem;
   margin-bottom: 15px;
   position: relative;
   z-index: 1;
   text-align: center;
}
.service-title::after {
   content: "";
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 40px;
   height: 3px;
   background: var(--accent-red);
   transition: var(--transition);
}
.service-card:hover .service-title::after {
   width: 80px;
}
.service-description {
   color: var(--text-gray);
   line-height: 1.6;
   position: relative;
   z-index: 1;
   margin-bottom: 25px;
   text-align: center;
}
.service-features {
   list-style: none;
   margin-top: auto;
   position: relative;
   z-index: 1;
}
.service-features li {
   margin-bottom: 12px;
   color: var(--text-gray);
   display: flex;
   align-items: center;
   font-size: 1rem;
   padding: 8px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.service-features li:last-child {
   border-bottom: none;
}
.service-features li::before {
   content: "▹";
   color: var(--accent-red);
   margin-right: 12px;
   font-size: 1.2rem;
   flex-shrink: 0;
}
/* Responsive Design */
@media (max-width: 768px) {
   .services-grid {
      grid-template-columns: 1fr;
   }
}
/* Gallery Section */
.gallery-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
   gap: 30px;
   margin-top: 40px;
}
.project-card {
   position: relative;
   height: 300px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
   transition: var(--transition);
}
.project-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
}
.project-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: var(--transition);
}
.project-card:hover .project-image {
   transform: scale(1.1);
}
.project-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.8) 60%, transparent 100%);
   opacity: 0;
   transition: var(--transition);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 25px;
}
.project-card:hover .project-overlay {
   opacity: 1;
}
.project-title {
   font-size: 1.5rem;
   margin-bottom: 10px;
   color: var(--text-light);
   transform: translateY(20px);
   transition: var(--transition);
   transition-delay: 0.1s;
   opacity: 0;
}
.project-card:hover .project-title {
   transform: translateY(0);
   opacity: 1;
}
.project-description {
   color: var(--text-gray);
   margin-bottom: 15px;
   font-size: 0.95rem;
   line-height: 1.5;
   transform: translateY(20px);
   transition: var(--transition);
   transition-delay: 0.2s;
   opacity: 0;
}
.project-card:hover .project-description {
   transform: translateY(0);
   opacity: 1;
}
.project-tech {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 20px;
   transform: translateY(20px);
   transition: var(--transition);
   transition-delay: 0.3s;
   opacity: 0;
}
.project-card:hover .project-tech {
   transform: translateY(0);
   opacity: 1;
}
.tech-tag {
   background: rgba(230, 57, 70, 0.15);
   color: var(--accent-red);
   padding: 5px 12px;
   font-size: 0.8rem;
   font-weight: 500;
}
.project-link {
   display: inline-flex;
   align-items: center;
   color: var(--accent-red);
   text-decoration: none;
   font-weight: 600;
   transform: translateY(20px);
   transition: var(--transition);
   transition-delay: 0.4s;
   opacity: 0;
}
.project-card:hover .project-link {
   transform: translateY(0);
   opacity: 1;
}
.project-link i {
   margin-left: 8px;
   transition: transform 0.3s ease;
}
.project-link:hover i {
   transform: translateX(5px);
}
.status-badge {
   position: absolute;
   top: 15px;
   right: 15px;
   padding: 5px 12px;
   font-size: 0.8rem;
   font-weight: 600;
   z-index: 2;
}
.status-online {
   background: rgba(46, 204, 113, 0.15);
   color: #2ecc71;
}
.status-development {
   background: rgba(241, 196, 15, 0.15);
   color: #f1c40f;
}
/* Responsive Design */
@media (max-width: 768px) {
   .gallery-grid {
      grid-template-columns: 1fr;
   }
   h2 {
      font-size: 1.8rem;
   }
   section {
      padding: 5%;
   }
   .project-card {
      height: 250px;
   }
}
/* Contact Section Styles */
#contact {
   background-color: var(--card-bg);
   position: relative;
   overflow: hidden;
}
.contact-title {
   text-align: left;
   margin-bottom: 50px;
}
.contact-title h2 {
   font-size: 2.5rem;
   margin-bottom: 15px;
}
.social-contact-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 25px;
   margin-top: 40px;
}
.social-contact-card {
   background: var(--dark-bg);
   padding: 30px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   text-align: center;
   transition: var(--transition);
   display: flex;
   flex-direction: column;
   align-items: center;
}
.social-contact-card:hover {
   transform: translateY(-5px);
   border-color: var(--accent-red);
   box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
}
.social-contact-icon {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   font-size: 2rem;
   color: var(--text-light);
   transition: var(--transition);
}
.social-contact-card:hover .social-contact-icon {
   transform: scale(1.1);
}
.social-contact-icon.linkedin {
   background: linear-gradient(45deg, #0077b5, #00a0dc);
}
.social-contact-icon.gmail {
   background: linear-gradient(45deg, #d44638, #ea4335);
}
.social-contact-icon.instagram {
   background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-contact-icon.facebook {
   background: linear-gradient(45deg, #3b5998, #4267B2);
}
.social-contact-icon.messenger {
   background: linear-gradient(45deg, #006aff, #0084ff);
}
.social-contact-icon.telegram {
   background: linear-gradient(45deg, #0088cc, #00a8e8);
}
.social-contact-title {
   font-size: 1.4rem;
   margin-bottom: 15px;
   color: var(--text-light);
}
.social-contact-username {
   color: var(--text-gray);
   margin-bottom: 20px;
   font-size: 1rem;
}
.social-contact-link {
   display: inline-flex;
   align-items: center;
   color: var(--accent-red);
   text-decoration: none;
   font-weight: 600;
   transition: var(--transition);
   margin-top: auto;
}
.social-contact-link:hover {
   color: var(--text-light);
}
.social-contact-link i {
   margin-left: 8px;
   transition: transform 0.3s ease;
}
.social-contact-link:hover i {
   transform: translateX(5px);
}
.availability {
   text-align: left;
   margin-top: 50px;
   padding-top: 30px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.availability p {
   color: var(--text-gray);
   font-size: 1.1rem;
   margin-bottom: 15px;
}
.status-badge.available {
   display: inline-flex;
   align-items: center;
   background: rgba(46, 204, 113, 0.1);
   color: #2ecc71;
   padding: 8px 20px;
   font-weight: 600;
   margin-top: 10px;
}
.status-badge.available span {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: #2ecc71;
   margin-right: 8px;
   animation: pulse 1.5s infinite;
}
@keyframes pulse {
   0% { opacity: 1; }
   50% { opacity: 0.4; }
   100% { opacity: 1; }
}
/* Responsive styles */
@media (max-width: 768px) {
   #contact {
      padding: 60px 8%;
   }
   .social-contact-grid {
      grid-template-columns: 1fr;
   }   
   .contact-title h2 {
      font-size: 2rem;
   }
   .status-badge.available{
      display: none;
   }
}