.quote-section {
    /* background-color: #f9f9f9; */
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    /* gap: 40px; */
}

.text-content {
    flex: 1 1 500px;
    padding: 20px;
}


.about-label {
    display: flex;
    align-items: center;
    gap: 10px;
    /* space between line and text */
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.left-line {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, #0045ff, #00c6ff);
}


.text-content p {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
}

.image-content {
    flex: 1 1 500px;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.stats-section {
    /* background: #ffffff; */
    /* or any dark background */
    padding: 40px 30px;
}

.stats-container {
    background: #000000;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-item img {
    width: 60px;
    height: 60px;
    /* margin-bottom: 10px; */
}

.highlight {
    font-size: 2rem;
    font-weight: bold;
    color: #004ddb;
}

.divider {
    width: 2px;
    height: 60px;
    background: #2d3fe2;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }

    .divider {
        display: none;
    }

    .stat-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #444;
        padding-bottom: 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

.services-section {
    padding: 60px 30px;
    /* background-color: #f1f1f1; */
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.section-tag {
    color: #000000;
    font-weight: 800;
    font-size: 2rem;
    /* margin-bottom: 10px; */
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    /* margin-bottom: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.icon-line {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.short-line {
    width: 20px;
    height: 4px;
    background-color: #2347cc;
}

.long-line {
    width: 50px;
    height: 4px;
    background-color: #2347cc;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: auto;
}

.service-grid-section {
    padding: 10px 30px;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    background-color: #13a7cc;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 100px;
    margin-bottom: 15px;
    transition: filter 0.3s;
}

.service-card:hover img {
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.section-wrapper {
    display: flex;

}



.features {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
}

.feature-box {
    background-color: #ffffff;
    padding: 30px 20px;
    width: 300px;
    height: 300px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.feature-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/aboutpage.png');
    /* your image path */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-box:hover::after {
    opacity: 0.5;
    /* adjust as needed for visibility */
}

.feature-box img,
.feature-box h4,
.feature-box p {
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.3;
}

.feature-box:hover {
    color: #003fb4;
}

/* Set background from data-bg attribute */
.feature-box:hover::before {
    background-image: attr(data-bg url);
}

/* Fallback for older browsers */
@supports not (background-image: attr(data-bg url)) {
    .feature-box[data-bg]:hover::before {
        background-image: url('https://images.unsplash.com/photo-1581090700227-1e8a6a142f72?auto=format&fit=crop&w=800&q=60');
    }
}

/* Responsive */
@media (max-width: 992px) {
    .feature-box {
        width: 100%;
        max-width: 90%;
    }
}


/* CTA */
.cta-section {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.cta-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 14px;
    color: #ddd;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .section-wrapper {
        flex-direction: column;
    }

    .features {
        flex-direction: column;
        max-width: 100%;
    }

    .feature-box {
        max-width: 90%;
    }

    .testimonial-slider {
        max-width: 100%;
    }
}

.logo-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.logo-slider {
    display: flex;
    animation: scrollLeft 30s linear infinite;
}

.partner-logos {
    display: flex;
    flex-shrink: 0;
    gap: 60px;
    padding: 20px 0;
    background-color: #ffffff;
}

.partners-header {
    text-align: center;
    font-size: 24px;
    color: #000000;
    margin-bottom: 20px;
}

.partner-logos img {
    max-height: 150px;
    max-width: 160px;
    object-fit: contain;

    transition: filter 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.projects-section {
    background-color: #161616;
    padding: 60px 30px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.projects-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    letter-spacing: 2px;
    color: #a4a4a4;
    border-left: 2px solid #3a3a3a;
    padding-left: 10px;
}

.projects-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}


.projects-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.projects-grid {
    display: flex;
    gap: 30px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 300px;
    flex-shrink: 0;
    cursor: pointer;
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
}

.project-card img {
    width: 400px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-hover-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card:hover .project-hover-text {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .projects-title {
        flex-direction: column;
    }

    .vertical-text {
        transform: rotate(0);
        writing-mode: horizontal-tb;
        border-left: none;
        border-bottom: 2px solid #3a3a3a;
        padding-left: 0;
        padding-bottom: 5px;
    }
}

.global-presence {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2f4eb3;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}



.presence-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    align-items: flex-start;
}

.map img {
    max-width: 100%;
    width: 500px;
    border-radius: 10px;
}

.countries {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.countries ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.countries li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    font-weight: 600;

}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab.active {
    font-weight: bold;
    /* Optional: highlight style */
}

.responsive-line-ug {
    background-color: green;
    width: 3px;
    height: 300px;
    margin: 20px auto;
    transition: all 0.3s ease;
}

/* On small screens: turn it into a horizontal line */
@media (max-width: 768px) {
    .responsive-line-ug {
        width: 80%;
        max-width: 500px;
        height: 3px;
    }
}

.ceo-message-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.ceo-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ceo-text {
    max-width: 600px;
}

.ceo-text h2.section-titles {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0076bb;
    text-align: left;
}

.ceo-text h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #333;
}

.ceo-position {
    font-size: 18px;
    color: #777;
    margin-bottom: 20px;
}

.ceo-message {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .ceo-container {
        flex-direction: column;
        text-align: center;
    }

    .ceo-text {
        padding: 0 10px;
    }
}