@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@700;900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
    --solterix-yellow: rgb(255, 242, 0);
    --solterix-blue: rgb(0, 114, 188);
}

body {
    font-family: 'Roboto', sans-serif; /* Updated font family */
    font-weight: 400;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light grey background for contrast */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700!important;
    line-height: 1.2;
    font-family: 'Titillium Web', sans-serif;
}

h3 small{
    font-weight: 400;
}

.lead{
    font-family: 'Titillium Web', sans-serif;
}

.navbar {
    overflow: visible;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--solterix-blue);
  }
  
  .navbar-brand-box {
    position: relative;
    z-index: 1020;
  }
  
  .navbar-brand {
    position: absolute;
    top: -30px; /* adjust this value to control the overlap */
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  
  .navbar-brand img{
    width: 170px;
  }

  .navbar .container {
    position: relative;
  }
  
  .navbar-nav .nav-link {
    color: #fff; /* This is the color of your nav links */
    font-family: 'Titillium Web', sans-serif;
  }
  
  .navbar-nav .nav-link-tel {
    color: var(--solterix-blue);
    background: var(--solterix-yellow);
    font-family: 'Titillium Web', sans-serif;
    border-radius: 5px;
    margin-left: 10px!important;
    border: 3px solid var(--solterix-yellow);
    padding: 5px;
  }

  .navbar-nav .nav-link-tel:hover{
    color: var(--solterix-yellow);
    background: var(--solterix-blue);
  }

  .navbar-nav .nav-link:hover {
    color: var(--solterix-yellow); /* This is the hover color of your nav links */
  }

/* Hero section styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/img/hero.jpg') no-repeat center center;
    background-size: cover;
    color: #cfcfcf;
}
.hero-text h1 {
    font-size: 3rem; /* Larger text */
    color: #fff;
}


.hero-mascot-wrap{
    position: relative;
}
.hero-mascot{
    position: absolute;
    width: 60%;
    bottom: 0;
    margin: auto auto;
}
.hero-text{
    padding: 200px 0;
}

.breadcrumb-section {
    background-color: var(--solterix-blue);
    color: var(--solterix-yellow);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); /* for better readability */
    background-image: url('/assets/img/hero.jpg'); /* Add your image path here */
    background-size: cover;
    background-position: center;
    padding: 30px;
    text-align: right;
}


/* About section styles */
.about-section h2 {
    color: var(--solterix-blue); /* Brand color for headers */
}

/* Services section styles */
.services-section {
    padding: 2rem 0;
}

/* Contact section styles */
.contact-section {
    background-color: #fff;
    padding: 2rem 0;
}

.footer-custom {
    background-color: var(--solterix-blue);
    color: #ffffff;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-custom h3 {
    color: var(--solterix-yellow);
    margin-bottom: 1rem;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a{
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--solterix-yellow);
}

.footer-contact p,
.footer-about p {
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .footer-custom {
        text-align: center;
    }
}

section h2 {
    font-size: 2rem;
    color: var(--solterix-blue);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.testimonials-section h2 {
    margin-bottom: 2rem;
}

/* Projects Section */
.projects-section {
    padding: 3rem 0;
}

/* Alternate background colors for engaging look */
section:nth-of-type(odd) {
    background-color: #fff;
}

section:nth-of-type(even) {
    background-color: #f8f9fa;
}

/* Hover effects for links */
a:hover {
    text-decoration: none;
    color: var(--solterix-yellow);
}

/* Responsive text alignment for smaller screens */
@media (max-width: 768px) {
    .text-center-sm {
        text-align: center;
    }
}

.cta{
    background-color: var(--solterix-yellow);
    padding: 30px 0;
    font-family: 'Titillium Web', sans-serif;
    color: var(--solterix-blue);
    font-size: 24px;
}
.cta span{
    font-size: 19px;
}

.btn-solterix-blue
{
    background: var(--solterix-blue);
    color: #fff;
    border: 3px solid var(--solterix-blue);
}

.btn-solterix-blue:hover{
    background: var(--solterix-yellow);
}

.service-card .card {
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .service-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .service-card .card-img-top {
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures the image covers the area nicely */
  }
  
  .service-card .card-body {
    padding: 1rem;
  }
  
  .service-card .card-title {
    color: var(--solterix-blue);
  }
  
  .service-card .btn-primary {
    background-color: var(--solterix-blue);
    border: none;
  }
  
  .service-card .btn-primary:hover {
    background-color: darken(var(--solterix-blue), 10%); /* Slightly darken on hover */
  }
  
  section {
    padding: 4rem 0; /* More vertical spacing */
}

.core-values {
    text-align: center;
    padding: 0rem 0;
}

.core-value-item {
    margin-bottom: 2rem;
}

.core-value-item i {
    color: var(--solterix-blue);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.core-value-item h3 {
    color: var(--solterix-blue);
    margin-bottom: 0.5rem;
}

.core-value-item p {
    color: #666;
    font-size: 0.9rem;
}

.core-value-item:hover i {
    color: var(--solterix-yellow);
}

@media (max-width: 768px) {
    .core-value-item {
        margin-bottom: 3rem;
    }
}

.certifications {
    text-align: center;
    padding: 0rem 0;
}

.certification-item {
    margin-bottom: 2rem;
}

.certification-item i {
    color: #fff;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.certification-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.certification-item p {
    color: #f1f1f1;
    font-size: 0.9rem;
}

.certification-item:hover i {
    color: var(--solterix-yellow);
}

@media (max-width: 768px) {
    .certification-item {
        margin-bottom: 3rem;
    }
}

.blue-band{
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: var(--solterix-blue);
    color: #fff;
}
.grey-band{
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #efefef;
    color: #000;
}

.service-row{
    padding: 30px 0;
}

.service-container h2 {
    color: var(--solterix-blue);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.service-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.service-container p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.service-container .btn-primary {
    background-color: var(--solterix-blue);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
}

.service-container .btn-primary:hover {
    background-color: var(--solterix-yellow);
    color: var(--solterix-blue);
}

@media (max-width: 768px) {
    .service-container .row {
        flex-direction: column-reverse;
    }
}
