/* body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
} */

/* ============ ABOUT US SECTION ============ */
.about-section {
    background-color: #f4f4f4;
    color: #333;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}
.about-heading {
    text-align: center;
    margin-bottom: 20px;
    max-width: 1200px;
    padding: 60px 20px;
}
.about-heading h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.about-heading p {
    font-size: 17px;
}
.about-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
}

/* ============ STATS SECTION ============ */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    margin-bottom: 70px;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 40px 20px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s ease both;
    transition: all 0.3s ease;
}

.stat-card:nth-child(1) {
    animation-delay: 0s;
}
.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}
.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}
.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    background: rgba(255, 165, 0, 0.15);
    border-color: #ffa500;
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
    color: #ffa500;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ TESTIMONIAL SECTION ============ */
.testimonial-section {
    padding: 60px 20px;
    background: #1a1a2e;
    color: white;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.testimonial-content {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

.client-card {
    background: white;
    color: #1a1a2e;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.client-rating {
    font-size: 24px;
    color: #ffa500;
    margin-bottom: 10px;
}

.client-count {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 10px 0;
}

.client-label {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ============ SERVICES SECTION ============ */
.services-section {
    padding: 80px 20px;
    background: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============ MISSION VISION SECTION ============ */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mv-card {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    padding: 40px 30px;
    border-radius: 16px;
    animation: zoomIn 0.8s ease;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 165, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mv-card:hover::before {
    opacity: 1;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mv-card:nth-child(1) {
    animation-delay: 0s;
}
.mv-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #0066cc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mv-card:nth-child(2) .mv-icon {
    background: #00a86b;
}

.mv-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.mv-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============ CORE FEATURES SECTION ============ */
.core-features {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 30px;
    border-radius: 16px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.features-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ffa500;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item:hover {
    background: rgba(255, 165, 0, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #ffa500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.features-image {
    border-radius: 12px;
    overflow: hidden;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.features-image:hover img {
    transform: scale(1.05);
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .about-heading h1 {
        font-size: 30px;
    }
    .about-heading p {
        font-size: 15px;
    }
    .about-heading {
        text-align: center;
        /* margin-bottom: 20px; */
        max-width: 1200px;
        padding: 20px;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 10px;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .testimonial-section {
        padding: 40px 10px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .core-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-list {
        gap: 20px;
    }

    .feature-item {
        padding: 15px;
    }

    .section-title {
        font-size: clamp(24px, 4vw, 32px);
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 5px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 16px;
        text-align: center;
        padding: 0 5px;
    }

    .services-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .mv-card {
        padding: 25px 20px;
    }

    .mv-title {
        font-size: 20px;
    }

    .core-features {
        padding: 40px 20px;
        border-radius: 12px;
    }

    .features-title {
        font-size: 22px;
    }

    .feature-item {
        flex-direction: column;
        gap: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }
}
