/* =========== Reset & Base Styles =========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cf0a0a;
    --primary-dark: #a00808;
    --primary-light: #ff5252;
    --secondary-color: #222222;
    --light-color: #f8f8f8;
    --gray-color: #707070;
    --light-gray: #e1e1e1;
    --dark-gray: #333333;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* =========== Header =========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.tagline {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: -5px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* =========== Hero Section =========== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-top: 0;
    position: relative;
}

/* Add a tech pattern overlay to the hero section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(207, 10, 10, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(207, 10, 10, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-awards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.award-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.award-badge:hover {
    background-color: rgba(207, 10, 10, 0.2);
    transform: translateY(-5px);
}

.award-badge i {
    color: var(--primary-color);
}

.award-badge span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* =========== About Section =========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
}

.about-quality h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-quality ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-quality ul li span {
    margin-right: 10px;
    color: var(--primary-color);
}

/* =========== Services Section =========== */
.services {
    background-color: var(--light-color);
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.services-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.services-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.services-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.services-image:hover img {
    transform: scale(1.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =========== Brands Section =========== */
.brands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.brand-item {
    padding: 30px;
    border-radius: 5px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.brand-item:hover {
    box-shadow: var(--box-shadow);
    border-color: transparent;
}

.brand-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.brand-item h3 {
    margin-bottom: 10px;
}

/* =========== Projects Section =========== */
.projects {
    background-color: var(--secondary-color);
    color: var(--white);
}

.projects .section-header h2 {
    color: var(--white);
}

.projects-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.project-card {
    flex: 0 0 100%;
    padding: 20px;
    transition: var(--transition);
}

.project-image {
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transition: var(--transition);
}

.project-image-vu .project-image-placeholder {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
}

.project-image-gc .project-image-placeholder {
    background: linear-gradient(135deg, #004d40 0%, #00897b 100%);
}

.project-image-hospital .project-image-placeholder {
    background: linear-gradient(135deg, #b71c1c 0%, #e53935 100%);
}

.project-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.project-image-placeholder span {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.project-card:hover .project-image-placeholder {
    transform: scale(1.05);
}

.project-details h3 {
    margin-bottom: 10px;
    color: var(--white);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-btn:hover {
    background-color: var(--primary-color);
}

/* =========== Contact Section =========== */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--gray-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    gap: 30px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-item i {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.info-item h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-item p {
    color: var(--gray-color);
    margin-bottom: 5px;
}

.contact-social h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-social .social-icons {
    display: flex;
    gap: 15px;
}

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-social .social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    height: 100%;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(207, 10, 10, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* =========== Animations =========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Apply animations to elements */
.service-card, .brand-item, .why-us-item, .testimonial-card {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.service-card:nth-child(even), .why-us-item:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out forwards;
}

.service-card:nth-child(odd), .why-us-item:nth-child(even) {
    animation: slideInRight 0.6s ease-out forwards;
}

.service-card:nth-child(2), .why-us-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3), .why-us-item:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4), .why-us-item:nth-child(4) {
    animation-delay: 0.6s;
}

.service-card:nth-child(5) {
    animation-delay: 0.8s;
}

.service-card:nth-child(6) {
    animation-delay: 1s;
}

.badge-number {
    animation: pulse 2s infinite;
}

.stats-count {
    animation: scaleIn 0.5s ease-out;
}

.hero-awards .award-badge {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-awards .award-badge:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-awards .award-badge:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-awards .award-badge:nth-child(3) {
    animation-delay: 1s;
}

.testimonial-card {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.6s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.9s;
}

/* =========== Footer =========== */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========== Responsive Styles =========== */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
    }
    
    .services-intro {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-wrap: wrap;
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hero-awards {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .brand-logos {
        gap: 20px;
    }
    
    .brand-logos img {
        height: 40px;
    }
    
    .certification-badge {
        height: 50px;
    }
}

@media screen and (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
}

/* =========== Testimonials Section =========== */
.testimonials {
    background-color: var(--light-color);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: -40px auto 0;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px 25px 30px;
    text-align: center;
}

.rating {
    margin: 15px 0;
}

.rating i {
    color: #FFD700;
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.testimonial-brands {
    text-align: center;
}

.testimonial-brands h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
    font-weight: 500;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-logos img {
    height: 50px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.brand-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =========== Why Choose Us Section =========== */
.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.why-us-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(207, 10, 10, 0.4);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 5px;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-us-item {
    display: flex;
    gap: 15px;
}

.icon-box {
    min-width: 50px;
    min-height: 50px;
    border-radius: 5px;
    background-color: rgba(207, 10, 10, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.why-us-item .content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.why-us-item .content p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.certification-badge {
    height: 60px;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: var(--transition);
}

.certification-badge:hover {
    opacity: 1;
}

.certification-badge img {
    height: 100%;
    max-width: 120px;
    object-fit: contain;
}

/* =========== Stats Section =========== */
.stats {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stats-count {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stats-count::after {
    content: '+';
    position: absolute;
    top: 0;
    right: -20px;
    font-size: 2rem;
}

.stats-title {
    font-size: 1.1rem;
    color: var(--light-gray);
} 