* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


header {
    padding: 20px 0;
    background-color: #fff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo-icon {
    width: 20px;
    height: 20px;
    background-color: #cda274;
    border-radius: 50%;
    margin-right: 10px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #cda274;
}


.hero {
    background-color: #efefef;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
   width: 1280px;
   height: 350px;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    max-width: 600px;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #292f36;
}

.breadcrumb {
    margin-left: -10px;
    gap: 10px;
    color: #4d5053;
}
.breadcrumb-2{
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin-left: 600px;
margin-top: -230px;
font-size: medium;
}

.services {
    padding: 80px 0;
    background-color: #fff;
}

.services-header {
    margin-bottom: 60px;
}

.services-title {
    font-size: 36px;
    font-weight: bold;
    color: #292f36;
    margin-bottom: 20px;
}

.services-desc {
    color: #4d5053;
    max-width: 700px;
    line-height: 1.8;
}

.service-content {
    display: flex;
    gap: 60px;
}

.service-text {
    flex: 1;
}

.service-text p {
    color: #4d5053;
    margin-bottom: 20px;
    line-height: 1.8;
    margin-top: 50px;
    margin-left: 600px;
}
.partners {
    padding: 40px 0;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-height: 40px;
    width: auto;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.features {
    padding: 80px 0;
    background-color: #fff;
}

.features-container {
    display: flex;
    gap: 30px;
}

.feature-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 1280px;
    height: 400px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.play-button i {
    color: #cda274;
    font-size: 24px;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

.feature-box h3 {
    font-size: 20px;
    color: #292f36;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-box h3 span {
    color: #cda274;
    margin-right: 10px;
    font-weight: normal;
}

.feature-box p {
    color: #4d5053;
    line-height: 1.6;
}


.stats {
    padding: 50px 0;
    background-color: #f9f8f7;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-item {
    flex: 1;
    border-right: 1px solid #e7e7e7;
    padding: 0 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 52px;
    font-weight: bold;
    color: #cda274;
    margin-bottom: 10px;
}

.stat-label {
    color: #4d5053;
    font-size: 16px;
}


.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #292f36;
}

.about-text {
    color: #4d5053;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #292f36;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 10px;
    margin-left: -5px;
}

.btn:hover {
    background-color: #cda274;
}

.btn i {
    margin-left: 10px;
}


footer {
    padding: 80px 0 40px;
    background-color: #fff;
    border-top: 1px solid #e7e7e7;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    size: 30px;
}

.footer-text {
    color: #4d5053;
    margin-bottom: 30px;
    font-size: 14px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #292f36;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #cda274;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: #292f36;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #4d5053;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #cda274;
}

.contact-info {
    color: #4d5053;
    line-height: 1.8;
    margin-bottom: 30px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: #4d5053;
    font-size: 14px;
    border-top: 1px solid #e7e7e7;
}


.partners {
    padding: 40px 0;
    background-color: #fff;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.partners-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}
.hero-banner {
    background-image: url('/img/Service\ Single\ Main\ Image.png');
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
}

.about-us-overlay {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px 70px;
    border-radius: 20px;
    text-align: center;
}

.about-us-overlay h1 {
    font-size: 36px;
    margin-bottom: 10px;
    
}

.breadcrumb {
    font-size: 14px;
    
}


@media (max-width: 992px) {
    .service-content,
    .features-container,
    .about-container,
    .footer-container {
        flex-direction: column;
    }

    .stats-container {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        border-right: none;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .services-title,
    .about-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 42px;
    }
}