/*===============================================================================
   TEMPLATE      : Dynamic Portfolio Interface
   PROJECT       : Laravel SPA
   VERSION       : 1.0.1
   DEVELOPER     : Sujit Das
   DESCRIPTION   : Personal Portfolio using modern frontend & backend stack
   RELEASE DATE  : August 2025
   LICENSE       : MIT
   WEBSITE       : https://ombit.net
==================================================================== © ombit.net ======*/




/* =================== 01. VARIABLES OR GLOBAL =================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    position: relative;
    overflow-x: hidden;
    background-color: #292929;
}


/* =================== 02. NAVBAR =================== */
.navbar {
    background-color: #000 !important;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin: 0 8px;
    transition: 0.3s;
}

.navbar-nav .nav-link i {
    font-size: 16px;
    margin-right: 5px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.carousel-caption {
    top: 250px;
    left: 300px;
    text-align: left;
}

.carousel-caption h5 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.carousel-caption p {
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.navbar-nav .nav-link.active {
    color: #d036cb !important;
}

.navbar-nav .nav-link:hover {
    color: #d036cb;
}



/* =================== 03. PRODUCT =================== */
.product {
    margin-top: 120px;
}
.product_card {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid #ccc;
    transition: all 900ms ease-in-out;
    cursor: pointer;
}

.product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product_card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.card_body {
    padding: 15px;
    text-align: center;
}

.card_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.card_text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}




/* =================== 04. BOTTOM TO TOP SCROLL  =================== */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ccc;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
}

#scrollTopBtn:hover {
    color: #000;
    background-color: #fff;
}




/* =================== 05. FOOTER =================== */
.footer {
    background-color: #000;
    margin-top: 120px;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-link:hover {
    text-decoration: underline;
}
