/* --- Global & Root Variables --- */
:root {
    --primary-color: #0082c8; /* Syno Blue */
    --secondary-color: #00d4ff;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --card-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* --- Section & Header Fix --- */
.catalog-section {
    padding: 50px 0 40px 0 !important; /* Top padding header fix ke liye */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    z-index: 1;
}

/* Navbar fix taaki wo hamesha top par rahe */
.navbar, header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000 !important;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* --- Catalog Header Content --- */
.header-content {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.title-divider .line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.title-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* --- Premium Card Styling --- */
.premium-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.image-container {
    position: relative;
    padding: 20px;
    background: #fdfdfd;
    overflow: hidden;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 130, 200, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.premium-card:hover .card-overlay {
    opacity: 1;
}

.preview-btn {
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.card-body {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* --- Download Button --- */
.btn-download-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download-main:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 130, 200, 0.3);
}

/* --- SIRF RESPONSIVE GAP UPDATE --- */
@media (max-width: 768px) {
    .catalog-section {
        padding-top: 120px !important;  
    }
    
    .main-title { font-size: 1.8rem; }
    
    
    .catalog-section .col-md-6, 
    .catalog-section .col-lg-4 {
        margin-bottom: 50px !important;  
    }

   
    .card-body {
        padding-bottom: 40px !important;  
        display: flex;
        flex-direction: column;
        align-items: center;  
        text-align: center;
    }

    .btn-download-main {
        width: fit-content;  
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .premium-card {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Tablet aur Choti screens par 1 card dikhane ke liye fix */
@media (max-width: 991px) { 
    .catalog-section .col-md-6, 
    .catalog-section .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        display: block !important;
        margin-bottom: 30px !important; /* Cards ke beech gap ke liye */
    }

    /* Card ko center align karne ke liye agar container chota ho */
    .premium-card {
        max-width: 500px; /* Card bahut zyada wide na ho jaye */
        margin: 0 auto !important; 
    }
}



  
.contact-section{
    padding-bottom:50px;
}