
        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght=300;400;500;600;700;800&display=swap');

        :root {
            --primary-blue: #133060;
            --emerald-green: #237A3B;
            --accent-purple: #4D1252;
            --warm-amber: #E28413;
            --light-bg: #FAF9F6;
            --text-dark: #1E2530;
            --text-muted: #536279;
            --white: #FFFFFF;
        }

        /* 🌟 SMOOTH SCROLLING */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px; 
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ----------------------------------
           💥 CUSTOM PREMIUM ANIMATIONS
        ------------------------------------- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes borderPulse {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.03); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }

        .animate-fade-up {
            animation: fadeInUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .animate-fade-scale {
            animation: fadeInScale 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .delay-1 { animation-delay: 0.2s; opacity: 0; }
        .delay-2 { animation-delay: 0.4s; opacity: 0; }
        .delay-3 { animation-delay: 0.6s; opacity: 0; }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-weight: 600;
            font-size: 15px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--white);
            border: none;
            box-shadow: 0 4px 15px rgba(19, 48, 96, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(19, 48, 96, 0.35);
            background-color: var(--accent-purple);
        }

        /* HEADER */
        header {
            background-color: rgba(255, 255, 255, 0.90);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 10px;
                height: 90px;

        }

        .nav-container {
            display: table;
            width: 100%;
        }

        .brand {
            display: table-cell;
            vertical-align: middle;
        }

        .brand-logo-container {
            display: table;
        }

        .brand-text {
            display: table-cell;
            vertical-align: middle;
            padding-left: 12px;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .brand-text span {
            color: var(--emerald-green);
        }

        .nav-menu {
            display: table-cell;
            vertical-align: middle;
            text-align: right;
        }

        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            margin-left: 28px;
            position: relative;
            padding-bottom: 4px;
            transition: color 0.3s;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--emerald-green);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--emerald-green);
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            background: linear-gradient(rgba(19, 48, 96, 0.75), rgba(19, 48, 96, 0.85)), url('./img/11.jpeg') no-repeat center center/cover;
            padding: 160px 0 180px 0;
            color: var(--white);
            text-align: center;
        }

        .hero-content {
            max-width: 850px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .hero p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            font-weight: 400;
        }

        /* CARD FEATURES */
        .features-wrapper {
            margin-top: -80px;
            position: relative;
            z-index: 10;
            margin-bottom: 80px;
        }

        .row-table {
            display: table;
            width: 100%;
            table-layout: fixed;
            border-spacing: 24px 0;
        }

        .col-3 {
            display: table-cell;
            background-color: var(--white);
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
            vertical-align: top;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-bottom: 4px solid transparent;
        }

        .col-3:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 45px rgba(19, 48, 96, 0.12);
        }
        
        .col-3:nth-child(1):hover { border-bottom-color: var(--primary-blue); }
        .col-3:nth-child(2):hover { border-bottom-color: var(--emerald-green); }
        .col-3:nth-child(3):hover { border-bottom-color: var(--accent-purple); }

        .feature-icon-box {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            margin-bottom: 24px;
            text-align: center;
            line-height: 55px;
            color: white;
            font-size: 22px;
            font-weight: bold;
            transition: transform 0.4s ease;
        }

        .col-3:hover .feature-icon-box {
            transform: rotateY(180deg);
        }

        .fi-1 { background-color: var(--primary-blue); }
        .fi-2 { background-color: var(--emerald-green); }
        .fi-3 { background-color: var(--accent-purple); }

        .col-3 h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--primary-blue);
        }

        .col-3 p {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ABOUT US SECTION */
        .about-section {
            padding: 60px 0 100px 0;
        }

        .layout-table {
            display: table;
            width: 100%;
            table-layout: fixed;
        }

        .img-col {
            display: table-cell;
            width: 48%;
            vertical-align: middle;
            position: relative;
        }

        .spacer-col {
            display: table-cell;
            width: 4%;
        }

        .content-col {
            display: table-cell;
            width: 48%;
            vertical-align: middle;
        }

        .about-img-wrapper {
            position: relative;
            padding-right: 20px;
        }

        .about-img-wrapper::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 140px;
            height: 140px;
            border-left: 5px solid var(--accent-purple);
            border-top: 5px solid var(--accent-purple);
            z-index: 1;
            border-top-left-radius: 12px;
            animation: borderPulse 4s infinite ease-in-out;
        }

        .about-img-wrapper::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: 5px;
            width: 140px;
            height: 140px;
            border-right: 5px solid var(--emerald-green);
            border-bottom: 5px solid var(--emerald-green);
            z-index: 1;
            border-bottom-right-radius: 12px;
            animation: borderPulse 4s infinite ease-in-out 2s;
        }

        .about-img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 16px;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .about-img-wrapper:hover .about-img {
            transform: scale(1.03) translateY(-5px);
        }

        .sub-title {
            color: var(--emerald-green);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-size: 38px;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1.25;
            margin-bottom: 20px;
        }

        .title-divider {
            width: 70px;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-purple), var(--emerald-green));
            margin-bottom: 26px;
            border-radius: 3px;
        }

        .about-desc {
            font-size: 15.5px;
            color: var(--text-muted);
            margin-bottom: 35px;
            text-align: justify;
        }

        .pillar-item {
            display: table;
            width: 100%;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .pillar-item:hover {
            background-color: var(--white);
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
            transform: translateX(6px);
        }

        .pillar-icon-cell {
            display: table-cell;
            width: 44px;
            vertical-align: top;
        }

        .pillar-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 30px;
            font-size: 13px;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .p-blue { background-color: var(--primary-blue); }
        .p-green { background-color: var(--emerald-green); }
        .p-amber { background-color: var(--warm-amber); }

        .pillar-text-cell {
            display: table-cell;
            vertical-align: middle;
            padding-left: 15px;
        }

        .pillar-text-cell h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .pillar-text-cell p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* OUR PRODUCTS SECTION */
        .products-section {
            padding: 80px 0;
            background-color: #F4F6F9;
            text-align: center;
        }

        .product-grid {
            display: table;
            width: 100%;
            table-layout: fixed;
            border-spacing: 16px 0;
            margin-top: 40px;
        }

        .product-card {
            display: table-cell;
            background: var(--white);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            vertical-align: top;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 35px rgba(19, 48, 96, 0.1);
        }

        .product-img-holder {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px 15px;
            text-align: center;
            border-top: 4px solid transparent;
            transition: border-color 0.3s;
        }

        .product-card:nth-child(1) .product-info { border-top-color: var(--accent-purple); }
        .product-card:nth-child(2) .product-info { border-top-color: var(--warm-amber); }
        .product-card:nth-child(3) .product-info { border-top-color: var(--emerald-green); }
        .product-card:nth-child(4) .product-info { border-top-color: var(--primary-blue); }
        .product-card:nth-child(5) .product-info { border-top-color: #3a86ff; }

        .product-info h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
        }

        /* GALLERY SECTION */
        .gallery-section {
            padding: 80px 0;
            background-color: var(--white);
            text-align: center;
        }

        .gallery-grid {
            display: table;
            width: 100%;
            table-layout: fixed;
            border-spacing: 16px 0;
            margin-top: 40px;
        }

        .gallery-item {
            display: table-cell;
            height: 220px;
            overflow: hidden;
            border-radius: 12px;
            position: relative;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.08);
            filter: brightness(0.85);
        }

        /* ----------------------------------
           🌟 NEW PROFESSIONAL CONTACT SECTION 
        ------------------------------------- */
        .contact-section {
            padding: 90px 0;
            background-color: #F4F6F9;
        }

        .contact-grid-table {
            display: table;
            width: 100%;
            table-layout: fixed;
        }

        .contact-info-col {
            display: table-cell;
            width: 45%;
            vertical-align: top;
            padding-right: 40px;
        }

        .contact-map-col {
            display: table-cell;
            width: 55%;
            vertical-align: top;
        }

        /* Info Blocks Styles */
        .contact-card-box {
            background-color: var(--white);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
            border-left: 5px solid var(--primary-blue);
            transition: all 0.3s ease;
            display: table;
            width: 100%;
        }

        .contact-card-box:hover {
            transform: translateX(8px);
            box-shadow: 0 15px 30px rgba(19, 48, 96, 0.08);
        }

        .contact-card-box:nth-child(2) { border-left-color: var(--emerald-green); }
        .contact-card-box:nth-child(3) { border-left-color: var(--accent-purple); }

        .c-icon-cell {
            display: table-cell;
            width: 50px;
            vertical-align: middle;
        }

        .c-icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: var(--white);
            text-align: center;
            line-height: 40px;
            font-size: 16px;
        }

        .bg-blue { background-color: var(--primary-blue); }
        .bg-green { background-color: var(--emerald-green); }
        .bg-purple { background-color: var(--accent-purple); }

        .c-text-cell {
            display: table-cell;
            vertical-align: middle;
            padding-left: 15px;
        }

        .c-text-cell h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .c-text-cell p {
            font-size: 14.5px;
            color: var(--text-muted);
        }

        /* Map Container Wrapper */
        .map-wrapper {
            width: 100%;
            height: 430px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            border: 4px solid var(--white);
            position: relative;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* FOOTER */
        footer {
            background: linear-gradient(135deg, #0a172e 0%, #200722 100%);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 30px 0;
            border-top: 4px solid var(--emerald-green);
        }

        .footer-table {
            display: table;
            width: 100%;
            table-layout: fixed;
            margin-bottom: 40px;
        }

        .footer-col {
            display: table-cell;
            vertical-align: top;
            width: 33.33%;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 15px;
        }

        .footer-logo span {
            color: var(--emerald-green);
        }

        .footer-col h5 {
            color: var(--white);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--warm-amber);
            padding-left: 5px;
        }

        .contact-info p {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .product-grid, .gallery-grid {
                display: block !important;
                width: 100% !important;
            }
            .product-card, .gallery-item {
                display: block !important;
                width: 100% !important;
                margin-bottom: 20px;
                height: auto;
            }
            .gallery-item { height: 250px; }
        }

        @media (max-width: 768px) {
            .row-table, .layout-table, .footer-table, .nav-container, .brand-logo-container, .contact-grid-table {
                display: block !important;
                width: 100% !important;
            }
            .col-3, .img-col, .spacer-col, .content-col, .footer-col, .brand, .nav-menu, .contact-info-col, .contact-map-col {
                display: block !important;
                width: 100% !important;
                margin-bottom: 30px;
            }
            .contact-info-col { padding-right: 0; }
            .nav-menu { text-align: left; }
            .nav-menu a {
                margin-left: 0;
                margin-right: 20px;
                display: inline-block;
                margin-top: 10px;
            }
            .hero h1 { font-size: 34px; }
            .about-img { height: 320px; }
            .about-img-wrapper { padding-right: 0; margin-bottom: 40px; }
            .pillar-item:hover { transform: none; }
            .col-3:hover { transform: translateY(-5px); }
            .contact-card-box:hover { transform: none; }
            .map-wrapper { height: 300px; }
        }

        .logo {
            width: 80px;
            height: auto;
            display: block;
            max-width: 100%;
        }


@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    .logo{
        margin-left: 25px;
    }
}




.nav-menu {
        display: flex;
        gap: 20px;
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--text-dark, #333);
        font-weight: 600;
        font-size: 15px;
        transition: color 0.3s ease;
    }
    .nav-menu a:hover {
        color: var(--primary-blue, #133060);
    }
.hell{
   position: relative; padding-left: 455px; padding-top: 25px; display: flex; align-items: center; justify-content: space-between; width: 100%;
}

    @media (max-width: 768px) {
        #menu-toggle {
            display: block !important; 
            margin-left: 245px;
            margin-top: -110px;
        }
.hell{
    padding-left:0px;
}
        .nav-menu {
            display: none; 
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            padding: 20px;
            box-sizing: border-box;
            border-radius: 8px;
            z-index: 1000;
            gap: 15px;
            text-align: left;
        }

        
        .nav-menu.active {
            display: flex !important;
        }

        .nav-menu a {
            display: block;
            width: 100%;
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .nav-menu a:last-child {
            border-bottom: none;
        }
    }
    
    
    
    .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #003366; /* Primary Blue */
    border: 2px solid #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #003366;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.25);
}

.social-links a i {
    line-height: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}










/*tab gallery*/



/* Scope setup */
.bsm-gallery-section {
  background-color: #f6f9fc !important;
  padding: 100px 20px !important;
  font-family: 'Poppins', sans-serif !important;
  box-sizing: border-box;
}

.bsm-gallery-section * {
  box-sizing: border-box;
}

.bsm-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.bsm-gallery-header {
  text-align: center;
  margin-bottom: 55px;
}

.bsm-gallery-header .bsm-sub-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00bcd4;
  margin-bottom: 12px;
}

.bsm-gallery-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #133161;
  margin: 0 0 15px 0;
}

.bsm-gallery-header p {
  font-size: 1.1rem;
  color: #607289;
  max-width: 600px;
  margin: 0 auto;
}

/* Tabs Setup */
.bsm-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 55px;
  flex-wrap: wrap;
}

.bsm-tab-btn {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  padding: 14px 32px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #133161 !important;
  border-radius: 50px !important;
  cursor: pointer;
  outline: none !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(19, 49, 97, 0.04);
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.4s ease, 
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s ease !important;
}

.bsm-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #133161 0%, #0a1c38 100%);
  z-index: -1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.bsm-tab-btn:hover, 
.bsm-tab-btn.active {
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(19, 49, 97, 0.25) !important;
}

.bsm-tab-btn:hover::before,
.bsm-tab-btn.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.bsm-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsm-tab-content.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.bsm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.bsm-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 330px;
  box-shadow: 0 15px 35px rgba(19, 49, 97, 0.06);
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.bsm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsm-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(19, 49, 97, 0.12);
}

.bsm-gallery-item:hover img {
  transform: scale(1.08);
}

/* ==========================================
   ADVANCED LIGHTBOX WITH NAV OVERLAY
   ========================================== */
.bsm-lightbox {
  display: none; 
  position: fixed;
  z-index: 99999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 28, 56, 0.95);
  backdrop-filter: blur(10px);
}

/* Centered Wrapper for Aspect-Ratio Safe Image */
.bsm-lightbox-img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
}

/* Ensures FULL Image is visible without any cropping */
.bsm-lightbox-content {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain; /* Strict full view control */
  border-radius: 6px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  transform: scale(0.9) translateY(10px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.bsm-lightbox.open .bsm-lightbox-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button Position */
.bsm-lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: rgba(255,255,255,0.7);
  font-size: 45px;
  font-weight: 200;
  cursor: pointer;
  z-index: 100001;
  transition: color 0.3s ease, transform 0.3s ease;
}

.bsm-lightbox-close:hover {
  color: #00bcd4;
  transform: scale(1.1);
}

/* Premium Left & Right Arrow Buttons */
.bsm-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}

.bsm-lightbox-nav:hover {
  background: #00bcd4;
  color: #ffffff;
  border-color: #00bcd4;
}

.bsm-lightbox-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.bsm-prev { left: 30px; }
.bsm-next { right: 30px; }

/* Responsive tweaks */
@media (max-width: 768px) {
  .bsm-gallery-grid { grid-template-columns: 1fr; gap: 25px; }
  .bsm-gallery-header h2 { font-size: 2.2rem; }
  .bsm-tab-btn { padding: 12px 24px !important; font-size: 0.9rem !important; }
  .bsm-gallery-item { height: 280px; }
  .bsm-lightbox-img-wrapper { padding: 40px 20px; }
  .bsm-lightbox-nav { width: 45px; height: 45px; font-size: 18px; }
  .bsm-prev { left: 15px; }
  .bsm-next { right: 15px; }
  .bsm-lightbox-close { top: 15px; right: 20px; font-size: 38px; }
}