﻿.hero-section {
    position: relative;
    padding: 120px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,44,77,.9), rgba(11,44,77,.75));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-top:4.5rem;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 560px;
    margin: 20px 0 30px;
    color: #e5eaf1;
}

.hero-btn {
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
}
.section {
    padding: 40px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
}

.section-desc {
    color: #6b7280;
    max-width: 520px;
}
@media(min-width:768px){
    .hero-title {
        font-size: 28px!important;
        font-weight: 700;
         line-height: 1.9; 
        margin-top: 7.5rem!important;
    }
    .section-title {
        font-size: 25px!important;
        font-weight: 600;
        margin-bottom: 4px!important;
    }
}
/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, #e63946, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image frame */
.image-wrap {
    padding: 10px;
    border-radius: 24px;
    display: inline-block;
    border: 4px ridge var(--accent);
}

    .image-wrap img {
        border-radius: 18px;
        background: #fff;
    }

/* Feature cards */
.feature-card {
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card i {
        font-size: 32px;
        color: #e63946;
        margin-bottom: 15px;
    }

    .feature-card h5 {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 14px;
        color: #666;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(230,57,70,0.2);
    }
/* Background blobs */
.blob {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #e63946, #ff8c42);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

.blob-1 {
    top: -100px;
    left: -100px;
}

.blob-2 {
    bottom: -120px;
    right: -100px;
}

/* Make content above blobs */
.section .container {
    position: relative;
    z-index: 1;
}
/* Icon animation */
.icon-animate {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Floating animation */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.feature-card:hover .icon-animate {
    animation: floatIcon 1.6s ease-in-out infinite;
    color: #ff8c42;
}

/* Counter cards */
.counter-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .counter-card h3 {
        font-size: 36px;
        font-weight: 700;
        color: #e63946;
    }

    .counter-card span {
        font-size: 14px;
        color: #555;
    }
/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, #e63946, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Card */
.section-desc {
    color: #6c757d;
    font-size: 16px;
}

/* Process Card */
.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 10px 25px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #e63946, #ff8c42);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.35s ease;
    height: 100%;
}

    /* Hover effect */
    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(230, 57, 70, 0.25);
    }

/* Step header */
.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Step circle */
.step-circle {
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #ff8c42);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Step heading */
.step-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

/* Icons */
.process-icon {
    font-size: 36px;
    color: #e63946;
    margin-bottom: 15px;
    transition: transform 0.35s ease;
}

/* Icon hover */
.process-card:hover .process-icon {
    transform: scale(1.2) rotate(4deg);
}

/* Text */
.process-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.clients-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}

/* Client Card */
.client-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
    position: relative;
}

    /* Logo */
    .client-card img {
        max-height: 65px;
        max-width: 100%;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.4s ease;
    }

    /* Hover */
    .client-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }

        .client-card:hover img {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.08);
        }

/* Button */
.view-more-btn {
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}

    .view-more-btn:hover {
        background: #ffffff;
        color: #0f172a;
        transform: translateY(-2px);
    }

.accordion-section-title {
    background: #fff;
    padding: 18px 20px;
    border-left: 4px solid #e63946;
    font-weight: 600;
}

.accordion-section-content {
    padding: 20px;
    background: #f9fafb;
}
.faq-section {
    padding: 40px 0;
    background: #f7f9fc;
}

.faq-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #e63946;
    text-transform: uppercase;
}

.faq-title {
    font-size: 36px;
    font-weight: 600;
    margin: 10px 0;
}

.faq-desc {
    max-width: 520px;
    margin: 0 auto;
    color: #6b7280;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 22px;
    color: #e63946;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.35s ease;
}

    .faq-answer p {
        margin: 15px 0;
        color: #555;
    }
.subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #e63946;
    text-transform: uppercase;
}

.text-accent {
    color: #e63946;
}
/* Section */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8f9fc, #ffffff);
}

/* Subtitle */
.subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #e63946;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    text-align: center;
    justify-content: center;
    margin: auto;
}

/* Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    border: 1px solid rgba(230, 57, 70, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

    /* Hover effect */
    .testimonial-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(230, 57, 70, 0.25);
    }

/* Quote icon */
.quote-icon {
    font-size: 42px;
    color: #e63946;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 25px;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* User */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .testimonial-user img {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        border: 3px solid #e63946;
        object-fit: cover;
    }

    .testimonial-user h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .testimonial-user span {
        font-size: 13px;
        color: #777;
    }

/* Swiper pagination */
.swiper-pagination-bullet {
    background: #e63946;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
.products-section {
    background: #f9fbff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

    .section-title span {
        color: #f47b20;
    }

.section-subtitle {
    max-width: 600px;
    margin: 10px auto 0;
    color: #555;
    font-size: 16px;
}

.product-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .product-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #e63946, #ff9f559c);
        /*background: linear-gradient(135deg, #f47b20, #ff9f55);*/
        opacity: 0;
        transition: 0.35s;
        z-index: 0;
    }

    .product-card:hover::before {
        opacity: 1;
    }

    .product-card * {
        position: relative;
        z-index: 1;
    }

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.35s;
}

.product-card:hover .product-icon {
    background: #fff;
    color: var(--accent);
    /*color: #f47b20;*/
}

.product-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-card p {
    font-size: 14.5px;
    color: #666;
}

.product-card:hover h5,
.product-card:hover p {
    color: #fff;
}
.director-section {
    padding: 30px 0;
    background: #f8f9fc;
}

.director-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.director-image {
    flex: 0 0 280px;
    text-align: center;
}

    .director-image img {
        width: 100%;
        max-width: 260px;
        border-radius: 16px;
        object-fit: cover;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.director-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a1d37;
}

.director-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.director-content strong {
    color: #0a1d37;
}

.director-sign {
    margin-top: 25px;
}

    .director-sign h4 {
        font-size: 20px;
        margin-bottom: 5px;
        color: #0a1d37;
    }

    .director-sign span {
        display: block;
        font-size: 15px;
        color: #0a366b;
    }

/* Responsive */
@media (max-width: 991px) {
    .director-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .director-content h2 {
        font-size: 26px;
    }

    .director-image {
        flex: unset;
    }
}
