* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
    background-color: #024611;
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.location-finder {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-finder i {
    font-size: 14px;
}

.zip-input {
    display: flex;
    align-items: center;
    margin-left: 10px;
    background-color: white;
    border-radius: 3px;
    overflow: hidden;
}

.zip-input input {
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    width: 120px;
    outline: none;
}

.zip-input button {
    background-color: #4a7c59;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zip-input button:hover {
    background-color: #5a8d69;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.top-link:hover {
    opacity: 0.8;
}

.login-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    transition: opacity 0.3s;
}

.login-link:hover {
    opacity: 0.8;
}

.login-link i {
    font-size: 16px;
}

/* Main Header Styles */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: bold;
    color: #2d5f3f;
    font-style: italic;
}

.logo-sub {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Navigation Styles */
.main-nav {
    flex: 1;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2d5f3f;
}

.nav-link i {
    font-size: 10px;
    color: #666;
}

.nav-link sup {
    font-size: 8px;
    vertical-align: super;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nutrien-hub-btn {
    background-color: #b8860b;
    color: white;
    padding: 8px 16px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.nutrien-hub-btn:hover {
    background-color: #9a7109;
}

.nutrien-hub-btn i {
    font-size: 10px;
}

.search-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #2d5f3f;
}
.bread-content{
    padding: 0 40px;
    text-align: center;
}

.bread-content h3{
    color: #fff;
    padding-top: 40px;
    font-size: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.bread-content h3::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background-color: #fff;
}

.bread-content h1 a{
    text-decoration: none;
    color:#2d5f3f;
    font-weight: 600;
    padding-right: 5px;
}

/* Breadcrumb Styles */
.bread-crumb {
    height: 180px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.bread-crumb h1 {
    display: inline;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: capitalize;
}

.bread-crumb h1:first-child {
    color: #2d5f3f;
    font-weight: 600;
}

.bread-crumb h1:last-child {
    color: #333;
    font-weight: 600;
    padding-left: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .main-nav {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
}
.contact-section {
    padding: 60px 20px;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container-contact{
    margin: 0 auto;
    max-width: 1100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column - Contact Info */
.contact-info {
    padding-right: 40px;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 13px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: 'montserrat';
    font-weight: 500;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.info-item-half {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:  #2d5f3f;
    font-size: 18px;
    margin-right: 15px;
    border: 2px solid  #2d5f3f;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 13px;
    color: #0f0f0f;
    line-height: 1.6;
    font-family: 'montserrat';
    font-weight: 500;
}

.hours-row {
    display: flex;
    gap: 40px;
}

.hours-item {
    display: flex;
    flex-direction: column;
}

.day {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 4px;
}

.time {
    font-size: 14px;
    color: #6c757d;
}

/* Right Column - Contact Form */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.required {
    color: #ff4444;
}

/* Input styles - Bottom border only */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #dee2e6;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #0066ff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    font-family: 'montserrat';
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

/* Input with icon container */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 14px;
}

.input-with-icon input {
    padding-right: 30px;
}

/* Textarea specific styles */
.form-group textarea {
    resize: vertical;
    height: 40px;
    min-height: 40px;
    padding: 8px 0;
    font-family: inherit;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background-color: #024611;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
    font-family: 'montserrat';
}

.submit-btn:hover {
    background-color: #2d5f3f;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 25px;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 14px;
    }
}
/* Footer Styles */
.site-footer {
    background-color: #024611;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Logo and Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    font-style: italic;
    line-height: 1;
}

.logo-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 5px;
}

.company-address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    min-width: 150px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Social and Visit Section */
.footer-bottom-section {
    display: flex;
    gap: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Media Section */
.social-section {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-icons i {
    font-size: 16px;
}

/* Visit Section */
.visit-section {
    display: flex;
    flex-direction: column;
}

.zip-search {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 200px;
}

.zip-input {
    flex: 1;
    padding: 10px 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}

.zip-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 1px;
}

.zip-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.zip-submit {
    padding: 10px 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.zip-submit:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.zip-submit i {
    font-size: 14px;
}

.locations-link {
    color: #ffd700;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s;
}

.locations-link:hover {
    color: #ffed4a;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.country-nav {
    display: flex;
    gap: 30px;
}

.country-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.country-nav a:hover {
    color: #ffffff;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 250px 1fr;
        gap: 60px;
    }
    
    .footer-links-section {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 20px;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .country-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 28px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .country-nav {
        gap: 15px;
    }
}
.about-container{
    margin: 0 auto;
    max-width: 1100px;
    padding: 40px 20px;
}
.about-section{
    margin-top: 50px;
    margin-bottom: 30px;
}

.about-content {
    width: 100%;
}

.about-content .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content .col-md-6 {
    width: 100%;
}

.about-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #024611;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #000000;
    font-family: 'montserrat';
    font-weight: 400;
}

.about-content img {
    width: 100%;
    height: auto; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content .row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content h1 {
        font-size: 28px;
    }
}
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 90px;
    padding-top: 20px;
}

.card {

    color: black;
    padding: 40px 30px;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        0 100%
    );
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: #0246110a;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        0 100%
    );
    z-index: -1;
   
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Alternative colors for variety */
.card.blue {
    background: #efefef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card.purple {
    background: #efefef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'montserrat';
}

.card-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.95;
    flex-grow: 1;
}

.card-button {
    background: white;
    color: #DC2626;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.card.blue .card-button {
    color: #2563EB;
}

.card.purple .card-button {
    color: #7C3AED;
}

.card-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}
.service-block4 {
    position: relative;
    border: 1px solid #f7f7f7;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-radius: 5px;
    overflow: hidden;
    padding: 30px
}

.service-block4:before {
    display: none;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;

    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-block4:hover .service-image img {
    transform: scale(1.05);
}

.service-block4 .service-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    text-align: center
}

.service-block4 i {
    color: #86bc42;
    font-size: 38px;
    line-height: normal;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    margin-bottom: 0
}

.service-block4:hover i {
    color: #86bc42;
}

.service-block4 .service-desc {
    position: relative
}
.service-block4 .service-desc p{
    font-size: 13px;
    line-height: 1.6;
    font-family: 'montserrat';

    
    
}
.service-block4 .service-desc h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600
}

.service-block4 .service-desc h5 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500
}

.service-block4 .service-desc h5:after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #86bc42;
    margin-top: 10px;
    margin-bottom: 15px;
    -moz-transition-duration: .4s;
    -ms-transition-duration: .4s;
    -webkit-transition-duration: .4s;
    -o-transition-duration: .4s;
    transition-duration: .4s
}

.service-block4 p {
    margin-top: 25px;
    padding-right: 10px;
    margin-bottom: 0;
    font-size:13px;
}

@media screen and (max-width: 1199px) {
    .service-block4 .service-desc h4 {
        font-size: 16px;
        margin-bottom: 5px
    }
    .service-block4 p {
        padding-right: 10px;
        margin-top: 20px
    }
    .service-block4 i {
        font-size: 34px
    }
}

@media screen and (max-width: 991px) {
    .service-block4 {
        padding: 25px
    }
    .service-block4 .service-desc h4 {
        font-size: 15px
    }
    .service-block4 i {
        font-size: 32px
    }
    .service-block4 p {
        margin-top: 15px;
        padding-right: 10px
    }
    .service-image {
        height: 160px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .service-block4 {
        padding: 20px
    }
    .service-block4 i {
        font-size: 28px
    }
    .service-block4 .service-icon {
        top: 13px;
        right: 12px
    }
    .service-image {
        height: 150px;
        margin-bottom: 15px;
    }
}

.margin-30px-bottom {
    margin-bottom: 30px;
}

/* Services Section Styles */
section {
    padding: 60px 0;
}

/* Services Section - Row and column grid system */
section .row.mt-60 {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -15px;
    margin-right: -15px;
}

section .row.mt-60 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Services Section - Column classes for service-block4 */
/* For Large screens (992px and above) - 4 columns */
@media (min-width: 992px) {
    section .row.mt-60 .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    
    section .row.mt-60 .col-lg-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
}

/* For Medium screens (768px to 991px) - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    section .row.mt-60 .col-md-6,
    section .row.mt-60 .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* For Small screens (below 768px) - 1 column */
@media (max-width: 767px) {
    section .row.mt-60 .col-md-6,
    section .row.mt-60 .col-lg-3,
    section .row.mt-60 .col-lg-4,
    section .row.mt-60 .col-xs-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Utility classes */
.mt-60 {
    margin-top: 60px;
}

.h-100 {
    height: 100%;
}

.xs-margin-20px-bottom {
    margin-bottom: 20px;
}

.sm-margin-30px-bottom {
    margin-bottom: 30px;
}

.section-heading {
    margin-bottom: 40px;
}

.title-style4 {
    text-align: center;
}

.border-bottom {
    border-bottom: 1px solid #e0e0e0;
}

.padding-25px-bottom {
    padding-bottom: 25px;
}

.sm-padding-15px-bottom {
    padding-bottom: 15px;
}

.section-heading h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-heading h3 span {
    color: #86bc42;
}

.section-heading p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.width-55 {
    width: 55%;
}

.sm-width-75 {
    width: 75%;
}

.xs-width-95 {
    width: 95%;
}

@media (max-width: 991px) {
    .sm-width-75 {
        width: 75%;
    }
    .sm-padding-15px-bottom {
        padding-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .xs-width-95 {
        width: 95%;
    }
    .xs-margin-20px-bottom {
        margin-bottom: 20px;
    }
}
.service-container{
    margin: 0 auto;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
}