/*
Theme Name: Zotech
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: IT Solutions & Technology HTML Template
Version: 1.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

/* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */

/******************** Product Section Grid with Overlay Names *********************/

.product-grids {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;       /* needed for overlay */
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 250px;
    max-width: 100%;
    height: auto;
    object-fit: cover;  
    display: block;
    transition: transform 0.3s ease; /* optional hover zoom */
}

/* Enhanced mobile image responsiveness */
@media (max-width: 768px) {
    .product-card img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .product-card img {
        height: 180px;
    }
}


/* Hover zoom effect on image */
.product-card:hover img {
    transform: scale(1.05);
}

/* Overlay text */
.product-card h5 {
    position: absolute;
    bottom: 0;                /* appear at bottom of image */
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;              /* white text */
    font-weight: 600;
    background: #26326b; /* semi-transparent black background */
    padding: 10px 0;
    margin: 0;
    z-index: 2;
    transition: background 0.3s ease;
}

/* Optional hover effect for overlay */
.product-card:hover h5 {
    background: #a39f5f;
}

/* Enhanced Responsive Grid */
@media (max-width: 992px) {
    .product-grids {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-grids {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .product-grids {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/********************* Table Content ****************************/

.toc-wrapper {
    background: #f9f9fb; /* light clean background */
    border: 2px solid #4b3fa7; /* purple border */
    padding: 35px;
    margin: 30px 0;
    border-radius: 8px;
}

.toc-heading {
    color: #4b3fa7; /* purple heading */
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* List */
.toc-list {
    list-style: none;
    padding-left: 0;
}

.toc-list li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 22px;
}

/* Arrow Icon */
.toc-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #c9a227; /* golden accent */
    font-size: 12px;
    top: 4px;
}

/* Links */
.toc-list li a {
    color: #1e1e2f; /* dark text */
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

/* Hover Effect */
.toc-list li a:hover {
    color: #4b3fa7; /* purple hover */
    padding-left: 5px;
}






