/* * File: style.css * Description: This file contains custom styles that complement the Tailwind CSS framework for the portfolio website. * It includes styles for SwiperJS pagination, custom scrollbar, header scroll effects, and other UI enhancements. */
/* General Body Styling */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url('../images/main_bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Hero Image Responsive Styles */
.hero-image-parallax {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.hero-image-parallax .relative {
    position: relative;
    z-index: 15;
    overflow: hidden;
}
.hero-image-parallax img {
    display: block;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s ease;
    max-width: 100%;
    max-height: 100%;
    
}

/* Shine Animation */

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1.1);
   }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
   }
}
.hero-image-parallax .relative:hover .glow-effect {
    animation: pulse-glow 2s ease-in-out infinite;
}
/* Content Fade In Animation */
@keyframes content-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
   }
    100% {
        opacity: 1;
        transform: translateY(0) scale(0.9);
   }
}
.hero-image-parallax .relative:hover .content-overlay {
    animation: content-fade-in 0.5s ease-out;
}
/* Responsive Image Container Heights */
@media (max-width: 640px) {
    .hero-image-parallax {
        min-height: 256px;
   }
}
@media (min-width: 641px) and (max-width: 768px) {
    .hero-image-parallax {
        min-height: 288px;
   }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-image-parallax {
        min-height: 320px;
   }
}
@media (min-width: 1025px) and (max-width: 1280px) {
    .hero-image-parallax {
        min-height: 300px;
   }
}
@media (min-width: 1281px) {
    .hero-image-parallax {
        min-height: 448px;
   }
}



#portfolio-works::before {
    content: '';
    position: absolute;
    left: -150px;
    top: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 122, 28, 0.2), transparent 0%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
   /* Makes the glow non-interactive */
}
/* Custom Text Selection Color */
::selection {
    background-color: #FFA500;
   /* brand-orange */
    color: #111111;
   /* primary-dark */
}
/* Custom Scrollbar for Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1E1E1E;
   /* secondary-dark */
}
::-webkit-scrollbar-thumb {
    background: #FFA500;
   /* brand-orange */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e69500;
}
/* Header style on scroll */
/* This class will be added via JavaScript when the user scrolls down */
.header-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background-color: rgba(17, 17, 17, 0.9);
   /* primary-dark with opacity */
}
/* Active Navigation Link Styles */
.nav-link-active {
    color: #FD6F00 !important;
   /* brand-orange */
    text-shadow: 0 0 8px rgba(253, 111, 0, 0.5);
    transform: scale(1.05);
}
.nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FD6F00, #FF8C00);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(253, 111, 0, 0.6);
}
/* Mobile Navigation Active Styles */
@media (max-width: 767px) {
    .nav-link-active {
        background: rgba(253, 111, 0, 0.1) !important;
        border-radius: 8px;
        transform: scale(1.02);
   }
    .nav-link-active::after {
        display: none;
       /* Hide underline on mobile */
   }
    .nav-link-active span {
        color: #FD6F00 !important;
        font-weight: 600;
   }
}
/* Contact Button Active State */
.nav-link-active[href="#contact"] {
    background: linear-gradient(135deg, #FD6F00, #FF8C00) !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(253, 111, 0, 0.6);
}
.nav-link-active[href="#contact"] span {
    color: white !important;
}
/* SwiperJS Pagination Customization */
/* This styles the dots at the bottom of the blog slider */
.swiper-pagination {
    position: relative !important;
    margin-top: 2rem;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #A0A0A0;
   /* text-gray */
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}
.swiper-pagination-bullet-active {
    background-color: #FD6F00;
   /* brand-orange */
    width: 30px;
    border-radius: 6px;
    opacity: 1;
}
/* Swiper container styling */
.mySwiper {
    padding: 0 0 50px 0;
}
.swiper-slide {
    height: auto;
}
/* Responsive adjustments for pagination */
@media (max-width: 640px) {
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
   }
    .swiper-pagination-bullet-active {
        width: 25px;
   }
}
/* Back to Top button visibility */
/* The 'visible' and 'opacity-100' classes will be toggled via JavaScript */
#to-top {
    transition: opacity 0.4s, visibility 0.4s;
}
#to-top.show {
    opacity: 1;
    visibility: visible;
}
/* Mobile menu styles */
#mobile-menu {
    transition: all 0.3s ease;
}
/* Hero section background enhancement */
.hero-bg {
    background: linear-gradient(135deg, #1A1A1A 0%, #4A2B00 100%);
}
/* Custom hover effects for cards */
.hover-lift {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}
/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
/* Custom focus styles */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FFA500;
}
/* Image hover effects */
.image-hover {
    transition: transform 0.3s ease;
}
.image-hover:hover {
    transform: scale(1.05);
}
/* Button hover effects */
.btn-hover {
    transition: all 0.3s ease;
}
.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}
/* Scroll Animation Classes */
.scroll-animate-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.scroll-animate-fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}
.scroll-animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}
.scroll-animate-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}
.scroll-animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}
.scroll-animate-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}
.scroll-animate-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}
.scroll-animate-left.animate {
    opacity: 0.2;
    transform: translateX(0);
}
.scroll-animate-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}
.scroll-animate-right.animate {
    opacity: 0.2;
    transform: translateX(0);
}
/* Work section clip-path fixes */
#portfolio .relative {
    overflow: visible;
}
/* Left triangle overlay positioning */
#portfolio .relative .relative .absolute {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    width: 50% !important;
}
/* Ensure content is visible within clip-path backgrounds */
.work-content {
    position: relative;
    z-index: 20;
    background: transparent;
    min-height: 300px;
}
/* Fix for clip-path content visibility */
#portfolio .container {
    position: relative;
    z-index: 30;
}
/* Ensure text is readable on orange background */
.work-content .text-white {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
/* Enhance contrast for better readability */
.work-content h3, .work-content h4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.work-content p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
/* Full height coverage for work section */
#portfolio .relative .relative {
    height: 100%;
    min-height: 850px;
}
/* Work Section Background Styles */
.work-left-triangle {
    width: 50%;
    height: 90%;
    background: linear-gradient(135deg, #F97316 0%, rgba(253, 111, 0, 1) 50%, #FF8C00 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.work-main-background {
    background: linear-gradient(0deg, #F97316 0%, rgba(253, 111, 0, 1) 50%, #FF8C00 100%);
    clip-path: polygon(10% 10%, 100% 5%, 100% 90%, 0 100%);
}
/* Loading Animation */
.loading-fade {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
   }
    to {
        opacity: 1;
        transform: translateY(0);
   }
}
/* Scroll Animations for Work Section Backgrounds */
/* Large Device Triangle Animation */
.work-left-triangle {
    opacity: 0;
    transform: translateX(-100px) scale(0.8);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-left-triangle.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}
/* Large Device Irregular Quadrilateral Animation */
.work-main-background {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-main-background.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* Small Device Polygon Animation */
@media (max-width: 1023px) {
    .work-main-background {
        opacity: 0;
        transform: translateX(-30px) scale(0.9);
        transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
   }
    .work-main-background.animate {
        opacity: 1;
        transform: translateX(0) scale(1);
   }
   /* Hide triangle on small devices */
    .work-left-triangle {
        display: none !important;
   }
}
/* Content Animation */
.work-content-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-content-section.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered Animation for Content Sections */
.work-content-section:nth-child(1) {
    transition-delay: 0.2s;
}
.work-content-section:nth-child(2) {
    transition-delay: 0.4s;
}
/* Work Items Animation */
.work-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-item.animate {
    opacity: 1;
    transform: translateX(0);
}
/* Staggered Animation for Work Items */
.work-item:nth-child(1) {
    transition-delay: 0.1s;
}
.work-item:nth-child(2) {
    transition-delay: 0.2s;
}
.work-item:nth-child(3) {
    transition-delay: 0.3s;
}
.work-item:nth-child(4) {
    transition-delay: 0.4s;
}
.work-item:nth-child(5) {
    transition-delay: 0.5s;
}
/* Icon Animation */
.work-icon-container {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-icon-container.animate {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
/* Section Title Animation */
.work-section-title {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-section-title.animate {
    opacity: 1;
    transform: translateX(0);
}
/* Responsive Animation Adjustments */
@media (max-width: 767px) {
    .work-left-triangle {
        display: none !important;
   }
    .work-main-background {
        transform: translateX(-20px) scale(0.95);
   }
    .work-content-section {
        transform: translateY(20px);
   }
    .work-item {
        transform: translateX(-15px);
   }
}
/* Work Content Section Hover Animations */
.work-content-section.animate {
    transition: all 0.3s ease;
}
/* Work Icon Container Hover */
.work-icon-container {
    transition: all 0.3s ease;
    cursor: pointer;
}
.work-icon-container:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
/* Work Icon Hover */
.work-icon {
    transition: all 0.3s ease;
}
.work-icon-container:hover .work-icon {
    transform: scale(1.1);
    color: #000000 !important;
}
/* Work Section Title Hover */
.work-section-title {
    transition: all 0.3s ease;
}
.work-icon-container:hover + .work-section-title {
    color: #000000 !important;
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* Work Item Hover Animations */
.work-item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    margin: -8px;
}
.work-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-radius: 8px;
}
.work-item:hover .work-item-title {
    color: #000000 !important;
    transform: translateX(5px);
    text-shadow: 0 1px 3px rgba(249, 115, 22, 0.4);
}
/* Work Item Title Hover */
.work-item-title {
    transition: all 0.3s ease;
}
/* Work Border Animation */
.work-border {
    transition: all 0.3s ease;
}
.work-item:hover .work-border {
    border-left-color: #000000 !important;
    border-left-width: 6px;
    padding-left: 12px;
}
/* Work Item Description Text Hover */
.work-item:hover .work-border p {
    color: #F0F0F0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
/* Work Item Strong Text Hover */
.work-item:hover .work-border p span {
    color: #000000 !important;
    font-weight: 600;
}
/* Work section cards uniform sizing */
.work-card {
    width: 100%;
    min-height: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}
/* Work Card Hover Animations */
.work-card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.work-card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}
.work-card-hover:hover::before {
    left: 100%;
}
.work-card-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
}
/* Work Icon Container Hover */
.work-card-hover:hover .work-icon-container {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #F97316, #FF8C00) !important;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}
/* Work Icon Hover */
.work-card-hover:hover .work-icon {
    transform: scale(1.1);
    color: white !important;
}
/* Work Title Hover */
.work-card-hover:hover .work-title {
    color: #F97316 !important;
    transform: translateY(-2px);
}
/* Work Description Hover */
.work-card-hover:hover .work-description {
    color: #E5E5E5 !important;
    transform: translateY(-2px);
}
/* Responsive Adjustments */
@media (max-width: 1023px) {
   /* Small and Medium devices (hide triangle, show only irregular quadrilateral) */
    .work-left-triangle {
        display: none !important;
   }
    .work-main-background {
        clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
       /* More rectangular shape for better content visibility */
   }
    .work-main-background.alternate-clip {
       /* For alternating if needed, but since one background, apply primary */
        clip-path: polygon(100% 5%, 0 0%, 0 95%, 100% 100%);
       /* Right to left irregular quadrilateral */
   }
   /* Adjust grid and padding for small/medium */
    .grid.px-40 {
        padding-left: 1rem;
        padding-right: 1rem;
   }
    .work-content-section {
        margin-bottom: 2rem;
        padding: 1.5rem;
   }
   /* Ensure content is properly positioned within the background */
    .work-content .grid {
        padding-left: 1rem;
        padding-right: 1rem;
   }
    .work-item:hover {
        transform: translateX(5px);
   }
    #portfolio .relative .relative {
        min-height: 600px;
   }
   /* Improve text visibility on medium devices */
}
@media (max-width: 767px) {
   /* Small devices specific */
    .work-main-background {
        clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
       /* More rectangular for better content visibility on small screens */
   }
    .work-content {
        padding: 2rem 0;
   }
    .work-item:hover {
        transform: translateX(3px);
   }
    .work-icon-container:hover {
        transform: scale(1.05);
   }
    #portfolio .relative .relative {
        min-height: 500px;
   }
   /* Ensure content is properly positioned within the background */
    .work-content .grid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
   }
    .work-content-section {
        padding: 1rem;
        margin-bottom: 1rem;
   }
}
@media (min-width: 1024px) {
   /* Large devices (keep triangle and original clip-path) */
    .work-left-triangle {
        display: block !important;
   }
    .work-main-background {
        clip-path: polygon(10% 10%, 100% 5%, 100% 90%, 0 100%);
   }
    .work-card {
        min-height: 300px;
        max-width: 380px;
   }
    .work-card-hover:hover {
        transform: translateY(-15px) scale(1.05);
   }
    #portfolio .relative .relative {
        min-height: 850px;
   }
}
@media (min-width: 640px) and (max-width: 1023px) {
   /* Medium devices specific */
    .work-card {
        min-height: 300px;
        max-width: 350px;
   }
    .work-card-hover:hover {
        transform: translateY(-12px) scale(1.03);
   }
}
@media (max-width: 639px) {
   /* Extra small adjustments */
    .work-card-hover:hover {
        transform: translateY(-8px) scale(1.01);
   }
    .work-card-hover:hover .work-icon-container {
        transform: scale(1.05) rotate(3deg);
   }
}
/* Blog Section Styles */
#blog {
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
}
#blog .container {
    overflow: hidden;
    position: relative;
}
#blog .max-w-5xl {
    overflow: hidden;
    position: relative;
}
/* Blog Gallery Swiper Styles */
.blogGallerySwiper {
    padding: 0 0 60px 0;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.blogGallerySwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    padding: 0 10px;
}
.blogGallerySwiper .swiper-wrapper {
    align-items: stretch;
}
.gallery-card {
    width: 100%;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    background: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}
.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(253, 111, 0, 0.2);
    border-color: rgba(253, 111, 0, 0.3);
}
.gallery-card img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}
.gallery-card:hover img {
    filter: brightness(1);
}
/* Blog Gallery Navigation Buttons - Removed as requested */
/* Blog Gallery Pagination */
.blog-gallery-pagination {
    position: relative !important;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.blog-gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(160, 160, 160, 0.4);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.blog-gallery-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #FD6F00, #FF8C00);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-gallery-pagination .swiper-pagination-bullet-active {
    background-color: transparent;
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(253, 111, 0, 0.6);
}
.blog-gallery-pagination .swiper-pagination-bullet-active::before {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px rgba(253, 111, 0, 0.8);
}
.blog-gallery-pagination .swiper-pagination-bullet:hover {
    opacity: 0.8;
    transform: scale(1.1);
    background-color: rgba(253, 111, 0, 0.3);
}
.blog-gallery-pagination .swiper-pagination-bullet:hover::before {
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #FD6F00, #FF8C00);
}
/* Dynamic bullets animation */
.blog-gallery-pagination .swiper-pagination-bullet-active-main {
    background: linear-gradient(135deg, #FD6F00, #FF8C00);
    box-shadow: 0 0 25px rgba(253, 111, 0, 0.7);
}
.blog-gallery-pagination .swiper-pagination-bullet-active-prev, .blog-gallery-pagination .swiper-pagination-bullet-active-next {
    background-color: rgba(253, 111, 0, 0.4);
    transform: scale(0.8);
}
/* Gallery Card Overlay Effects */
.gallery-card .absolute {
    transition: all 0.3s ease;
}
.gallery-card:hover .absolute {
    backdrop-filter: blur(2px);
}
/* Responsive Gallery Styles */
@media (max-width: 1024px) {
    .blogGallerySwiper {
        padding: 0 0 50px 0;
        overflow: hidden;
   }
   /* Navigation buttons removed */
    .blogGallerySwiper .swiper-slide {
        padding: 0 8px;
   }
}
@media (max-width: 768px) {
    .blogGallerySwiper {
        padding: 0 0 40px 0;
        overflow: hidden;
   }
   /* Navigation buttons removed */
    .gallery-card:hover {
        transform: translateY(-4px) scale(1.01);
   }
    .blogGallerySwiper .swiper-slide {
        padding: 0 5px;
   }
}
@media (max-width: 640px) {
    .blogGallerySwiper {
        overflow: hidden;
   }
    .blog-gallery-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
   }
    .blog-gallery-pagination .swiper-pagination-bullet-active {
        width: 25px;
   }
    .gallery-card {
        border-radius: 8px;
   }
    .blogGallerySwiper .swiper-slide {
        padding: 0 3px;
   }
}
/* Gallery Card Loading Animation */
.gallery-card {
    opacity: 0;
    transform: translateY(30px);
    animation: galleryCardFadeIn 0.6s ease-out forwards;
}
.gallery-card:nth-child(1) {
    animation-delay: 0.1s;
}
.gallery-card:nth-child(2) {
    animation-delay: 0.2s;
}
.gallery-card:nth-child(3) {
    animation-delay: 0.3s;
}
.gallery-card:nth-child(4) {
    animation-delay: 0.4s;
}
.gallery-card:nth-child(5) {
    animation-delay: 0.5s;
}
.gallery-card:nth-child(6) {
    animation-delay: 0.6s;
}
.gallery-card:nth-child(7) {
    animation-delay: 0.7s;
}
.gallery-card:nth-child(8) {
    animation-delay: 0.8s;
}
.gallery-card:nth-child(9) {
    animation-delay: 0.9s;
}
@keyframes galleryCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
   }
    to {
        opacity: 1;
        transform: translateY(0);
   }
}
/* Gallery Card Hover Effects Enhancement */
.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 111, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}
.gallery-card:hover::before {
    left: 100%;
}
/* Gallery Image Overlay Text Enhancement */
.gallery-card .absolute.bottom-0.left-0.right-0 h3 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.gallery-card .absolute.bottom-0.left-0.right-0 p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
/* Image Modal Styles */
#imageModal {
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#imageModal.show {
    opacity: 1;
}
#imageModal .bg-white {
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#imageModal.show .bg-white {
    transform: scale(1);
}
#imageModal img {
    transition: all 0.3s ease;
}
#imageModal button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#imageModal button:hover {
    transform: scale(1.05);
}
/* Modal responsive adjustments */
@media (max-width: 768px) {
    #imageModal .max-w-4xl {
        max-width: 95vw;
   }
    #imageModal .p-4 {
        padding: 1rem;
   }
    #imageModal .p-6 {
        padding: 1rem;
   }
    #imageModal h3 {
        font-size: 1.5rem;
   }
    #imageModal p {
        font-size: 1rem;
   }
    .blog-gallery-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
   }
    .blog-gallery-pagination {
        gap: 8px;
   }
}
@media (max-width: 640px) {
    .blog-gallery-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
   }
    .blog-gallery-pagination {
        gap: 6px;
   }
}
/* Landscape Swiper Styles */
.landscapeSwiper {
    padding: 0 0 60px 0;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.landscapeSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    padding: 0 10px;
}
.landscapeSwiper .swiper-wrapper {
    align-items: stretch;
}
.landscape-card {
    width: 100%;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    background: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}
.landscape-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(253, 111, 0, 0.2);
    border-color: rgba(253, 111, 0, 0.3);
}
.landscape-card img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}
.landscape-card:hover img {
    filter: brightness(1);
}
/* Landscape Pagination */
.landscape-pagination {
    position: relative !important;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.landscape-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(160, 160, 160, 0.4);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.landscape-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #FD6F00, #FF8C00);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.landscape-pagination .swiper-pagination-bullet-active {
    background-color: transparent;
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(253, 111, 0, 0.6);
}
.landscape-pagination .swiper-pagination-bullet-active::before {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px rgba(253, 111, 0, 0.8);
}
.landscape-pagination .swiper-pagination-bullet:hover {
    opacity: 0.8;
    transform: scale(1.1);
    background-color: rgba(253, 111, 0, 0.3);
}
.landscape-pagination .swiper-pagination-bullet:hover::before {
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #FD6F00, #FF8C00);
}
/* Landscape Card Overlay Effects */
.landscape-card .absolute {
    transition: all 0.3s ease;
}
.landscape-card:hover .absolute {
    backdrop-filter: blur(2px);
}
/* Landscape Card Hover Effects Enhancement */
.landscape-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 111, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}
.landscape-card:hover::before {
    left: 100%;
}
/* Landscape Image Overlay Text Enhancement */
.landscape-card .absolute.bottom-0.left-0.right-0 h4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.landscape-card .absolute.bottom-0.left-0.right-0 p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
/* Responsive Landscape Styles */
@media (max-width: 1024px) {
    .landscapeSwiper {
        padding: 0 0 50px 0;
        overflow: hidden;
   }
    .landscapeSwiper .swiper-slide {
        padding: 0 8px;
   }
}
@media (max-width: 768px) {
    .landscapeSwiper {
        padding: 0 0 40px 0;
        overflow: hidden;
   }
    .landscape-card:hover {
        transform: translateY(-4px) scale(1.01);
   }
    .landscapeSwiper .swiper-slide {
        padding: 0 5px;
   }
}
@media (max-width: 640px) {
    .landscapeSwiper {
        overflow: hidden;
   }
    .landscape-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
   }
    .landscape-pagination {
        gap: 6px;
   }
    .landscape-card {
        border-radius: 8px;
   }
}
/* Blog Swiper Styles */
.blogSwiper {
    padding: 0 0 50px 0;
}
.blogSwiper .swiper-slide {
    height: auto;
}
/* Blog image hover effects */
#blog .group:hover img {
    transform: scale(1.1);
}
/* Blog pagination styles */
.blog-page-btn {
    transition: all 0.3s ease;
    cursor: pointer;
}
.blog-page-btn:hover {
    transform: translateY(-2px);
}
.blog-page-btn.active {
    background-color: #FD6F00 !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}
/* Reset non-active buttons */
.blog-page-btn:not(.active) {
    background-color: transparent !important;
    color: #9CA3AF !important;
    transform: scale(1);
    box-shadow: none;
}
.blog-page-btn:not(.active):hover {
    color: white !important;
}
/* Blog Swiper Pagination */
.blogSwiper .swiper-pagination {
    position: relative !important;
    margin-top: 1rem;
}
.blogSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #A0A0A0;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}
.blogSwiper .swiper-pagination-bullet-active {
    background-color: #FD6F00;
    width: 30px;
    border-radius: 6px;
    opacity: 1;
}
/* Blog section responsive adjustments */
@media (max-width: 640px) {
    #blog .grid {
        gap: 1rem;
   }
    #blog nav {
        flex-wrap: wrap;
        gap: 0.5rem;
   }
    .blogSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
   }
    .blogSwiper .swiper-pagination-bullet-active {
        width: 25px;
   }
}
/* Home Section Animations */
/* Background floating animation */
@keyframes bgFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
   }
    50% {
        transform: translateY(-20px) rotate(1deg);
   }
}
.animate-bg-float {
    animation: bgFloat 20s ease-in-out infinite;
}
/* Floating particles animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
   }
    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.6;
   }
    50% {
        transform: translateY(-60px) translateX(-5px);
        opacity: 0.8;
   }
    75% {
        transform: translateY(-30px) translateX(-10px);
        opacity: 0.6;
   }
}
@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.2;
   }
    25% {
        transform: translateY(40px) translateX(-15px);
        opacity: 0.5;
   }
    50% {
        transform: translateY(80px) translateX(10px);
        opacity: 0.7;
   }
    75% {
        transform: translateY(40px) translateX(15px);
        opacity: 0.5;
   }
}
/* Particle styles */
.particle {
    position: absolute;
    background: linear-gradient(45deg, #FD6F00, #FF8C00);
    border-radius: 50%;
    pointer-events: none;
}
.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float 15s ease-in-out infinite;
}
.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation: floatReverse 18s ease-in-out infinite;
}
.particle-3 {
    width: 6px;
    height: 6px;
    top: 80%;
    left: 20%;
    animation: float 12s ease-in-out infinite;
}
.particle-4 {
    width: 10px;
    height: 10px;
    top: 30%;
    left: 70%;
    animation: floatReverse 20s ease-in-out infinite;
}
.particle-5 {
    width: 14px;
    height: 14px;
    top: 70%;
    left: 30%;
    animation: float 16s ease-in-out infinite;
}
.particle-6 {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 90%;
    animation: floatReverse 14s ease-in-out infinite;
}
/* Counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
   }
    to {
        opacity: 1;
        transform: translateY(0);
   }
}
.counter {
    animation: countUp 0.8s ease-out forwards;
}
/* Statistics container animation */
.statistics-container {
    animation: fadeInUp 1s ease-out 0.5s both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
   }
    to {
        opacity: 1;
        transform: translateY(0);
   }
}
/* Home Section Text Animations */
@keyframes textSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
   }
    to {
        opacity: 1;
        transform: translateY(0);
   }
}
.animate-text-slide-up {
    opacity: 0;
    animation: textSlideUp 0.8s ease-out forwards;
}
/* Home Section Image Animations */
@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
   }
    50% {
        transform: translateY(-15px);
   }
}
@keyframes imageScale {
    0%, 100% {
        transform: scale(0.98);
   }
    50% {
        transform: scale(1.01);
   }
}
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
   }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
   }
}
.animate-image-float {
    animation: imageFloat 6s ease-in-out infinite;
}
.animate-image-scale {
    animation: imageScale 4s ease-in-out infinite;
}
.animate-glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}
/* Social Icons Animation */
@keyframes socialIconFloat {
    0%, 100% {
        transform: translateY(0px);
   }
    50% {
        transform: translateY(-5px);
   }
}
.social-icon {
    animation: socialIconFloat 2s ease-in-out infinite;
}
.social-icon:nth-child(1) {
    animation-delay: 0.1s;
}
.social-icon:nth-child(2) {
    animation-delay: 0.2s;
}
.social-icon:nth-child(3) {
    animation-delay: 0.3s;
}
.social-icon:nth-child(4) {
    animation-delay: 0.4s;
}
/* Hero Section Mouse Move Animations */
.hero-mouse-container {
    position: relative;
    overflow: hidden;
}
.hero-bg-parallax {
    transform: translateZ(0);
    will-change: transform;
}
.hero-image-parallax {
    transform: translateZ(0);
    will-change: transform;
}
.hero-particles-parallax {
    transform: translateZ(0);
    will-change: transform;
}
.hero-text-parallax {
    transform: translateZ(0);
    will-change: transform;
}
/* Cursor Trail Effect */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 111, 0, 0.8) 0%, rgba(249, 115, 22, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) translateZ(0);
    will-change: transform, opacity;
    filter: blur(1px);
}
.cursor-trail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 111, 0, 0.3) 0%, rgba(249, 115, 22, 0.1) 50%, transparent 100%);
    transform: translate(-50%, -50%);
    animation: cursorPulse 2s ease-in-out infinite;
}
.cursor-trail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 111, 0, 0.2) 0%, rgba(249, 115, 22, 0.05) 50%, transparent 100%);
    transform: translate(-50%, -50%);
    animation: cursorPulse 2s ease-in-out infinite 0.5s;
}
@keyframes cursorPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
   }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
   }
}
/* Mouse Move Glow Effect */
.hero-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(253, 111, 0, 0.1) 0%, rgba(249, 115, 22, 0.05) 30%, transparent 70%);
    pointer-events: none;
    transition: all 0.3s ease-out;
    z-index: 1;
}
/* Interactive Text Hover Effects */
.hero-text-interactive {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.hero-text-interactive:hover {
    transform: translateY(-5px) scale(1.02);
    text-shadow: 0 10px 20px rgba(253, 111, 0, 0.3);
}
/* Floating Elements Mouse Follow */
.particle-mouse-follow {
    transform: translateZ(0);
    will-change: transform;
}
/* Social Icons Mouse Interaction */
.social-icon-interactive {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.social-icon-interactive:hover {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(253, 111, 0, 0.4);
}
/* Statistics Mouse Interaction */
.statistics-interactive {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.statistics-interactive:hover {
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 5px 15px rgba(253, 111, 0, 0.5);
}
/* Button Mouse Interaction */
.btn-interactive {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.btn-interactive:hover::before {
    left: 100%;
}
.btn-interactive:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(253, 111, 0, 0.4);
}
/* Performance optimizations */
.hero-mouse-container * {
    backface-visibility: hidden;
    perspective: 1000px;
}
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-parallax, .hero-image-parallax, .hero-particles-parallax, .hero-text-parallax, .particle-mouse-follow {
        transform: none !important;
   }
    .cursor-trail {
        display: none;
   }
}
/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .animate-image-float {
        animation-duration: 8s;
   }
    .animate-image-scale {
        animation-duration: 6s;
   }
    .animate-glow-pulse {
        animation-duration: 4s;
   }
   /* Disable mouse effects on mobile for performance */
    .hero-bg-parallax, .hero-image-parallax, .hero-particles-parallax, .hero-text-parallax {
        transform: none !important;
   }
    .cursor-trail {
        display: none;
   }
    .particle-mouse-follow {
        transform: none !important;
   }
}
/* About Section Animations */
@keyframes imageSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
   }
    to {
        opacity: 1;
        transform: translateX(0);
   }
}
@keyframes imageRotate {
    0%, 100% {
        transform: rotate(0deg);
   }
    50% {
        transform: rotate(5deg);
   }
}
@keyframes contentSlideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
   }
    to {
        opacity: 1;
        transform: translateX(0);
   }
}
@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
   }
    to {
        opacity: 1;
        transform: translateY(0);
   }
}
@keyframes infoItemSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
   }
    to {
        opacity: 1;
        transform: translateX(0);
   }
}
@keyframes iconBounce {
    0%, 100% {
        transform: translateX(0);
   }
    50% {
        transform: translateX(5px);
   }
}
.animate-image-slide-left {
    opacity: 0;
    animation: imageSlideLeft 1s ease-out forwards;
}
.animate-image-rotate {
    animation: imageRotate 8s ease-in-out infinite;
}
.animate-content-slide-right {
    opacity: 0;
    animation: contentSlideRight 1s ease-out forwards;
}
.animate-text-fade-in {
    opacity: 0;
    animation: textFadeIn 0.8s ease-out forwards;
}
.animate-info-item {
    opacity: 0;
    animation: infoItemSlide 0.6s ease-out forwards;
}
.animate-icon-bounce {
    animation: iconBounce 2s ease-in-out infinite;
}
/* About section responsive adjustments */
@media (max-width: 768px) {
    .animate-image-slide-left {
        animation-duration: 1.2s;
   }
    .animate-content-slide-right {
        animation-duration: 1.2s;
   }
    .animate-image-rotate {
        animation-duration: 10s;
   }
    .animate-icon-bounce {
        animation-duration: 2.5s;
   }
}
@media (max-width: 640px) {
    .animate-image-slide-left {
        animation-duration: 1.4s;
   }
    .animate-content-slide-right {
        animation-duration: 1.4s;
   }
    .animate-info-item {
        animation-duration: 0.8s;
   }
}
/* ======================================== ADVANCED LOADING ANIMATION STYLES ======================================== */
/* Loading Screen Base Styles */
#loading-screen {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
/* Animated Background Shapes */
.loading-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(253, 111, 0, 0.1), rgba(255, 107, 53, 0.05));
    animation: loading-bg-float 8s ease-in-out infinite;
}
.loading-bg-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.loading-bg-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}
.loading-bg-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}
/* Logo Animation */
@keyframes loading-logo {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0;
   }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
   }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
   }
}
.animate-loading-logo {
    animation: loading-logo 2s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}
/* Loading Text Animation */
@keyframes loading-text {
    0% {
        transform: scale(0);
        opacity: 0;
   }
    50% {
        transform: scale(1.2);
        opacity: 1;
   }
    100% {
        transform: scale(1);
        opacity: 1;
   }
}
.animate-loading-text {
    animation: loading-text 1s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}
/* Title Animation */
@keyframes loading-title {
    0% {
        transform: translateY(30px);
        opacity: 0;
   }
    100% {
        transform: translateY(0);
        opacity: 1;
   }
}
.animate-loading-title {
    animation: loading-title 1s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
}
/* Subtitle Animation */
@keyframes loading-subtitle {
    0% {
        transform: translateY(20px);
        opacity: 0;
   }
    100% {
        transform: translateY(0);
        opacity: 1;
   }
}
.animate-loading-subtitle {
    animation: loading-subtitle 1s ease-out forwards;
    animation-delay: 1.4s;
    opacity: 0;
}
/* Loading Dots Animation */
@keyframes loading-dot {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
   }
    40% {
        transform: scale(1.2);
        opacity: 1;
   }
}
.animate-loading-dot {
    animation: loading-dot 1.4s ease-in-out infinite;
}
/* Status Text Animation */
@keyframes loading-status {
    0% {
        opacity: 0.5;
   }
    50% {
        opacity: 1;
   }
    100% {
        opacity: 0.5;
   }
}
.animate-loading-status {
    animation: loading-status 2s ease-in-out infinite;
}
/* Background Shapes Float Animation */
@keyframes loading-bg-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
   }
    33% {
        transform: translateY(-20px) rotate(120deg);
   }
    66% {
        transform: translateY(10px) rotate(240deg);
   }
}
/* Floating Particles */
.loading-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #FF6B35, #FD6F00);
    border-radius: 50%;
    animation: loading-particle-float 6s ease-in-out infinite;
}
.loading-particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}
.loading-particle-2 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}
.loading-particle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}
.loading-particle-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}
.loading-particle-5 {
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}
.loading-particle-6 {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}
@keyframes loading-particle-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
   }
    25% {
        transform: translateY(-30px) translateX(15px);
        opacity: 1;
   }
    50% {
        transform: translateY(-15px) translateX(-10px);
        opacity: 0.7;
   }
    75% {
        transform: translateY(-25px) translateX(20px);
        opacity: 0.9;
   }
}
/* Loading Complete Animation */
@keyframes loading-complete {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
   }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
   }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
   }
}
.animate-loading-complete {
    animation: loading-complete 1s ease-out forwards;
}
/* Welcome Text Animations */
@keyframes loading-welcome-text {
    0% {
        transform: translateY(20px);
        opacity: 0;
   }
    100% {
        transform: translateY(0);
        opacity: 1;
   }
}
.animate-loading-welcome-text {
    animation: loading-welcome-text 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}
@keyframes loading-welcome-subtitle {
    0% {
        transform: translateY(15px);
        opacity: 0;
   }
    100% {
        transform: translateY(0);
        opacity: 0.9;
   }
}
.animate-loading-welcome-subtitle {
    animation: loading-welcome-subtitle 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}
/* Loading Complete Particles */
.loading-complete-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: loading-complete-particle-float 3s ease-in-out infinite;
}
.loading-complete-particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}
.loading-complete-particle-2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}
.loading-complete-particle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}
.loading-complete-particle-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}
@keyframes loading-complete-particle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
   }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
   }
}
/* Progress Bar Glow Effect */
#loading-progress {
    box-shadow: 0 0 20px rgba(253, 111, 0, 0.5);
    position: relative;
    overflow: hidden;
}
#loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading-progress-shine 2s ease-in-out infinite;
}
@keyframes loading-progress-shine {
    0% {
        left: -100%;
   }
    100% {
        left: 100%;
   }
}
/* Responsive Loading Styles */
@media (max-width: 640px) {
    .loading-bg-shape-1 {
        width: 120px;
        height: 120px;
   }
    .loading-bg-shape-2 {
        width: 100px;
        height: 100px;
   }
    .loading-bg-shape-3 {
        width: 80px;
        height: 80px;
   }
    .loading-particle {
        width: 3px;
        height: 3px;
   }
   /* Mobile Loading Complete Overlay */
    .loading-complete-particle {
        width: 4px;
        height: 4px;
   }
}
/* Tablet Loading Complete Overlay */
@media (min-width: 641px) and (max-width: 1024px) {
    .loading-complete-particle {
        width: 5px;
        height: 5px;
   }
}
/* Large Desktop Loading Complete Overlay */
@media (min-width: 1025px) {
    .loading-complete-particle {
        width: 6px;
        height: 6px;
   }
}
/* Loading Screen Exit Animation */
.loading-screen-exit {
    animation: loading-exit 1s ease-in-out forwards;
}
@keyframes loading-exit {
    0% {
        opacity: 1;
        transform: scale(1);
   }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
   }
    100% {
        opacity: 0;
        transform: scale(1.1);
        visibility: hidden;
   }
}
