@import url('https://fonts.googleapis.com/css2?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');

/* Custom Navbar Style */
.navbar.custom-navbar-style {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.custom-navbar-style .navbar-brand img {
    margin-right: 8px;
}

.navbar.custom-navbar-style .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Mobile Menu Spacing Fix */
@media (max-width: 991px) {
    .navbar.custom-navbar-style .navbar-nav {
        padding: 20px 0;
    }

    .navbar.custom-navbar-style .navbar-nav .nav-item {
        margin-bottom: 15px;
    }

    .navbar.custom-navbar-style .navbar-nav .nav-link {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
    background-color: transparent;
}

body {
    font-family: Poppins, sans-serif;
    /* Added sans-serif fallback */
    margin: 0;
    background-color: transparent;
    background: url('../assets/logo dark.JPG') no-repeat center center fixed;
    color: white;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: 70px;
}

.nav-container {
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container .menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-container .menu li {
    margin: 0;
}


*,
*::before,
*::after {
    box-sizing: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Slider */
.slider {
    height: 100vh;
    margin-top: -50px;
    /* Offset for navbar */
    position: relative;
    overflow: hidden;
}

.slider .list .item {
    position: absolute;
    inset: 0 0 0 0;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.slider .list .item.active {
    opacity: 1;
    z-index: 10;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to top, #000 30%, transparent);
}

.slider .content {
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 11;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider .content p:nth-child(1) {
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slider .content h2 {
    font-size: 4rem;
    margin: 0;
    font-weight: 700;
}

/* Hero CTA Buttons */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-hero {
    padding: 12px 35px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero.primary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-hero.primary:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-hero.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.btn-hero.secondary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Animations for buttons */
.slider .list .item.active .hero-buttons {
    animation: fadeInUp 0.8s 1.2s ease backwards;
}

/* Arrows */
.arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
}

.arrows button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.arrows button:hover {
    background: #fff;
    color: #000;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    border-color: #fff;
}

/* Thumbnails */
.thumbnail {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    /* Center existing items */
    padding: 0 15px;
    z-index: 100;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 20px;
    /* Increased gap */
}

.thumbnail::-webkit-scrollbar {
    display: none;
}

.thumbnail .item {
    flex: 0 0 auto;
    cursor: pointer;
    opacity: 0.6;
    /* Slightly less opaque initially */
    transition: all 0.3s ease;
    border-radius: 12px;
    /* Smoother radius */
    overflow: hidden;
    width: 150px;
    /* Larger width */
    height: 100px;
    /* Larger height */
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.thumbnail .item.active,
.thumbnail .item:hover {
    opacity: 1;
    transform: scale(1.1);

    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail .item .content {
    display: none;
}

/* Hide thumbnails and nav arrows on mobile */
@media (max-width: 768px) {

    .thumbnail,
    .arrows,
    .carousel-control-prev,
    .carousel-control-next,
    .slider-buttons {
        display: none !important;
    }
}

.arrows button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.arrows button:hover {
    background: rgba(255, 255, 255, 1);
}

/* Services Grid */
.services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
}

.service-card {
    padding: 1.5rem;
}

.service-card h4 {
    font-size: var(--text-xl);
}

.service-card p {
    font-size: var(--text-sm);
}

/* Product Items */
.product-item {
    margin: 1rem 0;
}

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.product-item h2 {
    font-size: var(--text-lg);
    margin: 0.5rem 0;
}

/* Product styles */
.product-item {
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Project styles */
.product-category {
    margin-bottom: 3rem;
}

.product-category h2 {
    margin-bottom: 1.5rem;
    font-size: var(--text-3xl);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.fade-in-up {
    transform: translateY(0);
    opacity: 1;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-left.delay-1 {
    transition-delay: 0.1s;
}

.fade-in-left.delay-2 {
    transition-delay: 0.2s;
}

.fade-in-left.delay-3 {
    transition-delay: 0.3s;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

li a:hover {
    transition: 600ms;
    background-color: rgba(255, 255, 255, 0.534);
    color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
}

.carousel-separator {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-separator:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 1);
}

/* Add section-divider to match carousel-separator */
.section-divider {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.section-divider:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 1);
}

/* Quality Assurance Header Styles */
.qa-header-container {
    position: relative;
    padding-top: 100px;
    /* Make space for the logo */
}

.qa-logo-container {
    position: absolute;
    top: 0;
    right: 0;
}

.qa-logo {
    max-width: 80px;
    height: auto;
    margin: 10px;
}

.qa-title {
    margin: 0;
    padding-top: 10px;
}

/* Content styles */
.content {
    width: 100%;
    padding: 2rem;
    margin: 0;
    box-sizing: border-box;
}

/* Introduction Section Styles */
.intro-section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.intro-title {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 3rem;
}

.intro-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border-radius: 10px;
}

.intro-content .lead {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
}

.company-services {
    margin-top: 3rem;
}

.services-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-category {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
}

.service-category h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    position: relative;
}

.service-category li::before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Performance Section Styles */
.performance-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.performance-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 2rem;
    border-radius: 10px;
}

.performance-content .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.performance-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.performance-list li {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.performance-list li strong {
    color: #fff;
}

/* About Section Styles */
.about-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4);
}

/* HSE Section Styles */
.hse-section {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.hse-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    /* Ensure visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.hse-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    /* Prevent it from getting too tall */
    object-fit: contain;
    /* Ensure no cutting */
    border-radius: 15px;
    /* Softer radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Enhanced shadow */
    transition: all 0.3s ease;
}

.hse-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Adjust HSE section padding to accommodate the image */
.hse-section {
    padding: 2rem;
}

.hse-title {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
}

.hse-content {
    color: rgba(255, 255, 255, 0.8);
}

.hse-content .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hse-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.principle ul {
    list-style: none;
    padding: 0;
}

.principle li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.principle li::before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

/* About Section Styles */
.about-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4);
}

.about-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.quality-assurance-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 2rem;
    border-radius: 10px;
    position: relative;
}

.qa-logo-container {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.qa-logo:hover {
    opacity: 1;
}

.qa-title {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.qa-policy {
    color: rgba(255, 255, 255, 0.8);
}

.qa-policy .lead {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.qa-policy p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-caption {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.about-caption h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-caption p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Carousel styles */
.carousel-section {
    margin-bottom: 2rem;
    position: relative;
}

.carousel {
    height: 500px;
    /* Increased height for better visibility */
    overflow: hidden;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Carousel controls styles */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    /* Dark background for theme match */
    border-radius: 50%;
    /* Circle shape */
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: invert(1);
    /* Ensure white icon */

    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Custom arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
}

.carousel-control-prev-icon::before {
    content: "\f104";
    /* Font Awesome left arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    line-height: 1;
}

.carousel-control-next-icon::before {
    content: "\f105";
    /* Font Awesome right arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    line-height: 1;
}

.carousel-control-prev-icon:hover::before,
.carousel-control-next-icon:hover::before {
    color: #00bfff;
    /* Highlight color on hover */
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Carousel separator styles */
.carousel-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    margin: 2rem 0;
    position: relative;
    overflow: visible;
}

.carousel-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.carousel-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 480px) {
    .carousel {
        height: 250px;
        /* Even smaller on smaller mobile devices */
    }

    .carousel-separator {
        margin: 1rem 0;
    }
}

/* Content styles */
.content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in.animate,
.fade-in-up.animate,
.fade-in-left.animate,
.fade-in-right.animate,
.slide-in.animate,
.zoom-in.animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Footer styles */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 1rem;
    text-align: center;
}

footer .subfooter {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

footer .subfooter li {
    display: inline;
    margin: 0 1rem;
}

footer .subfooter li a {
    color: #fff;
    text-decoration: none;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* css slider */


.content header h1 {
    margin-left: 20px;
    text-wrap: nowrap;
    text-align: left;
}

/* Gallery Tabs */
.gallery-section {
    padding: 4rem 0;
}

.gallery-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.3);
    margin: 0 10px;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-tabs .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.gallery-tabs .nav-link.active {
    color: #000;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.tab-content {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}