/* Root Variables */
:root {
    --primary-color: #FFB400;
    --primary-dark: #e0a000;
    --background-dark: #111111;
    --background-medium: #1a1a1a;
    --background-light: #2a2a2a;
    --background-section: #000000;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --text-dark: #111111;
    --profile-background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);

}

/* Light Mode Variables */
[data-theme="light"] {
    --background-dark: #efefef;
    --background-medium: #f8f9fa;
    --background-light: #e9ecef;
    --background-section: #ffffff;
    --text-light: #1a1a1a;
    --text-muted: #6c757d;
    --text-dark: #000000;
    --profile-background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0) 100%);

}

/* Theme Toggle Button Styles */
.theme-toggle {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-light);
    z-index: 3;
}

.theme-toggle:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 1.2rem;
}


/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-section);
    color: var(--text-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.highlight {
    color: var(--primary-color); /* Gold/var(--primary-color) accent color */
}

/* Reset Bootstrap padding and margins */
.col-md-6 {
    padding: 0;
}

.row {
    margin: 0;
    padding: 0;
}

/* Main Container */
.main-container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Profile Section (Left Column) */
.profile-section {
    height: 100vh;
    position: relative;
    background-color: var(--background-section);
    display: flex;
    flex-direction: column;
}

.profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 2;
    background: var(--profile-background);
    text-align: center;
}

.profile-info .greeting {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.profile-info .name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.profile-image-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 30px;
}

/* Content Section (Right Column) */
.content-section {
    background-color: var(--background-section);
    position: relative;
    padding: 15px;
}

/* Four Boxes Layout */
.boxes-container {
    height: calc(100vh - 30px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
}

.content-box {
    background-color: var(--background-dark);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    border-radius: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.name-box {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    border-radius: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box:hover {
    background-color: var(--background-medium);
}

.box-content {
    text-align: center;
    width: 100%;
    padding: 1rem;
}

.box-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Intro Box Specific Styles */
#intro-box .greeting {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

#intro-box .name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

/* Tab Content Area */
.tab-content-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-section);
    padding: 30px;
    z-index: 100;
    display: none;
    overflow-y: auto;
}

.tab-content {
    display: none;
    padding: 30px;
    background-color: var(--background-dark);
    border-radius: 5px;
    position: relative;
    height: 100%;
    overflow-y: auto;
}

.tab-content.active {
    display: block;
}

.dynamic-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.dynamic-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Personal Info Section */
.personal-info h3, .skills-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.personal-info h3 i, .skills-section h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.info-item {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-label {
    font-weight: 600;
    margin-right: 5px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

/* Resume Tabs Section */
.resume-section {
    margin-top: 100px;
}

.resume-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resume-tab {
    padding: 15px;
    background-color: var(--background-medium);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.resume-tab.active {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.resume-tab i {
    margin-right: 10px;
}

.resume-content {
    display: none;
    padding: 20px;
    background-color: var(--background-medium);
    border-radius: 5px;
}

.resume-content.active {
    display: block;
}

.resume-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
    padding: 10px;
    background-color: var(--background-dark);
    border-radius: 5px;
}

.resume-header i {
    margin-right: 10px;
}

.experience-item, .education-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.experience-item h4, .education-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.company, .institution {
    color: var(--primary-color);
}

.date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.date i {
    margin-right: 5px;
}

.divider-line {
    height: 1px;
    background-color: #333;
    margin: 20px 0;
    position: relative;
}

.divider-line:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-download, .btn-blog {
    background-color: var(--primary-color);
    color: var(--background-dark);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-blog {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-download:hover, .btn-blog:hover {
    background-color: var(--text-light);
    color: var(--background-dark);
}

/* Skills Section */
.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.progress {
    height: 8px;
    background-color: #2A2A2A;
    border-radius: 4px;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 4px;
}

/* Services Section */
.services-grid {
    margin-top: 40px;
}

.service-card {
    background-color: var(--background-medium);
    border-radius: 5px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--background-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 28px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-header {
    text-align: center;
    margin-bottom: 30px;
}

.portfolio-filter ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.portfolio-filter li {
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.portfolio-filter li.active {
    color: var(--primary-color);
}

.portfolio-grid {
    margin-bottom: 30px;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 250px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.portfolio-overlay p {
    color: #fff;
    margin-bottom: 15px;
}

.btn-view {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--background-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Portfolio Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    max-width: 80%;
    max-height: 80vh;
    background-color: var(--background-medium);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #fff;
}

#modal-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 10px;
}

#modal-image {
    display: block;
    max-width: 100%;
    max-height: 60vh;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-left: 25px;
}

.form-control::placeholder{
  color: var(--primary-color); /* Replace with any color */

}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--background-medium);
    color: var(--text-light);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.form-control {
    background-color: var(--background-medium);
    border: none;
    color: var(--text-light);
    padding: 0.75rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.form-control:focus {
    box-shadow: none;
    background-color: var(--background-medium);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.btn-send {
    background-color: var(--primary-color);
    color: #1E1E1E;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-send:hover {
    background-color: var(--text-light);
    color: #1E1E1E;
}

/* Section Headers and Dividers */
.about-header, .portfolio-header, .contact-header, .services-header {
    margin-bottom: 30px;
    text-align: center;
}

.about-header h2, .portfolio-header h2, .contact-header h2, .services-header h2 {
    font-size: 3rem !important;  
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--text-light);
    position: relative;
    margin: 15px 0;
}

.highlight-box {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

/* Welcome Content */
.welcome-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.welcome-content h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.welcome-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Back Button */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color:rgba(0, 0, 0, 0);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 101;
}

.back-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .profile-section {
        min-height: 50vh;
        height: auto;
    }
    
    /* .profile-image-container {
        height: 50vh;
    } */
    
    .profile-image {
        height: 700px;
        padding: 15px;
    }
    
    .content-box {
        height: 180px;
    }
    
    .boxes-container {
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }
    
    .tab-content-area {
        padding: 15px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
    }
    
    .tab-content {
        padding: 20px;
        height: auto;
        min-height: 100%;
    }
    
    .resume-section .row {
        flex-direction: column;
    }
    
    .resume-tabs {
        margin-bottom: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
        text-align: center;
    }
    
    .resume-tab {
        flex: 0 0 auto;
        margin-right: 10px;
        white-space: nowrap;
    }
    
    .col-md-3, .col-md-9 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 767.98px) {
    .profile-info .name {
        font-size: 2rem;
    }
    
    .profile-info {
        padding: 20px 15px;
    }
    
    .content-box {
        height: 150px;
    }
    
    .about-header h2, .portfolio-header h2, .contact-header h2, .services-header h2 {
        font-size: 2.2rem !important;  
    }
    
    .portfolio-grid .col-md-4 {
        width: 100%;
    }
    
    .portfolio-card {
        margin-bottom: 15px;
    }
    
    .services-grid .col-md-4 {
        width: 100%;
    }
    
    .service-card {
        margin-bottom: 15px;
    }
    
    .box-content h2 {
        font-size: 1.4rem;
    }
    
    .back-btn {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 0.9rem;
    }
    
    .contact-form, .contact-info {
        padding: 15px;
    }
    
    .form-control {
        padding: 0.6rem;
    }
    
    .btn-send {
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .profile-section {
        min-height: 40vh;
    }
    
    .profile-image-container {
        height: 40vh;
    }
    
    .profile-info .name {
        font-size: 1.8rem;
    }
    
    .profile-info .animated-typing {
        font-size: 1.5rem;
    }
    
    .content-box {
        height: 120px;
    }
    
    .box-content h2 {
        font-size: 1.2rem;
    }
    
    .about-header h2, .portfolio-header h2, .contact-header h2, .services-header h2 {
        font-size: 1.8rem !important;  
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .resume-tab {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .resume-content {
        padding: 15px;
    }
}
 

.animated-typing{
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
}
  
  .cursor {
    display: inline-block;
    animation: blink 0.7s steps(1) infinite;
    color: var(--text-light);
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  

/* From Uiverse.io by RiccardoRapelli */ 
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch #input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2196f3;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 0;
    overflow: hidden;
  }
  
  .sun-moon {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: yellow;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  #input:checked + .slider {
    background-color: black;
  }
  
  #input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
  }
  
  #input:checked + .slider .sun-moon {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-color: white;
    -webkit-animation: rotate-center 0.6s ease-in-out both;
    animation: rotate-center 0.6s ease-in-out both;
  }
  
  .moon-dot {
    opacity: 0;
    transition: 0.4s;
    fill: gray;
  }
  
  #input:checked + .slider .sun-moon .moon-dot {
    opacity: 1;
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round .sun-moon {
    border-radius: 50%;
  }
  
  #moon-dot-1 {
    left: 10px;
    top: 3px;
    position: absolute;
    width: 6px;
    height: 6px;
    z-index: 4;
  }
  
  #moon-dot-2 {
    left: 2px;
    top: 10px;
    position: absolute;
    width: 10px;
    height: 10px;
    z-index: 4;
  }
  
  #moon-dot-3 {
    left: 16px;
    top: 18px;
    position: absolute;
    width: 3px;
    height: 3px;
    z-index: 4;
  }
  
  #light-ray-1 {
    left: -8px;
    top: -8px;
    position: absolute;
    width: 43px;
    height: 43px;
    z-index: -1;
    fill: white;
    opacity: 10%;
  }
  
  #light-ray-2 {
    left: -50%;
    top: -50%;
    position: absolute;
    width: 55px;
    height: 55px;
    z-index: -1;
    fill: white;
    opacity: 10%;
  }
  
  #light-ray-3 {
    left: -18px;
    top: -18px;
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: -1;
    fill: white;
    opacity: 10%;
  }
  
  .cloud-light {
    position: absolute;
    fill: #eee;
    animation-name: cloud-move;
    animation-duration: 6s;
    animation-iteration-count: infinite;
  }
  
  .cloud-dark {
    position: absolute;
    fill: #ccc;
    animation-name: cloud-move;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
  }
  
  #cloud-1 {
    left: 30px;
    top: 15px;
    width: 40px;
  }
  
  #cloud-2 {
    left: 44px;
    top: 10px;
    width: 20px;
  }
  
  #cloud-3 {
    left: 18px;
    top: 24px;
    width: 30px;
  }
  
  #cloud-4 {
    left: 36px;
    top: 18px;
    width: 40px;
  }
  
  #cloud-5 {
    left: 48px;
    top: 14px;
    width: 20px;
  }
  
  #cloud-6 {
    left: 22px;
    top: 26px;
    width: 30px;
  }
  
  @keyframes cloud-move {
    0% {
      transform: translateX(0px);
    }
  
    40% {
      transform: translateX(4px);
    }
  
    80% {
      transform: translateX(-4px);
    }
  
    100% {
      transform: translateX(0px);
    }
  }
  
  .stars {
    transform: translateY(-32px);
    opacity: 0;
    transition: 0.4s;
  }
  
  .star {
    fill: white;
    position: absolute;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    animation-name: star-twinkle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }
  
  #input:checked + .slider .stars {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  
  #star-1 {
    width: 20px;
    top: 2px;
    left: 3px;
    animation-delay: 0.3s;
  }
  
  #star-2 {
    width: 6px;
    top: 16px;
    left: 3px;
  }
  
  #star-3 {
    width: 12px;
    top: 20px;
    left: 10px;
    animation-delay: 0.6s;
  }
  
  #star-4 {
    width: 18px;
    top: 0px;
    left: 18px;
    animation-delay: 1.3s;
  }
  
  @keyframes star-twinkle {
    0% {
      transform: scale(1);
    }
  
    40% {
      transform: scale(1.2);
    }
  
    80% {
      transform: scale(0.8);
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  /* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: loader-rotate 1.2s linear infinite;
}

.loader-ring:nth-child(1) {
    border-top-color: var(--primary-color);
    animation-delay: 0s;
}

.loader-ring:nth-child(2) {
    border-right-color: var(--primary-color);
    animation-delay: -0.3s;
}

.loader-ring:nth-child(3) {
    border-bottom-color: var(--primary-color);
    animation-delay: -0.6s;
}

.loader-ring:nth-child(4) {
    border-left-color: var(--primary-color);
    animation-delay: -0.9s;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}