/* APK Security Ltd - Enhanced Modern Stylesheet */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS Variables */
:root {
    --black: #000000;
    --silver: #C0C0C0;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-silver: linear-gradient(145deg, #e6e6e6 0%, #c0c0c0 50%, #a8a8a8 100%);
    --gradient-button: linear-gradient(145deg, #d4d4d4, #b8b8b8);
    --box-shadow-elevated: 0 20px 40px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
    --box-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
    --box-shadow-button: 0 8px 25px rgba(192, 192, 192, 0.3), 0 4px 10px rgba(192, 192, 192, 0.2);
    --text-shadow-glow: 0 0 20px rgba(192, 192, 192, 0.5), 0 0 40px rgba(192, 192, 192, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #111111 100%);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

html {
    scroll-behavior: smooth;
}

/* Typography - Saira for headings, logo, navigation */
h1, h2, h3, h4, h5, h6, 
.navbar-brand, 
.navbar-nav .nav-link,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    text-shadow: var(--text-shadow-glow);
}

/* Custom Button Styles */
.btn-silver {
    background: var(--gradient-silver);
    color: var(--black);
    border: none;
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 35px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--box-shadow-button);
}

.btn-silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-silver:hover::before {
    left: 100%;
}

.btn-silver:hover {
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    color: var(--black);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(192, 192, 192, 0.4),
        0 8px 15px rgba(192, 192, 192, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-silver:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 8px 20px rgba(192, 192, 192, 0.3),
        0 4px 8px rgba(192, 192, 192, 0.2);
}

/* Text Color Classes */
.text-silver {
    color: var(--silver) !important;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--silver) !important;
    text-shadow: var(--text-shadow-glow);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(192, 192, 192, 0.8);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 12px 20px !important;
    border-radius: 25px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--silver) !important;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
    transform: translateY(-2px);
}

/* Hero Carousel */
.hero-carousel {
    height: 90vh;
    position: relative;
}

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
}

.slide-1 {
    background-image: url('/media/5ajlf1cj/05ece3f6-db65-45f0-8edb-ad121d8de32c-large.jpeg');
}

.slide-2 {
    background-image: url('/media/mzqfu2vl/img_2073-large.jpeg');
}

.slide-3 {
    background-image: url('/media/kfzpcmsn/img_0292-large.jpeg');
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-slide h1 {
    font-weight: 900;
    text-shadow: 
        0 0 30px rgba(192, 192, 192, 0.6),
        0 0 60px rgba(192, 192, 192, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Contact Bar */
.contact-bar {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--silver), transparent) 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(192, 192, 192, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(192, 192, 192, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 192, 192, 0.2);
}

/* Sections */
section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(192, 192, 192, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.silver-line {
    width: 120px;
    height: 4px;
    background: var(--gradient-silver);
    margin: 1.5rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
    position: relative;
}

.silver-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -10px;
    right: -10px;
    bottom: -2px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.3), transparent);
    border-radius: 4px;
    z-index: -1;
}

/* About Cards */
.about-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-card);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--box-shadow-elevated);
    border-color: rgba(192, 192, 192, 0.4);
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.team-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.95));
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-card);
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-card:hover::after {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--box-shadow-elevated);
    border-color: rgba(192, 192, 192, 0.5);
}

.team-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.team-card:hover .team-image img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.service-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--box-shadow-elevated);
    border-color: rgba(192, 192, 192, 0.4);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.6);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.8);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.gallery-track {
    display: flex;
    animation: slide 25s infinite linear;
    gap: 2rem;
    width: calc(300px * 10 + 2rem * 9);
}

.gallery-item {
    flex: 0 0 300px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(192, 192, 192, 0.3);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    border-color: rgba(192, 192, 192, 0.6);
    box-shadow: 0 15px 40px rgba(192, 192, 192, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.8) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5 - 2rem * 4));
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--silver), transparent) 1;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
}

.stat-item {
    padding: 3rem 2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    background: rgba(192, 192, 192, 0.03);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(192, 192, 192, 0.08);
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.2);
}

.stat-item h3 {
    font-weight: 900;
    text-shadow: var(--text-shadow-glow);
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.8);
}

/* Client Section */
.clients-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.client-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-card);
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(192, 192, 192, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-card:hover::before {
    opacity: 1;
}

.client-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--box-shadow-elevated);
    border-color: rgba(192, 192, 192, 0.4);
}

.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(192, 192, 192, 0.2);
}

.client-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.client-card:hover .client-logo img {
    filter: grayscale(0%) brightness(1) invert(0);
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-card);
    transition: all 0.3s ease;
}

.contact-info .contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow-elevated);
    border-color: rgba(192, 192, 192, 0.4);
}

.contact-form {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-elevated);
}

.contact-form .form-control {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(192, 192, 192, 0.2);
    color: var(--white);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.contact-form .form-control:focus {
    background: linear-gradient(145deg, rgba(26, 26, 26, 1), rgba(0, 0, 0, 1));
    border-color: var(--silver);
    box-shadow: 
        0 0 0 0.2rem rgba(192, 192, 192, 0.25),
        0 10px 25px rgba(192, 192, 192, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--silver), transparent) 1;
}

/* Carousel Custom Styles */
.carousel-indicators button {
    background: var(--gradient-silver);
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
    transition: all 0.3s ease;
}

.carousel-indicators button:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
}

.carousel-indicators button.active {
    background: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100%, 100%;
    background: var(--gradient-silver);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(192, 192, 192, 0.3);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(192, 192, 192, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-silver);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #ffffff, #d0d0d0);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-slide {
        background-attachment: scroll;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 10px 15px !important;
    }
    
    .team-image {
        height: 220px;
    }
    
    .gallery-item {
        flex: 0 0 250px;
        height: 170px;
    }
    
    .contact-info .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-info .contact-item i {
        margin-bottom: 1rem;
    }
    
    .contact-info .contact-item .ms-3 {
        margin-left: 0 !important;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .btn-silver {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .client-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-slide .container {
        padding: 0 1rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .fs-2 {
        font-size: 1.5rem !important;
    }
    
    .gallery-item {
        flex: 0 0 200px;
        height: 140px;
    }
    
    .service-card,
    .team-card,
    .about-card,
    .client-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .contact-form .form-control {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .client-logo {
        height: 80px;
        padding: 0.5rem;
    }
    
    .client-logo img {
        max-height: 60px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Shine Animation */
@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

/* Hover Glow Effects */
.glow-on-hover {
    transition: all 0.3s ease;
}

.glow-on-hover:hover {
    filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.6));
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-effect {
    animation: float 3s ease-in-out infinite;
}

/* Text Gradient */
.gradient-text {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Advanced Button Styles */
.btn-advanced {
    position: relative;
    background: linear-gradient(145deg, #e6e6e6, #b8b8b8);
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(192, 192, 192, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s;
}

.btn-advanced:hover::before {
    left: 100%;
}

.btn-advanced:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(192, 192, 192, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-advanced:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 5px 15px rgba(192, 192, 192, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.accreditations {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accreditation-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.accreditation-logo:hover {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .accreditation-logo {
        height: 50px;
    }
}
.min-vh-80 {
  min-height: 80vh !important;
}

.min-vh-90 {
  min-height: 90vh !important;
}

.carousel-indicators [data-bs-target] {
    height: 20px;
    width: 20px;
    border-bottom: 0;
    border-top: 0;
}
.carousel-indicators button.active {
    transform: none;
    border-bottom: 0;
    border-top: 0;
}

.blue {
    color: #4692ec !important;
}

.services-section {
  background: linear-gradient(to top, rgba(0,0,0,.75),rgba(0,0,0,.75)), url(/media/10gbwqia/62409940_833998803635742_4350793401172492288_n-large.jpeg) !important;
  background-size: cover !important;
}

.stats-section {
  background: linear-gradient(to top, rgba(0,0,0,.75),rgba(0,0,0,.75)), url(/media/l4gdevni/img_2115-large.jpeg) !important;
  background-size: cover !important;
  background-position: center !important;
}

.carousel-control-next, .carousel-control-prev {
    width: 6%;
}

/* Gallery Page Styles - Add to your main stylesheet */

/* Page Hero Banner */
.page-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    padding: 140px 0 40px;
    position: relative;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--silver), transparent) 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: 'Saira', sans-serif;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow-glow);
}

/* Gallery Grid Section */
.gallery-grid-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    min-height: 60vh;
    position: relative;
}

.gallery-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Gallery Grid Item */
.gallery-grid-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid-card {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio (Square) */
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(192, 192, 192, 0.2);
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    box-shadow: var(--box-shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-grid-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.8) contrast(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--silver);
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
    transform: scale(0.5);
    transition: all 0.3s ease;
}

/* Hover Effects */
.gallery-grid-item:hover .gallery-grid-card {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-elevated);
    border-color: rgba(192, 192, 192, 0.5);
}

.gallery-grid-item:hover .gallery-grid-card img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

.gallery-grid-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-grid-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Modal Styles */
.gallery-modal-content {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.98), rgba(26, 26, 26, 0.98));
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-elevated);
}

.gallery-modal-content .modal-header {
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    padding: 1.5rem 2rem;
}

.gallery-modal-content .modal-title {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.gallery-modal-content .modal-body {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.gallery-modal-content .modal-body img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    object-fit: contain;
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.btn-close-white:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-overlay i {
        font-size: 2.5rem;
    }
    
    .gallery-modal-content .modal-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-grid-card {
        border-radius: 15px;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
    
    .gallery-modal-content .modal-title {
        font-size: 1.2rem;
    }
}

/* About Page - Additional Styles (Add to main stylesheet) */

/* Team Description Section */
.team-description-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    position: relative;
}

.team-description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.team-description-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-description-card:hover::before {
    opacity: 1;
}

.team-description-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-elevated);
    border-color: rgba(192, 192, 192, 0.4);
}

.team-description-card .icon-wrapper i {
    font-size: 5rem;
    text-shadow: var(--text-shadow-glow);
    transition: all 0.3s ease;
}

.team-description-card:hover .icon-wrapper i {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.8);
}

.team-description-card h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    text-shadow: var(--text-shadow-glow);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.team-description-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-silver);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.team-description-card p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-description-card p:last-child {
    margin-bottom: 0;
}

/* Placeholder Team Images - Style for consistent look */
.team-image img[src*="placeholder"] {
    background: linear-gradient(145deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .team-description-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .team-description-card .icon-wrapper i {
        font-size: 4rem;
    }
    
    .team-description-card h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .team-description-card {
        padding: 1.5rem 1rem;
    }
    
    .team-description-card .icon-wrapper i {
        font-size: 3rem;
    }
    
    .team-description-card h3 {
        font-size: 1.5rem;
    }
    
    .team-description-card p {
        font-size: 0.95rem;
    }
}

/* Services Page - Additional Styles (Add to main stylesheet) */

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    position: relative;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--silver), transparent) 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    text-shadow: var(--text-shadow-glow);
}

/* Outline Button Style */
.btn-outline-silver {
    background: transparent;
    color: var(--silver);
    border: 2px solid var(--silver);
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 35px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.btn-outline-silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-silver);
    transition: left 0.4s;
    z-index: -1;
}

.btn-outline-silver:hover {
    color: var(--black);
    border-color: var(--silver);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(192, 192, 192, 0.3),
        0 0 30px rgba(192, 192, 192, 0.4);
}

.btn-outline-silver:hover::before {
    left: 0;
}

.btn-outline-silver:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 8px 20px rgba(192, 192, 192, 0.2),
        0 0 20px rgba(192, 192, 192, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
    }
    
    .btn-silver.me-3 {
        margin-bottom: 1rem;
        margin-right: 0 !important;
        display: block;
        width: 100%;
    }
    
    .btn-outline-silver {
        display: block;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 3rem 0 !important;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .btn-silver,
    .btn-outline-silver {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Contact Page - Additional Styles (Add to main stylesheet) */

/* Contact Main Section */
.contact-main-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-main-section h2 {
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    text-shadow: var(--text-shadow-glow);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 25px;
    padding: 3rem;
    height: 100%;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-card);
    transition: all 0.3s ease;
}

.contact-info-wrapper:hover {
    box-shadow: var(--box-shadow-elevated);
    border-color: rgba(192, 192, 192, 0.3);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--box-shadow-elevated);
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Saira', sans-serif;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper select.form-control {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(192, 192, 192, 0.2);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper select.form-control:focus {
    background: linear-gradient(145deg, rgba(26, 26, 26, 1), rgba(0, 0, 0, 1));
    border-color: var(--silver);
    box-shadow: 
        0 0 0 0.2rem rgba(192, 192, 192, 0.25),
        0 10px 25px rgba(192, 192, 192, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-wrapper select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C0C0C0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.contact-form-wrapper select.form-control option {
    background: rgba(0, 0, 0, 0.95);
    color: var(--white);
}

/* Hover Effect for Links */
.hover-silver {
    transition: all 0.3s ease;
}

.hover-silver:hover {
    color: var(--silver) !important;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

/* Map Section */
.map-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    padding: 0;
}

.map-wrapper {
    position: relative;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--silver), transparent) 1;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(100%) brightness(0.7) contrast(1.2);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(50%) brightness(0.85) contrast(1.1);
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--silver), transparent) 1;
    backdrop-filter: blur(20px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.quick-contact-bar h4 {
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.quick-contact-bar .btn-silver {
    white-space: nowrap;
}

.quick-contact-bar .btn-silver i {
    transition: transform 0.3s ease;
}

.quick-contact-bar .btn-silver:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-main-section h2 {
        font-size: 1.75rem;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .quick-contact-bar h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    
    .contact-form-wrapper .form-control,
    .contact-form-wrapper select.form-control {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .quick-contact-bar {
        padding: 1.5rem 0 !important;
    }
    
    .quick-contact-bar h4 {
        font-size: 1rem;
    }
    
    .quick-contact-bar .btn-silver {
        width: 100%;
        padding: 12px 25px;
    }
}