/* DeftTech Custom CSS Styles */

/* General styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: #0056b3;
    transition: all 0.3s ease;
}

a:hover {
    color: #003d7a;
    text-decoration: none;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #003d7a;
    border-color: #003d7a;
}

.btn-outline-primary {
    color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Hero section */
.cover-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
}

.cover-background .opacity-medium {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.7;
}

/* Cards and content boxes */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.object-fit-cover {
    object-fit: cover;
}

/* Service and solution sections */
.service-box {
    padding: 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0056b3;
}

/* Testimonial styles */
.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 5px;
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    color: #0056b3;
    opacity: 0.2;
}

/* Team section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Footer styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 3rem 0;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #ccc;
}

.footer-heading {
    color: #fff;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #333;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
}

.social-icons a:hover {
    background-color: #0056b3;
}

/* Blog styles */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content blockquote {
    border-left: 4px solid #0056b3;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

/* Case studies */
.case-study-header {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

/* Utilities */
.text-primary {
    color: #0056b3 !important;
}

.bg-primary {
    background-color: #0056b3 !important;
}

.border-primary {
    border-color: #0056b3 !important;
}
