/* <!-- GALLERY SECTION ************************************************** START --> */
        :root {
            --primary103: #115E3C;
            --primary103-dark: #0A4928;
            --primary103-light: rgba(17, 94, 60, 0.1);
            --secondary103: #213332;
            --accent103: #FF6B35;
            --accent103-light: #FF9E6D;
            --dark103: #121212;
            --light103: #f8f9fa;
            --white103: #ffffff;
            --glass103: rgba(255, 255, 255, 0.08);
            --glass103-border: rgba(255, 255, 255, 0.18);
            --transition103: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition103-smooth: all 0.5s ease;
            --shadow103: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow103-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
            --shadow103-primary: 0 10px 30px rgba(17, 94, 60, 0.2);
              --primary103102efw-start103: #00C897;
            --primary103102efw-end103: #009976;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        .bodydh {
            font-family: 'Montserrat', sans-serif;
            color: var(--secondary103);
            line-height: 1.7;
            background-color: transparent;
            overflow-x: hidden;
        }

       .bodydh h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container103 {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            /* padding: 0 30px; */
            /* padding: 100px 0; */
            position: relative;
        }

       

        .section-title103 {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        .section-title103::before{
                content: '';
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    top: 0;
    background: linear-gradient(45deg, #ff980061, #00968854);
    display: block;
    margin: 0 auto 20px;
    clip-path: polygon(100% 5%, 0 64%, 100% 45%);
        }

        .section-title103 h2 {
            font-size: 3.2rem;
            background: linear-gradient(135deg, var(--primary103), var(--primary103-dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            margin-bottom: 15px;
            position: relative;
        }

        .section-title103 .title-decoration {
            font-size: 4rem;
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.05;
            font-weight: 900;
            z-index: -1;
            color: var(--primary103);
        }
        .section-title103 h2{
              display: inline-block !important;
            padding: 8px 20px !important;
            /* background: linear-gradient(135deg, #00C897, #009976) !important; */

            width: fit-content !important;
            --s: 1.8em !important;
            /* the ribbon size */
            --d: .8em !important;
            /* the depth */
            --c: .8em !important;
            /* the cutout part */

            padding: 0 var(--c) var(--d) calc(var(--s) + .5em) !important;
            line-height: 1.8 !important;
            background:
                conic-gradient(at left var(--s) bottom var(--d),
                    #ff9800 25%,
                    var(--primary103102efw-start103) 0 37.5%,
                    var(--primary103102efw-end103) 0);
            clip-path: polygon(calc(100% - var(--c)) 0, var(--s) 0, var(--s) var(--d), 0 var(--d), var(--c) calc(50% + var(--d)/2), 0 100%, calc(var(--s) + var(--d)) 100%, calc(var(--s) + var(--d)) calc(100% - var(--d)), calc(100% - var(--c)) calc(100% - var(--d)), 100% calc(50% - var(--d)/2)) !important;
            color: white !important;
            /* border-radius: 50px; */
            font-size: clamp(1.6rem, 2.5vw, 2.5rem) !important;

            font-weight: bold !important;
            letter-spacing: 1px !important;
            margin-bottom: 25px !important;
            box-shadow: 0 10px 20px rgba(0, 200, 151, 0.2) !important;
        }

        .section-title103 p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2rem;
            color: #666;
        }

        /* Gallery Section */
        .gallery-section103 {
            padding: 30px 0 80px;
            background: transparent;
        }
     

        .gallery-filter103 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 60px;
        }

        .filter-btn103 {
            padding: 12px 28px;
            background: transparent;
            border: 2px solid var(--primary103);
            color: var(--primary103);
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition103);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn103:hover, .filter-btn103.active {
            background: var(--primary103);
            color: var(--white103);
            transform: translateY(-5px);
            box-shadow: var(--shadow103-primary);
        }

        .filter-btn103 i {
            font-size: 1.1rem;
        }

        .gallery-grid103 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .gallery-item103 {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow103);
            transition: var(--transition103);
            height: 380px;
            cursor: pointer;
        }

        .gallery-item103:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow103-lg);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition103-smooth);
        }

        .gallery-item103:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-content103 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: var(--white103);
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition103-smooth);
        }

        .gallery-item103:hover .gallery-content103 {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-category103 {
            display: inline-block;
            padding: 6px 15px;
            background: var(--primary103);
            color: var(--white103);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .gallery-title103 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .gallery-desc103 {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .gallery-stats103 {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
        }

        .gallery-stat11 {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .gallery-stat11 i {
            color: var(--accent103-light);
        }
        .iaa{
               display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
        }
        .iaa h1{
            width: 50% !important;
               background: linear-gradient(45deg, #ff9900, #009687);
               clip-path: polygon(100% 34%, 75% 50%, 100% 65%, 0 65%, 31% 51%, 1% 34%);
    width: 100%;
    height: 20px;
    margin: 50px;
        }


        /* Full Screen Modal */
        .modal-overlay103 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-overlay103.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container103 {
            width: 90%;
            max-width: 1200px;
            height: 90vh;
            background: #0c1c18;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            transform: scale(0.8) rotateY(-15deg);
            opacity: 0;
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }

        .modal-overlay103.active .modal-container103 {
            transform: scale(1) rotateY(0deg);
            opacity: 1;
        }

        /* Patterned Header */
        .modal-header103 {
            /* background: 
                linear-gradient(45deg, var(--primary103-dark) 25%, transparent 25%),
                linear-gradient(-45deg, var(--primary103-dark) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, var(--primary103-dark) 75%),
                linear-gradient(-45deg, transparent 75%, var(--primary103-dark) 75%); */
            background-size: 30px 30px;
            background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .modal-header103-content h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .modal-header103-content .modal-category103 {
            display: inline-block;
            padding: 6px 15px;
            background: var(--accent103);
            color: var(--white103);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .close-modal103 {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal103:hover {
            background: var(--accent103);
            transform: rotate(90deg);
        }

        /* Modal Body with Image */
        .modal-body103 {
            height: calc(90vh - 120px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: #0a1613;
            position: relative;
            overflow: hidden;
        }

        .modal-image103-container103 {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image103 {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: smoothZoomfe 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            transform-origin: center;
        }

        @keyframes smoothZoomfe {
            0% {
                transform: scale(0.5) rotate(-360deg);
                opacity: 0;
            }
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        /* Modal Footer */
        .modal-footer103 {
            padding: 25px 40px;
            background: rgba(10, 22, 19, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-footer103-content {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .modal-stat103s103 {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .modal-stat103 {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent103-light);
            font-size: 0.95rem;
        }

        .modal-stat103 i {
            font-size: 1.1rem;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .gallery-grid103 {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 992px) {
            section {
                padding: 80px 0;
            }
            
            .section-title103 h2 {
                font-size: 2.8rem;
            }
            
            .modal-container103 {
                width: 95%;
                height: 95vh;
            }
            
            .modal-header10310 {
                padding: 20px 30px;
            }
            
            .modal-body103 {
                height: calc(95vh - 120px);
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .container103 {
                padding: 0 20px;
            }
            
            .section-title103 h2 {
                font-size: 2.3rem;
            }
            
            .gallery-grid103 {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }
            
            .modal-container103 {
                width: 98%;
                height: 90vh;
                border-radius: 15px;
            }
            
            .modal-header103 {
                padding: 15px 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .modal-header103-content h3 {
                font-size: 1.5rem;
            }
            
            .close-modal103 {
                position: absolute;
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
            
            .modal-footer103 {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .gallery-filter103 {
                gap: 10px;
            }
            
            .filter-btn103 {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .gallery-grid103 {
                grid-template-columns: 1fr;
            }
            
            .modal-header103-content h3 {
                font-size: 1.3rem;
            }
            
            .modal-footer103-content {
                font-size: 0.95rem;
            }
            
            .modal-stat103s103 {
                gap: 15px;
            }
            
            .modal-stat103 {
                font-size: 0.85rem;
            }
        }
/* <!-- GALLERY SECTION ************************************************** END --> */