/*
Theme Name: IT Solutions Theme
Theme URI: https://example.com/it-solutions-theme
Author: Your Name
Author URI: https://example.com
Description: A custom theme for IT Solutions website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: it-solutions-theme
*/

body {
    background-color: #f0f8ff; /* Light sky blue background */
    color: #333;
}

.main-header.dark .navbar {
    background-color: #007bff; /* Sky blue */
}

.main-header.dark .navbar-brand,.main-header.dark .nav-link {
    color: #fff !important;
}

.main-header.bg-white .navbar-brand,.main-header.bg-white .nav-link {
    color: #000;
}

.main-header.dark .navbar-toggler{
    border-color: #fff;
}

.main-header.dark .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-header {
    position: fixed;
    /*top: 0px;*/
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.main-header.bg-white {
    display: none; /* Initially hide the white header */
    filter: drop-shadow(0 3px 6px rgba(18, 19, 59, .08));
    transition: all 0.3s ease-in-out;
}


.hero-section {
    background-color: #007bff; /* Sky blue */
    color: white;
    padding: 90px 0;
    display: flex;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3rem;
}

.service{
    margin-bottom: 15px;
}

.service-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

.footer {
    background-color: #007bff; /* Sky blue */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.site-logo img {
    max-width: 100px; /* Adjust size as needed */
}

.site-title {
    font-size: 24px; /* Adjust size as needed */
    font-weight: bold;
}

.service-card .service-img{
    height: auto;
    width: 70px;
}

@media(min-width: 1024px) and (orientation: landscape){
    .hero-section .hero-row{
        /*height: 35vw;*/
        /*max-height: calc(100vh - 0px);*/
        align-items: center;
    }
    .hero-section .hero-row h1{
        text-wrap: balance;
    }
}
@media(max-width: 786px){
    .hero-section {
      text-align: center;
    }
}

