/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
	padding-top: 0; /* Remove any padding if it exists */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.custom-contain {
    padding: 0 30px;
}

/* Top Bar Styles */
.topBars {
    background: #343a40;
    padding: 15px 0;
    color: white;
}

.top-logo {
    max-width: 200px;
}

.top-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Right Side Layout */
.top-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Contact Info */
.top-contact {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 10px;
}

.top-contact a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.top-contact a i {
    margin-right: 5px;
}

.top-contact a:hover {
    color: var(--primary-color);
}

/* Navigation and Social */
.top-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    padding: 5px 10px;
}

.nav-menu ul li a:hover {
    color: var(--primary-color);
}

/* Social Icons */
.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--primary-color);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Banner Section */
.Banner-section {
    background: url('../images/banner-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: black;
}

.banner-txt h1 {
    font-size: 60px;
    margin-bottom: 200px;
}

.Btn-bordered {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.Btn-bordered:hover {
    background: white;
    color: var(--primary-color);
}

/* Rest of your existing section styles */

/* Responsive Styles */
@media (max-width: 1200px) {
    .top-contact {
        font-size: 13px;
        gap: 15px;
    }

    .nav-menu ul {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .top-logo {
        margin: 0 auto 15px;
        text-align: center;
    }

    .top-right {
        align-items: center;
    }

    .top-contact {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .top-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #343a40;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        z-index: 1000;
    }

    .nav-menu.active ul {
        display: flex;
    }
}

@media (max-width: 576px) {
    .top-contact {
        flex-direction: column;
    }

    .banner-txt h1 {
        font-size: 32px;
    }
}

/* Services Section Styles */
.services-Section {
    padding: 80px 0;
    background: var(--light-color);
}

/* Container modifications for horizontal layout */
.services-Section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-Section .row {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    justify-content: space-between;
    margin: 0 -15px;
}

/* Column adjustments */
.services-Section .col-lg-4 {
    flex: 0 0 calc(33.333% - 30px); /* Fixed width with spacing */
    width: calc(33.333% - 30px);
    margin: 0 15px;
    padding: 0;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Service Content */
.service-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Service Images */
.service-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Text */
.service-content h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin: 0 0 15px 0;
}

.service-content p {
    color: var(--secondary-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .services-Section .row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-Section .col-lg-4 {
        flex: 0 0 calc(100% - 30px);
        width: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Footer Styles */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

/* Container adjustments */
footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0 -15px;
}

/* Column styles */
.col-lg-4 {
    flex: 0 0 33.333%;
    padding: 0 15px;
}

.footsLinks {
    margin-bottom: 30px;
}

.footsLinks h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footsLinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footsLinks ul li {
    margin-bottom: 12px;
}

.footsLinks ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footsLinks ul li a:hover {
    color: white;
}

.footsLinks ul li a i {
    width: 16px;
}

/* Pricing CTA Styles */
.pricing-cta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.pricing-cta p {
    margin-bottom: 15px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

/* Copyright Section */
.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    footer .row {
        flex-wrap: wrap;
    }

    .col-lg-4 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .footsLinks {
        text-align: center;
    }

    .footsLinks ul li a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 0 0;
    }
    
    .footsLinks {
        margin-bottom: 20px;
    }

    .footsLinks h4 {
        font-size: 16px;
    }
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

/* Section Header - Matching Services Style */
.parent-heads {
    margin-bottom: 50px;
}

.parent-heads strong {
    color: var(--primary-color);
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.parent-heads h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content Styles */
.about-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content .lead {
    font-size: 20px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 20px;
}

.about-description {
    margin-bottom: 30px;
}

.about-description p {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Highlights Section */
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.highlight {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight i {
    color: var(--primary-color);
    font-size: 20px;
}

.highlight span {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
}

.certification-badge img {
    /* Set a small, fixed size for the badge */
    width: 50px; 
    height: auto;
    display: block;
    margin-right: 10px; /* Space between badge and next highlight */
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .parent-heads h2 {
        font-size: 32px;
    }

    .about-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .parent-heads h2 {
        font-size: 28px;
    }

    .about-content .lead {
        font-size: 18px;
    }

    .about-highlights {
        flex-direction: column;
        gap: 15px;
    }
	
	.about-highlights .highlight:not(.certification-badge) {
    /* Use flex for text highlights to align icon and text */
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .highlight {
        min-width: 100%;
    }
	
	.certification-badge img {
        width: 40px; /* Slightly smaller on mobile */
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }

    .parent-heads h2 {
        font-size: 24px;
    }

    .about-content {
        padding: 20px;
    }

    .about-content .lead {
        font-size: 16px;
    }
}