
:root {
    --primary-color: #F26522;
    --secondary-color: #F26522;
    --accent-color: #F26522;
    --dark-color: #1d1d1d;
    --light-color: #ecf0f1;
}

/* Dark mode */
body.dark-mode {
    --primary-color: #F26522;
    --secondary-color: #F26522;
    --accent-color: #F26522;
    --dark-color: #ecf0f1;
    --light-color: #1d1d1d;
}

body.dark-mode {
    background-color: var(--light-color);
    color: white;
}

body.dark-mode .navbar,
body.dark-mode .footer,
body.dark-mode .card,
body.dark-mode .contact-form {
    background-color: var(--light-color) !important;
    color: white !important;
}

body.dark-mode .nav-item a {
    color: white !important;
}

body.dark-mode .bg-light
{
    background-color: #1d1d1d !important;
}

body.dark-mode  .btn-white {
    background: #ffffff;
}

body.dark-mode  .btn-white:hover {
    color: var(--light-color);
}

body.dark-mode  .navbar.scrolled .nav-item a {
    color: #ffffff !important;
}

body.dark-mode .navbar-toggler
{
    background: #ffffff;
} ;

/* ------------------ */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    font-family: 'Manrope', sans-serif;
    scroll-behavior: smooth;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

 .bg-white {
    background:var(--light-color);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#contact
{
    background: var(--primary-color);
}

/* Navbar Style */

        .navbar {
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        /* Default nav item styles (white text) */
        .nav-item a {
            color: white;
            font-size: 11px;
            transition: color 0.3s ease;
            font-weight: 700;
        }

        .nav-item .active {
            color: white!important;
            font-weight: bolder;
        }

        .nav-item a:hover {
            color: white;
        }

        /* Styles when scrolled (dark text) */
        .navbar.scrolled .nav-item a {
            color: #333 !important;
        }

        .navbar.scrolled .nav-item .fa-solid {
            color: #333 !important;
        }

        .navbar.scrolled .nav-item a:hover {
            color: #555 !important;
        }

        .navbar.scrolled .nav-item .active {
            color: #000 !important;
            font-weight: bolder;
        }

        /* Navbar border styling */
        .navbar.scrolled .navbar-nav {
            border-color: #ddd !important;
        }

        .navbar-logo {
            height: 40px;
        }

/* --------------- */


.text-glow {
  color: var(--accent-color);
  font-weight: 800; 
  animation: pulseGlow 6s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 5px var(--accent-color);
  }
  50% {
    text-shadow: 0 0 10px var(--accent-color);
  }
}


 .hero-section {
            height: 100vh;
            position: relative;
            display: flex;
            align-items:end;
            justify-content: flex-start;
            padding: 0 80px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: background-image 0.8s ease-in-out;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            color: white;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content h1 {
            font-size: 3.0rem;
            font-weight: 900; 
            line-height: 1.1;
            letter-spacing: -1px; 
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
            -webkit-background-clip: text; 
            background-clip: text; 
        }

        .hero-content p {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
            border: 2px solid transparent;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
            background: linear-gradient(135deg, #5855f0 0%, #7c3aed 100%);
        }

        .image-cards {
            position: absolute;
            bottom: 40px;
            right: 40px;
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .hero-section .card {
            width: 120px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            position: relative;
        }

        .hero-section  .card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        }

        .hero-section  .card.active {
            border-color: var(--accent-color);
            box-shadow: 0 10px 30px var(--accent-color);
        }

        .hero-section  .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .hero-section  .card:hover img {
            transform: scale(1.1);
        }

        .hero-section  .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-section  .card:hover::after {
            opacity: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         .hero-section .hero-btn
            {
                display: none;
            }

        @media (max-width: 768px) {
            .hero-section {
                padding: 0 40px;
                    align-items: center;
            }

            .hero-section::before { 
            background: linear-gradient(to top, rgb(0 0 0) 0%, rgb(0 0 0 / 60%) 60%, rgba(0, 0, 0, 0) 100%); 
            }

            .hero-section .hero-btn
            {
                display: inline;
            }
            
            .hero-content h1 {
                font-size: 2rem;
                text-align: center;
            }
            
            .hero-content p {
                font-size: 1.25rem;
                 text-align: center;
            }
            
            .hero-section  .image-cards {
                bottom: 20px;
                right: 20px;
                gap: 10px;
            }

            .hero-content
            {
                text-align: center;
            }
            
            .hero-section  .card {
                 display: none; /* Hide cards on mobile */
            }
        }


/* Hero Style */

        

        .hero-section-about-us {
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: url("../images/about_us_bg.png");  
        }

        .hero-section-gallery {
            min-height: 20vh; 
        }

        #team{
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: url("../images/the_team_bg.png");  
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0; 
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

/* --------------- */

  

    #about .btn-our-value-sm
    {
        display: none;
    }



    @media (max-width: 768px)

    {
        #about .btn-our-value-sm
        {
            display: inline-block;
        }

        #about .btn-our-value-md
        {
            display: none;
        }
    }





/* Objectives */

    .card-container {
            height: 300px;
            border-radius: 15px;
            position: relative;
            overflow: hidden; 
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .card-1 {
              background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)),url('..//images/gallery/corprate-7.DNG');
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .card-2 {
           background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)),url('..//images/gallery/corprate-8.DNG');
            background-size: cover;
            background-repeat: no-repeat;
        }
        .card-3 {
             background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)),url('..//images/gallery/event-2.png');
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .card-4 {
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)),url('..//images/gallery/product1.JPG');
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .card-number {
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            position: absolute;
            top: 15px;
            left: 20px;
            line-height: 1;
        }
        
        .card-3 .card-number {
            color:#fff; 
        }
        
        .card-4 .card-number {
            color: #fff;
        }
        
        .card-content {
            position: absolute;
            top: 50%;
            left: 30px;
            transform: translateY(-50%);
            color: white;
            z-index: 2;
        }
        
        .card-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
         #objectives .card-text {
            font-size: 0.9rem;
            line-height: 1.4;
            opacity: 0.9;
            max-width: 200px;
        }
        
        .card-footer {
            position: absolute;
            bottom: 20px;
            left: 30px;
            right: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            opacity: 0.8;
        }
        
        .read-more {
            color: #ffffff;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
        }
        
        .card-2 .card-footer,
        .card-3 .card-footer,
        .card-4 .card-footer {
            color: white;
        }
       
/* ----------------- */

 
/* Gallery  */

        .carousel-item img {
            height: 500px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.3s ease;
        }

        .carousel-item:hover img {
            transform: scale(1.02);
        }

        .carousel-caption {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            border-radius: 0 0 15px 15px;
            transform: translateY(80%);
            transition: transform 0.4s ease;
        }

        .carousel-item:hover .carousel-caption {
            transform: translateY(0);
        }

        .carousel-caption h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .carousel-caption p {
            font-size: 1.1rem;
            margin-bottom: 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            opacity: 0.95;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .carousel-control-prev {
            left: 20px;
        }

        .carousel-control-next {
            right: 20px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 24px;
            height: 24px;
            background-size: 24px 24px;
        }

        .carousel-indicators {
            margin-bottom: 1rem;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 6px;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .carousel-indicators [data-bs-target]:hover {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .carousel-indicators .active {
            background-color: white;
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        }

        .carousel-title {
            text-align: center;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .carousel-title h2 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
        }

        .carousel-title p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 0;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .carousel-container {
                margin: 1rem;
                padding: 1rem;
            }

            .carousel-item img {
                height: 300px;
            }

            .carousel-caption h3 {
                font-size: 1.3rem;
            }

            .carousel-caption p {
                font-size: 0.9rem;
            }

            .carousel-title h2 {
                font-size: 2rem;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 50px;
                height: 50px;
            }

            .carousel-control-prev {
                left: 10px;
            }

            .carousel-control-next {
                right: 10px;
            }
        }

        /* Loading animation for images */
        .carousel-item img {
            opacity: 0;
            animation: fadeIn 0.5s ease-in forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

/* --------------- */
  
        .section-subtitle { 
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.5;
        } 
          
        
        .service-card { 
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        } 
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #e8f5e8, #d4edda);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: #28a745;
        }
        
        .service-title { 
            font-weight: 600;
            color: var(--dark-color);
            margin: 0;
        }
        
        .services-grid {
            margin-top: 20px;
        }
        
        @media (max-width: 768px) {
            .banking-section {
                padding: 40px 20px;
                margin: 20px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                margin-top: 30px;
            }
            
            .service-card {
                margin-bottom: 20px;
            }

            #about
            {
                text-align: center;
            }
        }

/* --------------- */




.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.section-padding {
    padding: 80px 0;
}

.card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 2rem;
}



.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
     font-size: 11px;
}



.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-dark {
    background: #1d1d1d;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
     font-size: 11px;
}

.btn-white {
    background: var(--light-color);
    border: none;
    color: black;
    padding: 12px 30px;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
     font-size: 11px;
}

.btn-white:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 0px;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    margin: 0 10px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: white;
}


    .split-section {
        min-height: 100vh;
    }
    
    .image-half {
        background-image: url('../images/porfolio-bg.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
        
    .black-half {
        background-color: #1d1d1d;
        display: flex;
        align-items: center; 
        color: white;
    }
    
    .black-half-2 {   
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }
    
    .content-wrapper {
        text-align: center;
        padding: 2rem;
    }
    
    @media (max-width: 768px) {
        .split-section {
            min-height: 50vh;
        }
    }





 .contact-card-1 {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.logo-element {
    width: 200px;
    height: 300px;
    background: rgba(255,255,255,0.15);
    border-radius: 40px;
    position: relative;
    margin-right: 2rem;
    flex-shrink: 0;
}

.logo-element::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
}

.contact-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.form-section {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
    border: none;
}

.requirements-section h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    background-color: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
}

.form-check-input:checked {
    background-color: white;
    border-color: white;
}

.form-check-label {
    color: white;
    margin-left: 0.5rem;
    font-size: 0.95rem;
}

.submit-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .contact-card-1 {
        padding: 2rem 1.5rem;
    }
    
    .logo-element {
        width: 120px;
        height: 180px;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
}

/* -- Gallery-- */

   .custom-tabs {
            border-bottom: 1px solid #e9ecef;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
        }
        
        .custom-tabs::-webkit-scrollbar {
            height: 3px;
        }
        
        .custom-tabs::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        .custom-tabs::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 3px;
        }
        
        .custom-tab {
            display: inline-block;
            padding: 15px 20px;
            color: #6c757d;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
            font-weight: 500;
        }
        
        .custom-tab:hover {
            color: #495057;
            text-decoration: none;
        }
        
        .custom-tab.active {
            color: #fd7e14;
            border-bottom-color: #fd7e14;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            height: 250px;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(253, 126, 20, 0.8), rgba(253, 126, 20, 0.4));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        
        .gallery-item:hover .overlay {
            opacity: 1;
        }
        
        .view-more-btn {
            background: linear-gradient(45deg, #fd7e14, #ff9500);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 40px auto;
            display: block;
        }
        
        .view-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(253, 126, 20, 0.4);
            color: white;
        }
        
        .hidden {
            display: none !important;
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 0fr));
                gap: 15px;
                justify-content: center;
            }
            
            .custom-tab {
                padding: 12px 16px;
                font-size: 14px;
            }
            
            .gallery-item {
                height: 150px;
            }
        }
        
        @media (max-width: 576px) {
            .custom-tab {
                padding: 10px 12px;
                font-size: 13px;
            }
        }
        
        /* Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
        }
        
        .lightbox-close {
            position: fixed;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
            backdrop-filter: blur(10px);
        }
        
        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }
        
        .lightbox-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(253, 126, 20, 0.9);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
            backdrop-filter: blur(10px);
        }
        
        .lightbox-nav:hover {
            background: rgba(253, 126, 20, 1);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 0 20px rgba(253, 126, 20, 0.5);
        }
        
        .lightbox-prev {
            left: 30px;
        }
        
        .lightbox-next {
            right: 30px;
        }
        
        .lightbox-caption {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 18px;
            font-weight: 500;
            text-align: center;
            background: rgba(0, 0, 0, 0.7);
            padding: 12px 24px;
            border-radius: 25px;
            backdrop-filter: blur(15px);
            max-width: 80%;
        }
        
        .lightbox-counter {
            position: fixed;
            top: 30px;
            left: 30px;
            color: white;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px 20px;
            border-radius: 20px;
            backdrop-filter: blur(15px);
        }
        
        @media (max-width: 768px) {
            .lightbox-close {
                top: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
            
            .lightbox-nav {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .lightbox-prev {
                left: 20px;
            }
            
            .lightbox-next {
                right: 20px;
            }
            
            .lightbox-caption {
                font-size: 16px;
                bottom: 20px;
                padding: 10px 20px;
                max-width: 90%;
            }
            
            .lightbox-counter {
                top: 20px;
                left: 20px;
                font-size: 14px;
                padding: 8px 16px;
            }
            
            .lightbox img {
                max-width: 90%;
                max-height: 80%;
            }
        }
        
        @media (max-width: 576px) {
            .lightbox-close {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .lightbox-nav {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
            
            .lightbox-prev {
                left: 15px;
            }
            
            .lightbox-next {
                right: 15px;
            }
            
            .lightbox-counter {
                top: 15px;
                left: 15px;
                font-size: 12px;
                padding: 6px 12px;
            }
            
            .lightbox-caption {
                bottom: 15px;
                left: 15px;
                right: 15px;
                transform: none;
                font-size: 14px;
                padding: 8px 16px;
                max-width: none;
            }
            
            .lightbox img {
                max-width: 95%;
                max-height: 75%;
            }
        }


.navbar-toggler
{
    font-size: 10px;
    background: white;

}

/* Footer */
        .footer-section {
            background: var(--light-color);
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--dark-color);;
            text-decoration: none;
        }
         
        
        .footer-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 20px;
        }

      
        
        .footer-link {
            color: #6c757d;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-link:hover { 
            color: var(--accent-color); 
        }
         
        
        .footer-bottom {
            border-top: 1px solid #d3d3d4;
            padding-top: 30px;
            margin-top: 30px;
            color: #6c757d;
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: #6c757d;
            text-decoration: none;
            margin-left: 20px;
        }
        
        .footer-bottom a:hover {
            color: var(--accent-color);
        }

         .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 50%;
            color: #6c757d;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--accent-color);
            color: white;
            border-color: var(--light-color);
            transform: translateY(-2px);
        }
        
        
        @media (max-width: 768px) {
           
            .footer-section {
                padding: 40px 0 20px;
            }
            
            .footer-bottom a {
                margin-left: 0;
                margin-right: 20px;
                display: inline-block;
                margin-bottom: 10px;
            }
        }

/* ---------- */

@media (max-width: 1000px) {
    .contact-image
    {
        display: none;
    }

    .navbar.scrolled .navbar-nav {
    border-color: #ffffff00 !important;
    }

    #objectives
    {
        height:auto !important;
    }

    .footer-image
    {
         display: none;
    } 

    .copyright
    {
       display: none;
    }  

    .footer-image-sm
    {
        display: block;
    }
    
    .display-4 
    {
        font-size: revert;
    }

    .border-white  {
         border-color: #ffffff00!important;
    }
}

.visually-hidden-keywords {
    font-size: 0;
    line-height: 0;
    height: 0;
    margin: 0;
    padding: 0;
    color: transparent;
}