/* Custom CSS for Gazman Advanced Technologies */

:root {
    --gat-black: #003366; /* Deep blue */
    --gat-yellow: #FCDC04;
    --gat-red: #D90000;
    --gat-blue: #383d41; /* Sky blue */
    --gat-silver: #E0E0E0;
    --gat-dark-blue: #004d99; /* Medium blue */
    --gat-accent: #FCDC04;
    --gat-sky-blue: #87CEEB;
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

html {
    font-size: 100%; /* Reset to standard size */
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px; /* Set base font size to 14px */
    /* Glassmorphism Background: Neutral dark background to make image backgrounds pop */
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%) !important;
    background-attachment: fixed !important;
    color: #f8fafc;
    min-height: 100vh;
}

/* Glass Prisma Effect for Main Containers */
.container, .main-wrapper, section {
    background: transparent !important;
}

/* Card & Form Glass Prisma Styling */
.card, .glass-panel, .form-container, .modal-content {
    background: rgba(30, 41, 59, 0.4) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 1px solid rgba(252, 220, 4, 0.3) !important;
    transform: translateY(-5px);
}

/* Inputs & Buttons */
.form-control, .form-select, .input-field {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(4px) !important;
    color: #fff !important;
    border-radius: 12px !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fcdc04 !important;
    box-shadow: 0 0 15px rgba(252, 220, 4, 0.2) !important;
}

.btn-primary, .btn-gat {
    background: linear-gradient(135deg, #FF512F 0%, #F09819 100%) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 81, 47, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(255, 81, 47, 0.5) !important;
}

/* Enhanced Text Visibility for new background */
.text-muted {
    color: #d1d1d1 !important;
}

.bg-black {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(150%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-dark {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(20px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
}

.navbar {
    background: rgba(0, 0, 0, 0.5) !important;
    padding: 0.8rem 0;
    border-bottom: 2px solid var(--gat-accent);
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    transition: all 0.3s ease;
}

.top-bar {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 0.85rem;
}

footer.bg-black {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(25px) !important;
}

.service-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 252, 4, 0.5) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.service-card h4, .service-card h5, .service-card h6 {
    color: #ffffff;
}

.service-card p {
    color: #f0f0f0;
}

.modal-content-custom {
    background: linear-gradient(135deg, var(--gat-dark-blue) 0%, var(--gat-blue) 100%);
    border: 1px solid var(--gat-yellow);
    color: #ffffff;
}

.hover-border-yellow {
    transition: border-color 0.3s ease;
}

.hover-border-yellow:hover {
    border-color: var(--gat-yellow) !important;
}

.service-icon {
    color: var(--gat-yellow);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gat-black), var(--gat-yellow), var(--gat-red));
    margin: 15px auto;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.whatsapp-btn {
    right: 30px;
    background-color: #25D366;
}

.call-btn {
    left: 30px;
    background-color: var(--gat-blue);
}

/* Z-Index Fix */
.z-index-2 {
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 80px 0;
    }
    
    .floating-btn {
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Blog Archive List */
.archive-list li a {
    transition: all 0.3s ease;
}

.archive-list li a:hover {
    color: var(--gat-accent) !important;
    padding-left: 5px;
}

.hover-gat-accent:hover {
    color: var(--gat-accent) !important;
}

.badge.bg-gat-primary {
    background-color: var(--gat-yellow) !important;
    color: #000000 !important;
}

/* Enhanced Text Visibility */
p.text-muted, span.text-muted {
    color: #b0b0b0 !important;
}

.bg-dark {
    background-color: rgba(0, 77, 153, 0.85) !important; /* Semi-transparent medium blue instead of black */
}

.border-gat-accent {
    border-color: var(--gat-accent) !important;
}

/* News Ticker */
.news-ticker {
    background: rgba(252, 220, 4, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(252, 220, 4, 0.3);
}

.ticker-title {
    background: rgba(217, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 0 20px;
    position: absolute;
    z-index: 2;
    font-weight: bold;
    text-transform: uppercase;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
    font-weight: 500;
}

.shop-card {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.shop-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: var(--gat-yellow);
}

.shop-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gat-yellow);
}


@keyframes fadeInBody {
    to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 400;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gat-yellow) !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: rgba(85, 110, 136, 0.95);
    border: 1px solid var(--gat-yellow);
    border-radius: 10px;
    margin-top: 10px;
}

.dropdown-item {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--gat-yellow);
    color: #000000 !important;
}

/* Buttons */
.btn-gat-primary {
    background-color: var(--gat-yellow);
    color: #000000;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-gat-primary:hover {
    background-color: var(--gat-red);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 10px 30px;
}

/* Hero Carousel */
.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.5) 0%, rgba(0, 119, 190, 0.3) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
}

.text-gat-accent {
    color: var(--gat-yellow) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Modal/Lightbox for Gallery */
.gallery-img-expand {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img-expand:hover {
    transform: scale(1.05);
}

