::-webkit-scrollbar {
    width: 2px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background-color: transparent; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7cb0c4, #007bff);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color on hover */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'NeueRegradeVariable';
    /* outline: 2px solid red !important; /* le debuggaH! */
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  background-color: #202020;
}

.content-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

:root {
  --primary-color-start: #7cb0c4;
  --primary-color-end: #007bff;
  --dark-bg: #202020;
  --text-color: #ffffff;
}

/* Fade Out Overlay */
.fade-out-overlay {
    position: fixed; /* make u folow viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; 
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%,rgba(0, 0, 0, 0) 100%); 
    transition: opacity 0.5s ease; 
    opacity: 1; 
    z-index: 1; 
}

/* Optional: Class to fade out the overlay */
.fade-out {
    opacity: 0; 
}

/* Optional: Class to fade out the overlay */
.fade-out {
    opacity: 0; 
}


@font-face {
    font-family: 'NeueRegradeVariable';
    src: url('./components/font/NeueRegradeVariable.ttf');
    font-style: normal;
}


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(50%);
}

/* Hero Content positioned at bottom left */
.hero-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
  text-align: left;
  z-index: 1;
  padding: 1px 200px 20px 180px;
}

.hero-content h1 {
    font-size: 4rem;
    max-width: 800px;
    margin-bottom: 10px;
    font-weight: 900;
    font-size: 5rem;
}

/* RESPONSIVE MAKE HEAD GO SELF DESTRUCT RAAAAAAAAAAAAAAAAAAAAAAAAAAAAH */
/* Media query for small devices */
@media (max-width: 1040px) {
  .hero-content {
      padding: 30px; 
  }

  .hero-content h1 {
      font-size: 50px;
      max-width: 800px;
      margin-bottom: 10px;
      font-weight: 900;
      padding: 20px;
  }
}

/* Even smaller devices */
@media (max-width: 480px) {
  .hero-content {
      padding: 0px; 
  }

  .hero-content h1 {
      font-size: 50px; 
      padding: 0px
  }
}


/* Glassmorphism Navbar */
.nav-links {
    display: flex;
    align-items: center;
    background: rgba(70, 70, 70, 0.2);
    padding: 5px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between; 
    width: calc(100% - 400px);
    z-index: 2; 
    font-size: 20px; 
    transition: top 0.3s ease;
}
@media (max-width: 1040px) {
  .nav-links {
    width: calc(100% - 120px); 
  }
}

.hidden {
    top: -100px; 
}


.logo img {
  height: 40px;
}

.menu {
  display: flex;
  align-items: center;
}

.menu li {
  list-style: none;
  margin: 0 15px;
}

.menu li a {
  position: relative;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 0;
  text-decoration: none;
  font-size: 15px;
}

/* Contact Button */
button {
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 14px;
    border: none;
    background-color: #202020;
    color: #fff;
    cursor: pointer;
    box-shadow: 2px 2px 3px #000000b4;
  }
  
  .contact-button {
    position: relative;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    border-radius: 15px;
    transition: all 0.4s ease;
  }

@media (max-width: 720px) {
  
    .contact-button {
    position: absolute;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    border-radius: 15px;
    transition: all 0.4s ease;
  }
}
  
  .contact-button::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 0.9em;
    z-index: -10;
    filter: blur(0);
    transition: filter 0.4s ease;
  }
  
  .contact-button:hover::before {
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    filter: blur(1.2em);
  }
  .contact-button:active::before {
    filter: blur(0.2em);
  }

  
  
/* Media Query for Small Devices */
@media (max-width: 720px) {
  .nav-links {
    display: none; 
    position: absolute;
    top: 0;
    left: -100%; 
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease; 
    z-index: 10; 
  }

  .nav-links.active {
    display: flex; 
    left: 0; 
  }

  /* hamburger cheese burger big mac whooper */
  .hamburger {
    display: flex; 
  }
  
  
}

.sidebar {
    position: fixed;
    top: 0;
    left: -250px; 
    width: 180px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism effect */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    padding: 20px;
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0px 15px 15px 0px;
    font-size: 20px;
    font-weight: 400;

}

.sidebar .logo{
    font-size: 24px;
    margin-bottom: 20px;
}

.logo-sidebar {
  width: 50px;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
}

.sidebar nav ul li {
    margin: 35px 0;
}

.sidebar nav ul li a {
    text-decoration: none;
    color: #fff;
}


@media (max-width: 720px) {
  
.burger {
    position: fixed; 
    top: 50px; 
    right: 50px; 
    cursor: pointer;
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    width: 30px; 
    height: 25px; 
    z-index: 2000; 
}

.burger-line {
    background-color: white; 
    height: 1px; 
    width: 100%; 
    transition: background-color 0.3s ease; 
}

.burger-line:not(:last-child) {
    margin-bottom: 10px; 
}

/* hover effect */
.burger:hover .burger-line {
    background-color: #ccc; 
}
}


.overlay-sidebar {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 999; 
}

@media (max-width: 768px) {
    .burger {
        display: block; 
    }
}

/* Hover Animations */
.menu li a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
  border-radius: 12px;
  transition: all 0.4s ease;
}

.menu li a:hover:before {
  width: 100%;
}

.menu li.center a:before {
  left: 50%;
  transform: translateX(-50%);
}

.menu li.upward a:before {
  width: 100%; 
  bottom: -5px;
  opacity: 0;
}

.menu li.upward a:hover:before {
  bottom: 0px;
  opacity: 1;
}

.menu li.forward a:before {
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.menu li.forward a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
} 

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* About Me */
.about-section {

    padding: 100px 200px 100px 200px;
}

.heading-hello {
    color: #fff;
    font-weight: 100;
    font-size: 30px;
}

.about-description {
    color: #fff;
    font-size: 80px;
    font-weight: 900;
    transform: translateY(50px); /* Move it down slightly */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Smooth transition for opacity and position */
}

/* Media query for small devices */
@media (max-width: 1040px) {
    .about-section {
    
        padding: 70px;
    }
    .about-description {
        font-size: 50px; /* Smaller font size for small devices */
    }
}

.about-description.visible {
    opacity: 1; 
    transform: translateY(0); /* Move back to original position */
}

.about-inline-image {
    width: 100px; 
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    vertical-align: middle; 
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px;
    }
    .about-description {
        font-size: 40px; 
    }
}

/* what i do */
/*Section used for centering process*/
.what-i-do-text {
    color: #fff;
    font-weight: 100;
    font-size: 30px;
}


.what-i-do-accordion {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.container{
  width: 100%;
  padding-left: 200px;
  padding-right: 200px;
  padding-bottom: 70px;
}

@media (max-width: 1040px) {
    .container {
        width: 100%;
        padding-left: 65px;
        padding-right: 65px;
    
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    
    }
}
  
.accordion-item{
  border-radius: .4rem;
}

.accordion-item hr{
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.accordion-link{
  font-size: 1.6rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.accordion-link h3{
  font-weight:500;
  font-size: 60px;
}

@media (max-width: 1040px) {
  .accordion-link h3 {
  font-weight:500;
  font-size: 40px;
  }
}

.accordion-link i{
  color: linear-gradient(45deg, #7cb0c4, #007bff);
  padding: .5rem;
  
  
}

.accordion-link ul{
  display:flex;
  align-items: flex-end;
  list-style-type: none;
  margin-left: 25px;
}

.accordion-link li{
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 1px 5px;
}

.accordion-link div{
  display: flex;
}

.accordion-link .ion-md-arrow-down{
  display: none;
}

.answer{
  max-height: 0;
  overflow: hidden;
  position: relative;
  transition: max-height 650ms;
}


.answer-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.image-container {
    flex: 1;
    padding: 20px;
}

.image-container img {
    max-width: 50%;
    height: auto;
    border-radius: 8px 0 0 8px; /* Rounded corners on the left */
}

.text-container {
    flex: 1;
}

.text-container h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .answer-container {
        flex-direction: column; 
    }

    .image-container {
        padding: 10px; 
    }

    .text-container {
        padding: 10px; 
    }
    
    .text-container h1 {
        font-size: 20px; 
    }

    .text-container p {
        font-size: 14px; 
    }
}


/* Ensure the accordion link is styled appropriately */
.accordion-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    scroll-margin-top: 50px; /* Adjust this value as needed */
}
  
.answer p{
  color: #fff;
  font-size: 25px;
  padding: 2rem;
  
}

.accordion-item:target .answer{
  max-height: 20rem;
}

.accordion-item:target .accordion-link .ion-md-arrow-forward{
  display: none
}

.accordion-item:target .accordion-link .ion-md-arrow-down{
  display: block;
}


  /* Basic styling for text */
.shiny-text {
    font-size: 3rem; 
    font-weight: bold;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

/* Highlight Section */
.highlights-section {
  padding: 70px 200px 10px 200px; 
}



.highlight-item {
  margin-bottom: 50px; 
}

.highlight-text {
  color: #ffffff;
  margin-bottom: 50px; 
  width: 100%; 
}

.highlight-content {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
}

.highlight-heading {
  font-size: 40px; 
}

.highlight-description {
  font-size: 20px; 
  flex-grow: 1; 
  text-align: center; 
}

.highlight-subheading {
  font-size: 40px; 
  text-align: right; 
}

.highlight-video {
  width: 100%; 
  height: auto; 
}

@media (max-width: 1040px) {
  .highlight-description {
    display: none;
  }

  .highlight-heading {
    font-size: 40px;
  }

  .highlight-subheading {
    font-size: 40px;
  }

  .highlight-video {
    width: 100vw;
    height: auto;
    margin-left: -65px; 
    margin-right: -65px;
  }

  .highlights-section {
  padding: 100px 65px 10px 65px;
  overflow-x: hidden; 
}
}

@media (max-width: 480px) {
  .highlight-description {
    display: none;
  }

  .highlight-heading {
    font-size: 20px;
  }

  .highlight-subheading {
    font-size: 20px;
  }

  .highlight-video {
    width: 100vw; 
    height: auto; 
    margin-left: -17px; 
    margin-right: -17px;
  }

  .highlights-section {
  overflow-x: hidden; 
  padding: 70px 20px 10px 20px;
}
}

/* word JS animation (unused) */
.word {
    opacity: 0; 
    transition: opacity 0.5s ease; 
}
.word.visible {
    opacity: 1; 
}

/* Bento Box Section */
.bento-box-section {
  column-count: 2;
}

@media (max-width: 480px) {
    .bento-box-section {
    column-count: 1;
  }
}



/* Bento Box Styling */
/* sike its mansory muahahaha */
.bento-box {
  border-radius: 8px; 
  overflow: hidden; 
  display: flex;
  align-items: center;
  justify-content: stretch; 
  align-content: stretch;  
  padding-bottom: 10px;
  padding-top: 10px;
}

/* Bento Image Styling */
.bento-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.3s ease-in-out;
}

.bento-box:hover .bento-image {
  transform: scale(1.05); 
}

/* Bento Box Video Styling */
.bento-video {
  width: 100%; 
  height: auto; 
  border-radius: 8px; 
  cursor: pointer; 
  object-fit: cover; 
  transition: transform 0.3s ease-in-out; 
}

.bento-video:hover {
  transform: scale(1.05); 
}

/* Modal Overlay - Hidden by default */
.modal-overlay-video {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); 
  justify-content: center;
  align-items: center;
  z-index: 200; 
  transition: opacity 0.3s ease;
}

.modal-overlay-video.active {
  display: flex;
  opacity: 1;
}

/* Modal Content (Video) */
.modal-content-video {
  max-width: 80%;
  max-height: 80%;
  animation: fadeIn 0.3s ease; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; 
  border-radius: 10px; 
}

/* Ensure video fits within the modal container */
.modal-content-video video {
  width: 100%; 
  height: auto;
  max-width: 1200px; 
  max-height: 800px; 
}

/* Fade-in animation for modal */
@keyframes fadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* prevent controls from showing up */
.bento-video::-webkit-media-controls {
  display: none !important;
}

.bento-video::-moz-media-controls {
  display: none !important;
}

.bento-video::-ms-media-controls {
  display: none !important;
}

/* Close Button for Video Modal */
.modal-close-video {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 201;
}

/* Process Section Styling */
.process-section {
    display: flex;
    padding: 40px 200px 1px 200px;
}

.process-title {
    width: 50%;
    font-size: 80px;
    font-weight: bold;
    color: white;
}

.process-steps {
    width: 80%;
}

.step {
    margin-bottom: 80px;
    position: relative;
}

.heading {
    font-size: 40px;
    margin: 0;
    padding-left: 100px; /* Space for the number */
    padding-bottom: 10px;
    color: white;
}

.line-container {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding-left: 30px; /* Space for the number */
}

.step-number {
    font-size: 5rem;
    font-weight: bold;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 50%; 
    transform: translateY(-50%); /* Centers the number */
    color: white;
}

.line {
    flex-grow: 1;
    height: 2px;
    background-color: #fdfdfd;
    margin-left: 71px;
}

.sub-heading {
    font-size: 1rem;
    margin: 0;
    padding-left: 100px; /* Space for the number */
    color: white;
    padding-top: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .process-section {
        flex-direction: column;
        padding: 20px;
    }

    .process-title {
        width: 100%;
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: left;
        
    }

    .process-steps {
        width: 100%;
    }

    .step {
        margin-bottom: 15px;
    }

    .heading {
        font-size: 1.25rem;
        padding-left: 20px; /* Reduced padding */
    }

    .line-container {
        padding-left: 20px; /* Reduced padding */
    }

    .sub-heading {
        font-size: 0.9rem;
        padding-left: 20px; /* Reduced padding */
    }

    .step-number {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 1.2rem;
    }

    .heading {
        font-size: 1.1rem;
    }

    .sub-heading {
        font-size: 0.8rem;
    }

    .step-number {
        font-size: 0.8rem;
    }

    .line {
        height: 1.5px; /* Thinner line for smaller screens */
    }
}

:root {
  --page-text-color: #8e9196;
  --page-text-color-hover: rgba(255,255,255,1.0);
  --page-background-color: #202020;
  --tab-display: grid;
  --tab-background-color: rgba(255, 255, 255, 0.03);
}

.tab-title p {
  justify-content: center;
  text-align: left;
  background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
  -webkit-background-clip: text;
  padding: 1px 200px 1px 200px;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 80px;
}

@media (max-width: 1040px) {
  .tab-title p {
    padding: 1px 60px 1px 60px;
    font-size: 70px;
  }
}

@media (max-width: 720px) {
  .tab-title p {
    padding: 1px 20px 1px 20px;
    font-size: 40px;
    text-align: center;
  }
}

.tab-tab-container {
  padding: 1px 200px 50px 200px;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .tab-tab-container {
  padding-left: 0;
  padding-right: 0;
  }

  }

.tab-container {
  box-sizing: border-box;
}

/* Scoped to tab-container */
/* Tab Container */
.tab-container {
    display: grid;
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr); /* Change this from 4 to 3 columns */
    grid-template-rows: auto 1fr;
    border: solid rgba(255,255,255,0.03);
    border-radius: .5em;
    color: #ffffff;
}

/* Tab Control Styling */
.tab-container input {
  display: none;
}

.tab-container label {
  cursor: pointer;
  padding: 1em;
  text-align: center;
  transition: all 250ms;
  border-right: solid 2px var(--page-background-color);
  background-color: var(--tab-background-color);
}

.tab-container label:last-of-type {
  border: none;
}

.tab-container input:checked + label {
  color: var(--page-text-color-hover);
  background-color: rgba(255, 255, 255, 0.0);
}

/* Hover effect for labels */
.tab-container label:hover {
  color: var(--page-text-color-hover);
  background-color: rgba(255, 255, 255, 0.05);
}

/* When input is checked, apply styles to the corresponding label */
.tab-container input:checked + label {
  color: var(--page-text-color-hover);
  background-color: rgba(255, 255, 255, 0.0); 
}



/* Tab Content Styling */
.tab-container .tab-content {
  display: none;
  grid-column: 1 / -1; /* Full width */
}

.tab-container input#tabToggle01:checked ~ .tab-content:nth-of-type(1),
.tab-container input#tabToggle02:checked ~ .tab-content:nth-of-type(2),
.tab-container input#tabToggle03:checked ~ .tab-content:nth-of-type(3),
.tab-container input#tabToggle04:checked ~ .tab-content:nth-of-type(4) {
  display: block; /* WHAT IS HAPPENING */
}

/* Modal Overlay */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); 
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.modal-overlay.active {
  display: flex;
  
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  animation: fadeIn 0.3s ease; 
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 201;
}
.contact-title {
  padding: 1px 200px 10px 200px;
  color: #fff;
  justify-content: center;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.contact-title-hmu {
  padding: 1px 200px 10px 200px;
  background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  justify-content: center;
  text-align: left;
  margin-bottom: 50px;
  font-size: 70px;
}

@media (max-width: 1063px) {

  .contact-title {
    padding: 50px 50px 10px 50px;
  }

  .contact-title-hmu {
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 40px;
    text-align: center;
    padding: 1px 50px 1px 50px;
    margin-bottom: 10px;
  }

  .contact-title {
  padding: 1px 50px 10px 50px;
  color: #fff;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  }

}

.contact-section {
  padding: 20px;
  background-color: #f9f9f9;
  font-size: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px; 
  margin: 0 auto; 

}

.contact-left, .contact-right {
  flex: 1;
  min-width: 200px;

}

.contact-left h3, .contact-right h3 {
  margin-bottom: 10px;
  
}

.social-links {
  list-style: none;
  padding: 0;


}

.social-links li {
  margin: 5px 0;

}

.social-links a, .contact-right a {
  color: #0073e6;
  text-decoration: none;
  transition: color 0.3s ease;

}

.social-links a:hover, .contact-right a:hover {
  color: #005bb5;
}


@media (max-width: 768px) {
  .contact-container {
    flex-direction: column; 
    text-align: center;
  }
}

/* lodudu loading */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    transition: transform 1s ease-in-out; /* Smooth transition for sliding up */

}

.loading-text {
    position: absolute;
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 1; 
    opacity: 0.5; 
}

.loading-animation {
    z-index: 1; 
  width: 250px;
  height: 250px;
}

.slide-up {
    animation: slideUp 1s ease-in-out forwards; /* Increase duration for smoothness */
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}
.blurred-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    filter: blur(50px);
    z-index: -1; 
    left: -300px;
    margin-top: -100px;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 1px 200px 100px 200px; 
  gap: 20px;
  flex-wrap: wrap;
  background-color: #202020;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* Creates two equal columns */
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.social-item, .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: transform 0.3s ease;
  
}

.social-item i,
.contact-item i,
.social-item span,
.contact-item span {
  font-size: 40px;
  color: #fff;
  transition: color 0.3s ease; /* Smooth color transition */
}

/* Hover Effect */
.social-item:hover i,
.social-item:hover span,
.contact-item:hover i,
.contact-item:hover span {
  color: transparent;
  background: linear-gradient(45deg, #7cb0c4, #007bff);
  -webkit-background-clip: text;
  background-clip: text;
  transform: scale(1.1); /* Slightly larger on hover */
}

@media (max-width: 1063px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 1px 1px 1px 1px; /* Control the padding here */
  }

  .social-links,
  .contact-info {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
      gap: 10px;
  }

    
  .social-item i,
  .contact-item i,
  .social-item span,
  .contact-item span {
    font-size: 30px;
    color: #fff;
    transition: color 0.3s ease; /* Smooth color transition */
  }
}

/* 1441 lines of madness */
/* css is me pasasion */