/*

Theme Name: Deepak Sharma Theme

Theme URI: https://example.com

Author: Deepak Sharma

Author URI: https://example.com

Description: A custom WordPress theme built with Bootstrap 5

Version: 1.0.0

License: GNU General Public License v2 or later

License URI: http://www.gnu.org/licenses/gpl-2.0.html

Text Domain: deepak-sharma-theme

Tags: bootstrap, responsive, custom

*/



/* ==========================================================================

   Custom Styles

   ========================================================================== */



/* Add your custom styles below */



body {

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

}



/* Logo Styles */
.navbar-brand img,
.custom-logo-link img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Smooth scroll behavior */

html {

    scroll-behavior: smooth;

}



/* Links */

a {

    transition: all 0.3s ease;

}



/* Buttons */

.btn {

    transition: all 0.3s ease;

}



/* Cards */

.card {

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.card:hover {

    transform: translateY(-5px);

    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;

}



/* Hero Section */

.hero {

    min-height: 60vh;

    display: flex;

    align-items: center;

}



/* Stats Section */

.stats-item {

    transition: transform 0.3s ease;

}



.stats-item:hover {

    transform: scale(1.05);

}



/* Footer Styles */

footer a:hover {

    opacity: 0.8;

}



/* Responsive adjustments */

@media (max-width: 991.98px) {

    .navbar-brand img,
    .custom-logo-link img {

        max-height: 80px;
        max-width: 80px;

    }

}

