@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins';
    scroll-behavior: smooth;
}

:root{
    --prime-color: #A234FD;
    --secondary-color: #5D00F7;
    --third-color: #FE7524;
    --bg-color: #241B38;
    --text-color: #07000E;
    --light-text: #716f73;
    --black-color: #000;
    --white-color: #fff;
    --prim-icon-gradient: linear-gradient(50deg, #a234fd 0%, #ff31ab 49%, #ff6f05 100%);
    --prim-text-gradient: linear-gradient(90deg, #7512a2 0%, #ff31ab 48.53%, #ff6f05 100%);
    --nav-menu-gradient: linear-gradient(180deg, #fe7524 0%, rgba(254, 117, 36, 0) 80%);
    --nav-gradient: linear-gradient(90deg, #a234fd 0%, #ff31ab 2%, #ff6f05 100%);
    --service-gradient: linear-gradient(-90deg, #a234fd 0%, rgba(162, 52, 253, 0) 100%);
    --service-gradient-mask: linear-gradient(#fff 0 0) content-box, (#fff 0 0);

    --kaushan-font: "Dancing Script", cursive;
    --DM-sans-font: "DM Sans", sans-serif;

    --transition-regular:.3s;
    --transition-slow:.6s;
}

body{
    overflow-x: hidden;
}
img{
    width: 100%;
    height: 100%;
}
section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 12%;
}
.cursor {
    width: 25px;
    height: 25px;
    background-color: #ff9900; /* bright orange */
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 15px #ffaa33, 0 0 30px #ffaa33;
  }
  /* Preloader fullscreen
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .loader {
    text-align: center;
    color: #ff9900;
    font-family: 'Orbitron', sans-serif; 
  }
  
  .loader .ring {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 10px;
    border: 3px solid transparent;
    border-top: 3px solid #ff9900;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  .loader .ring:nth-child(2) {
    animation-delay: 0.2s;
  }
  .loader .ring:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .loader p {
    margin-top: 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #ffaa33;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
   */
   #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    flex-direction: column;
  }
  
  #preloader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  #skipBtn {
    position: absolute;
    bottom: 50px;
    right: 50px;
    padding: 12px 28px;
    font-size: 16px;
    font-family: var(--DM-sans-font);
    font-weight: 600;
    background: var(--prim-icon-gradient);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition-regular);
    box-shadow: 0 0 10px rgba(255, 111, 5, 0.4), 0 4px 20px rgba(162, 52, 253, 0.3);
  }
  
  #skipBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 111, 5, 0.5), 0 6px 30px rgba(162, 52, 253, 0.4);
    background: var(--nav-gradient);
  }
  
  
/* HEADER */
header{
    width: 100%;
    height: 100vh;
    background-image: url(/lovelace/image/hero-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
nav{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}
nav:after{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 88%;
    height: 100px;
    background-color: var(--black-color);
    z-index: -1;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
nav:before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 88.1%;
    height: 102px;
    background-image: var(--nav-gradient);
    z-index: -1;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.bars{
    display: none;
}
.nav-left{
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5%;
    margin-top: 25px;
}
.logo a{
    font-size: 2.5rem;
    font-family: var(--kaushan-font);
    color: var(--white-color);
}
.logo a span{
    font-family: var(--kaushan-font);
    color: var(--prime-color);
}
.menu{
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 10%;
    border-radius: 50px;
    background-image: var(--nav-gradient);
    position: relative;
}
.menu:after{
    content: '';
    position: absolute;
    top: 0;
    left: 3px;
    width: 105%;
    height: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background-color: var(--bg-color);
}
.menu li a{
    color: var(--white-color);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 2px;
    font-family: var(--DM-sans-font);
    transition: var(--transition-regular);
    position: relative;
    z-index: 1;
}
.menu li a:after{
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    transform: translateX(-50%);
    width: 5px;
    height: 0;
    background-image: var(--nav-menu-gradient);
    z-index: -1;
    transition: var(--transition-regular);
}
.menu li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50px;
    transform: translateX(-50%) rotate(180deg);
    width: 5px;
    height: 0;
    background-image: var(--nav-menu-gradient);
    z-index: -1;
    transition: var(--transition-regular);
}
.menu li:hover a{
    color: var(--third-color);
}
.menu li:hover a:after,
.menu li:hover a:before{
    height: 40px;
}
.nav-right {
    width: 45%; /* Or as per your layout */
    height: 67px;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    padding-left: 5%;
    padding-right: 2%;
    position: relative;
    color: var(--white-color);
    z-index: 1;
    background-color: transparent; /* Remove background color */
}

.nav-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0; /* Align to the left */
    width: 70%; /* Adjust the width so the gradient covers just the left part */
    height: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    /* background: linear-gradient(to right, var(--prime-color) 70%, rgba(2, 5, 34, 0) 100%); */
    z-index: -1;
    background-color: var(--black-color)
}
.nav-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px; /* Try -40 to -60px depending on spacing */
    width: 30px;
    height: 100%;
    background-image: var(--nav-gradient); /* Ensure this is defined */
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: -1;
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--prime-color);
    width: 160px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-regular);
    cursor: pointer !important;
}

button{
    background-color: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-color);
    cursor: pointer;
}
.btn i{
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: var(--white-color);
    background-color: var(--prime-color);
    background-image: var(--prim-icon-gradient);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 4px solid var(--black-color);
    transition: var(--transition-regular);
}
nav .nav-right .btn i{
    background-color: var(--prime-color) !important;
    background-image: none;
}
nav .nav-right.btn{
    background-color: var(--white-color);
}
nav .nav-right .btn button{
    color: var(--text-color);
}
.btn:hover i{
    transform: translate(-50% , -50%) rotate(-120deg);
}
.btn:hover{
    transform: scale(1.05) !important;
}
.nav-social-icon{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 2%;
}
.contact-hover-wrapper {
    position: relative;
}

.contact-hover-wrapper .nav-social-icon {
    display: flex;
    gap: 12px;
    position: absolute;
    top: 0;
    right: -220px; /* Adjust this based on how far right you want it */
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease-in-out;
    background-color: #020522;
    padding: 8px 14px;
    border-radius: 50px;
    height: 60px;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.contact-hover-wrapper:hover .nav-social-icon {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.contact-hover-wrapper .nav-social-icon i {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    border-radius: 50%;
    background-color: var(--prime-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.contact-hover-wrapper .nav-social-icon i:hover {
    transform: scale(1.1);
    background-color: var(--third-color);
}

/* Smaller, neat circular icons */
.nav-social-icon i {
    width: 32px;
    height: 32px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    font-size: 1rem;
}

.nav-social-icon i:hover {
    background-color: var(--third-color);
    transform: scale(1.1);
}
.nav-social-icon i:hover{
    color: var(--third-color);
    cursor: pointer;
}
/* HERO HEADER SECTION */

.heroSwiper{
    width: 100%;
    height: 100%;
}
.hero-header{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: baseline;
    align-items: center;
    gap: 50px;
    padding: 0 12%;
    background-image: url(/lovelace/image/hero-content-bg.webp);
    background-repeat: no-repeat;
    background-position: 5% 0%;
    position: relative;
}
.hero-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: var(--white-color);
    padding: 2%;
}
.hero-content h1{
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 4.5rem;
    font-family: var(--DM-sans-font);
    animation: Anim_top var(--transition-slow) forwards linear;
}
.hero-content p{
    font-size: 1rem;
    color: var(--light-text);
    margin: 12px 0;
    opacity: 0;
    animation: Anim_top var(--transition-slow) 0.5s forwards linear;
}
.hero-content .btn{
    margin-top: 30px;
    animation: Anim_top var(--transition-slow) 0.8s forwards linear;
    opacity: 0;
    transition: var(--transition-regular) !important;
}
.hero-img {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 36%;
    object-fit: contain;
    animation: Anim_img_right var(--transition-slow) 1s forwards linear;
    opacity: 0;
    z-index: 1;
  }
.swiper-button-prev:after,
.swiper-button-prev:before{
    display: none;
}
.swiper-btn i{
    font-size: 2rem;
    color: var(--white-color);
}
.swiper-btn{
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    background-image: url(/lovelace/image/slider_btn.png) !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: 150px !important;
}
.swiper-btn-next{
    left: 98.6% !important;
}
.swiper-btn-prev{
    transform: rotate(180deg);
}
/* Animations */
@keyframes Anim_top {
    0%{
        transform: translateY(-80px);
        opacity: 0;
    }
    50%{
        transform: translateY(-80px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes Anim_img_right {
    0% {
      transform: translate(-50%, -50%) translateX(80px);
      opacity: 0;
    }
    50% {
      transform: translate(-50%, -50%) translateX(80px);
      opacity: 0;
    }
    100% {
      transform: translate(-50%, -50%) translateX(0px);
      opacity: 1;
    }
  }  

  @media (max-width:1400px) {
    .call-us{
        display: none;
    }
    header{
        height: 75vh;
    }
    .hero-header{
        background-position: 5% 20%;
        margin-top: 25px;
    }
    .hero-content{
        width: 60%;
    }
    .hero-content h1{
        font-size: 4rem;
    }
    .hero-img{
        width: 39%; 
    }
}
@media (max-width:1200px) {
    .menu{
        padding: 20px 4%;
        gap: 20px;
    }
    header{
        height: 80vh;
    }
    .hero-img{
        width: 35%;
        top: 64%;
    }
    .hero-content{
        width: 60%;
    }
    .hero-content h1{
        font-size: 3.5rem;
    }
    .hero-header{
        background-position: -5% -20%;
    }
    .swiper-btn-next{
        left: 96.6% !important;
    }
    .swiper-btn{
        height: 200px !important;
        width: 40px !important;
    }
}
@media (max-width:900px) {
    .nav-right{
        display: none;
    }
    .nav{
        padding: 0 8%;
    }
    .bars{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        margin-top: 25px;
        border: 1px solid rgba(131,131,131,0.8);
        color: var(--white-color);
        border-radius: 5px;
        transition: var(--transition-regular);
    }
    .bars:hover{
        color: var(--black-color);
        cursor: pointer;
        border-color: transparent;
        background-color: var(--white-color);
    }
    .nav-left,
    nav:before,
    nav:after{
        width: 100%;
    }
    nav:before,
    nav:after{
        border-radius: 0;
    }
    .menu{
        position: absolute;
        top: 100%;
        left: -100%;
        opacity: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 5%;
        transition: var(--transition-slow);
    }
    .menu:after{
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 99.3%;
        height: 99.3%;
        border-radius: 50px;
    }
    .menu li{
        width: 100%;
        height: 50px;
        z-index: 5;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu li a{
        padding: 10px 12px;
    }
    .menu li:hover a:after,
    .menu li:hover a:before{
        width: 10%;
        height: 100%;
        border-radius: 10px;
    }
    .menu li:hover a{
        color: var(--white-color);
    }
    .hero-content{
        width: 80%;
    }
    .hero-content h1{
        font-size: 3.5rem;
        line-height: 4rem;
    }
    .hero-img{
        top: 72%;
        left: 82%;
    }
    .hero-header{
        background-position: -180% -30%;
    }
    .hero-content p{
        width: 90%;
    }
    .swiper-btn-next{
        left: 95.5% !important;
    }
    .show_menu{
        left: 0;
        opacity: 1;
    }
}
@media (max-width:500px) {
    header{
        height: 100vh;
    }
    .hero-header{
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 20%;
    }
    .hero-content{
        width: 100%;
    }
    .hero-content h1{
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .hero-img{
        top: 73%;
        left: 60%;
        width: 80%;
    }
    .swiper-btn-next{
        left: 92% !important;
    }
}
/* Media query for tablets (screens ≤ 768px) */
@media (max-width: 768px) {
    .hero-header {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .swiper-button-prev, .swiper-button-next {
        font-size: 1.5rem; /* Adjust size of navigation arrows */
    }
}

/* Media query for mobile devices (screens ≤ 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem; /* Adjust heading size */
    }

    .hero-content p {
        font-size: 1rem; /* Adjust paragraph font size */
    }

    .hero-header {
        padding: 10px;
    }

    .hero-img img {
        display: none;
    }
}

/* ABOUT US SECTION */
.about-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 5% 12%;
    padding-left: 0;
}
.about-img{
    width: 50%;
}
.about-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding-top: 60px;

}
.about-text-wrapper{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    margin: 15px 0;
    position: relative;
}
.about-content h1{
    font-size: 3.6rem;
    line-height: 4rem;
    font-weight: 600;
    width: 80%;
    color: var(--text-color);
}
.about-content p{
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 10px 0;
    width: 80%;
}
.about-text-wrapper:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: radial-gradient(50% 50% at 50% 50%, #fe7524 0%, rgba(152, 70, 22, 0) 100%);
}
.about-text-wrapper:before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: radial-gradient(50% 50% at 50% 50%, #fe7524 0%, rgba(152, 70, 22, 0) 100%);
}
.about-text{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-text h2{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}
.about-text h2 img{
    width: 20px;
    height: 20px;
}
/* Tablet: screens between 768px and 1024px */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 5% 8%;
    }

    .about-img,
    .about-content {
        width: 100%;
    }

    .about-content h1,
    .about-content p {
        width: 100%;
    }

    .about-text-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .about-text {
        width: 100%;
    }
}

/* Mobile: screens below 768px */
@media (max-width: 767px) {
    .about-container {
        padding: 5% 5%;
        gap: 30px;
    }

    .about-content {
        padding-top: 30px;
    }

    .about-content h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .about-text h2 {
        font-size: 1rem;
    }

    .about-text h2 img {
        width: 16px;
        height: 16px;
    }
}

/* FOOTER SECTION */
footer{
    background-image: url(/lovelace/image/footer-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.footer-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5% 12%;
    gap: 50px;
}
.footer-logo{
    width: 40%;
    margin-top: 50px;
}
.footer-logo .logo p {
    color: var(--white-color);
}
.footer-logo .logo a{
    font-size: 5rem;

}
.footer-wrapper{
    width: 60%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-content: start;
    place-items: start;
}
.footer-col{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-col h2{
    width: 80%;
    font-size: 1.5rem;
    color: var(--white-color);
    padding-bottom: 5px;
    margin-bottom: 20px;
    position: relative;
}
.footer-col h2:after{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: rgba(131,131,131,0.5);
}
.footer-col h2::before{
    content: '';
    position: absolute;
    top: 97%;
    left: 0;
    width: 60px;
    height: 3px;
    background-image: var(--prim-icon-gradient);
}
.footer-col a{
    font-size: 1rem;
    color: var(--white-color);
    margin: 5px 0;
    transition: var(--transition-regular);
    padding-left: 15px;
    transform: translateX(-15px);
    position: relative;
}
.footer-col a:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50% , -50%) scale(0.2);
    width: 10px;
    height: 10px;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: var(--prime-color);
    opacity: 0;
    transition: var(--transition-regular);
}
.footer-col a:hover{
    transform: translateX(15px);
}
.footer-col a:hover:after{
    transform: translate(-50% -50%) scale(1);
    opacity: 1;
}
.footer-col h1{
    font-size: 2rem;
    line-height: 2.5rem;
    color: var(--white-color);
    font-weight: 400;
}
.footer-col .inputs{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--white-color);
    margin: 20px 0;
}
.footer-col .inputs input{
    width: 90%;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--white-color);

    &::placeholder{
        color: var(--light-text);
    }
}
.footer-col .inputs img{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.footer-bottom{
    width: 100%;
    padding: 1% 12%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p{
    font-size: 1rem;
    color: var(--light-text);
}
.footer-bottom p a{
    color: var(--white-color);
    transition: var(--transition-regular);
}
.footer-bottom p a:hover{
    color: var(--third-color);
}
.footer-social-icon{
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-social-icon i{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--service-gradient);
    border-radius: 10px;
    font-size: 1.5rem;
    color: var(--white-color);
    box-shadow: 0 0 10px rgba(131,131,131,0.5);
    transition: var(--transition-regular);
}
.footer-social-icon i:hover{
    transform: translateY(-10px) rotate(-5deg);
    box-shadow: 0 0 10px var(--light-text);
    cursor: pointer;
}
/* For tablets (<= 1024px) */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 8% 6%;
    }

    .footer-logo {
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .footer-logo .logo a {
        font-size: 4rem;
    }

    .footer-wrapper {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-col h2 {
        font-size: 1.3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 5% 6%;
        text-align: center;
    }
}

/* For mobile devices (<= 768px) */
@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        place-items: center;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col h2::after,
    .footer-col h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col .inputs {
        flex-direction: row;
        justify-content: center;
    }

    .footer-social-icon {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-social-icon i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-logo .logo a {
        font-size: 3rem;
    }
}

/* For very small devices (<= 480px) */
@media (max-width: 480px) {
    .footer-col .inputs {
        flex-direction: column;
        gap: 10px;
    }

    .footer-col .inputs input {
        width: 100%;
        text-align: center;
    }

    .footer-col .inputs img {
        width: 25px;
        height: 25px;
    }
}
/* For WebKit browsers */
::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #ffe8b3; /* Light yellowish track */
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #ff9900;
    transition: background 0.3s;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #ff7700;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    box-shadow: 0 0 10px #ff9900;
    animation: glow 1.5s infinite alternate;
  }
  
  @keyframes glow {
    from {
      box-shadow: 0 0 5px #ff9900;
    }
    to {
      box-shadow: 0 0 20px #ffaa00;
    }
  }
    
  