* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10%;
    background: #ffffff;
    color: white;
}

.logo-2 {
    height: 90px;
    width: auto;
}

.nav a {
    position: relative;
    color: #000;
    text-decoration: none;
    margin-left: 20px;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}


.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}


@media (max-width: 992px) {
    header {
        padding: 15px 5%;
    }

    .logo-2 {
        height: 70px;
    }

    .nav a {
        margin-left: 15px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 5%;
    }

    .logo-2 {
        height: 65px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav a {
        margin-left: 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo-2 {
        height: 55px;
    }

    .nav a {
        font-size: 13px;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 3px;
    transition: 0.3s;
}


@media (max-width: 480px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .nav.active {
        display: flex;
    }
}

@media (max-width: 480px) {
    header {
        position: relative;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
        z-index: 100;
    }

    .nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .nav.active {
        display: flex;
    }
}

.hero {
    position: relative;
    min-height: 75vh;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(105%) contrast(130%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.hero-content p {
    margin: 0;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    color: #ddd;
}

button {
    padding: clamp(14px, 3vw, 17px) clamp(30px, 6vw, 40px);
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    background-color: white;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 600;
    transition: all 0.5s ease;
    white-space: nowrap;
}

button:hover {
    letter-spacing: 3px;
    background-color: #ff0000;
    color: #ffffff;
    box-shadow: rgb(255 0 0 / 60%) 0px 7px 29px 0px;
}

button:active {
    letter-spacing: 3px;
    background-color: #ff0000;
    color: #ffffff;
    box-shadow: rgb(255 0 0 / 60%) 0px 0px 0px 0px;
    transform: translateY(10px);
    transition: 100ms;
}

.hero-stats {
    position: relative;
    background: #ff0000f6;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    justify-content: center;
    gap: clamp(16px, 4vw, 60px);
    padding: clamp(20px, 5vw, 30px) clamp(20px, 8vw, 50px);
    border-radius: 18px;
    z-index: 4;
    max-width: 70%;
    margin: 30px auto 0;
    width: fit-content;
    top: 35px;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.hero-stats h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin: 0;
}

.hero-stats p {
    font-size: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: 1px;
    text-transform: none;
    opacity: 1;
    text-shadow: 2px 1px 5px #850101;
    margin: 0;
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: clamp(80px, 15vw, 120px);
    background: #f4f4f4;
    border-top-left-radius: 100% 100px;
    border-top-right-radius: 100% 100px;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero {
        min-height: 70vh;
        padding: 30px 0;
    }

    .hero-content {
        padding: 50px 25px 35px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 65vh;
        padding: 25px 0;
    }

    .hero-content {
        padding: 45px 20px 30px;
        gap: 18px;
        max-width: 95%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 18px;
        max-width: 90%;
    }

    .hero-curve {
        height: clamp(50px, 12vw, 100px);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 20px 0;
    }

    .hero-content {
        padding: 35px 15px 25px;
        gap: 15px;
        max-width: 98%;
    }

    .hero-content h1 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
        max-width: 95%;
    }

    .hero-curve {
        height: clamp(40px, 10vw, 80px);
    }
}

.section {
    padding: 60px 10%;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
}

.gray {
    background: #f4f4f4;
}

.about-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.about-title span {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff0000;
    margin: 15px auto 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-text h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-title h2 {
        font-size: 30px;
    }
}

.about-part-two {
    padding: 100px 8%;
    font-family: 'Poppins', sans-serif;
}

/* Container */
.about-centered {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Images Row */
.about-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Image Card */
.principle-image {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.principle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.principle-image:hover img {
    transform: scale(1.06);
}

/* Text Under Images */
.about-text {
    max-width: 850px;
    margin: auto;
}

.about-text h3 {
    color: #ff0000;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
}

/* Mobile */
@media (max-width: 768px) {
    .about-images {
        gap: 25px;
    }

    .principle-image {
        max-width: 100%;
    }
}


.services-section {
    padding: 100px 8%;
    background-color: #f4f4f4;
}

.services-title span {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff0000;
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    border-radius: 8px;
}

.service-card:hover {
    transform: translateY(-10px);
}


.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;

}

.service-card:hover img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content i {
    font-size: 32px;
    color: #ff0000;
    margin-bottom: 15px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    opacity: 0;
    transform: translateX(-120px);
    transition: all 0.9s ease-out;
}

.service-card.show {
    opacity: 1;
    transform: translateX(0);
}

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.25s;
}

.service-card:nth-child(3) {
    transition-delay: 0.4s;
}

.projects-section {
    padding: 120px 6%;
    background: #f4f4f9;
    font-family: 'Poppins', sans-serif;
}


.projects-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.projects-title h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.projects-title span {
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    margin: 20px auto 0;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: transform 0.6s ease, box-shadow 0.6s ease, border 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25);
    border: 2px solid transparent;
    background: linear-gradient(145deg, #ff416c, #ff4b2b);
    background-clip: padding-box;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.5s ease;
    filter: brightness(0.85);
    border-radius: 20px;
}

.project-card:hover img {
    transform: scale(1.12) rotate(-1deg);
    filter: brightness(1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    border-radius: 20px;
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-overlay p {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.5;
}

.card-1 {
    grid-row: span 2;
}

.card-4 {
    grid-row: span 2;
}


@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .card-1,
    .card-4 {
        grid-row: span 1;
        height: 280px;
    }
}

.project-card {
    opacity: 0;
    transform: translateX(-140px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.project-card.reverse {
    transform: translateX(140px);
}

.project-card.show {
    opacity: 1;
    transform: translateX(0);
}

.footer {
    background: #111;
    color: #ccc;
    font-size: 14px;
}

.footer-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    border-bottom: 1px solid #333;
}

.footer-social span {
    font-size: 13px;
    color: #ffffff;
}

.social-icons a {
    color: #ffffff;
    margin-left: 15px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff0000;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 50px 10%;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 15px;
}

.footer-col p {
    color: #ffffff;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ff0000;
    padding-left: 5px;
}

.footer-bottom {
    background: #0b0b0b;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-social {
        padding: 15px 5%;
    }

    .footer-container {
        padding: 40px 5%;
        gap: 25px;
    }

    .footer-col h4 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .social-icons a {
        margin: 0 10px;
        font-size: 17px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 35px 6%;
        text-align: center;
    }

    .footer-col a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .footer-social span {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 12px;
    }
}

.contact-section {
    padding: 80px 10%;
    background: #fff;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

.small-title {
    color: #ff0000;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-info h2 {
    font-size: 42px;
    margin: 10px 0 20px;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 28px;
    color: #ff0000;
    width: 50px;
}

.contact-item h4 {
    margin: 0;
    font-size: 18px;
}

.contact-item span {
    color: #555;
    font-size: 15px;
}

.contact-map {
    flex: 1;
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-map {
        height: 350px;
    }
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 5px;
    left: 22px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 20px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.partners {
    padding: 60px 5%;
    background: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
    background: transparent;
    padding: 5px 0;
}

.slide-track {
    display: flex;
    width: max-content;
    animation: scroll 45s linear infinite;
}

.company {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.company img {
    height: 180px;
    max-width: 180px;
    object-fit: contain;
    opacity: 1;
    transition: transform 0.3s ease;
}

.company img:hover {
    transform: scale(1.08);
}

.partners-slider:hover .slide-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .slide-track {
        animation-duration: 35s;
    }

    .company {
        padding: 0 30px;
    }

    .company img {
        height: 140px;
        max-width: 140px;
    }

    .partners h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .slide-track {
        animation-duration: 25s;
    }

    .company {
        padding: 0 20px;
    }

    .company img {
        height: 120px;
        max-width: 120px;
    }

    .partners h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .slide-track {
        animation-duration: 15s;
        flex-wrap: nowrap;
    }

    .company {
        padding: 0 15px;
    }

    .company img {
        height: 90px;
        max-width: 90px;
    }

    .partners h2 {
        font-size: 1.8rem;
    }
}

.reviews-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f9f9f9, #ffffff);
    text-align: center;
    /* background-image: url(https://res.cloudinary.com/dg4i5nogr/image/upload/v1769512802/section.jpg); */
}

.reviews-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.reviews-title span {
    display: block;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    margin: 0 auto 60px;
    border-radius: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: auto;
}

.review-card {
    background: #ffffff;
    padding: 42px 34px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.review-card::before {
    content: "❝";
    position: absolute;
    top: 18px;
    left: 24px;
    font-size: 60px;
    color: rgba(255, 0, 0, 0.1);
    font-family: serif;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin: 30px 0 14px;
}

.review-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.review-stars {
    color: #ff0000;
    font-size: 1.15rem;
    letter-spacing: 4px;
    margin-bottom: 26px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-logo {
    width: 60px;
    height: 60px;
    border-radius: 30%;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.review-author h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
}

.review-card {
    opacity: 0;
    transform: translateX(-120px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.review-card.show {
    opacity: 1;
    transform: translateX(0);
}

.history-section {
    padding: 80px 5%;
    background: #ffffff;
}

.history-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.history-image {
    position: relative;
    display: inline-block;
}

.history-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

/* Top-left corner line */
.history-image::before {
    content: '';
    position: absolute;
    top: -27px;
    left: -18px;
    width: 60px;
    height: 55px;
    border-top: 5px solid #ff0000;
    border-left: 5px solid #ff0000;
}

/* Bottom-right corner line */
.history-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -15px;
    width: 55px;
    height: 55px;
    border-bottom: 5px solid #ff0000;
    border-right: 5px solid #ff0000;
}



.history-image img:hover {
    transform: scale(1.05);
}

.history-content {
    flex: 1 1 500px;
    font-family: 'Montserrat', sans-serif;
}

.history-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.history-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #444;
}

.history-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.history-content h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #222;
}

.history-content .italic {
    font-style: italic;
    color: #777;
}

@media (max-width: 1024px) {
    .history-container {
        gap: 40px;
    }

    .history-content h2 {
        font-size: 36px;
    }

    .history-content h3 {
        font-size: 20px;
    }

    .history-content p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .history-container {
        flex-direction: column;
        gap: 30px;
    }

    .history-image img {
        width: 90%;
        height: auto;
        max-height: 350px;
    }

    .history-content {
        text-align: center;
    }

    .history-content h2 {
        font-size: 32px;
    }

    .history-content h3 {
        font-size: 18px;
    }

    .history-content p {
        font-size: 14px;
    }

    .history-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 60px 3%;
    }

    .history-content h2 {
        font-size: 28px;
    }

    .history-content h3 {
        font-size: 16px;
    }

    .history-content p {
        font-size: 14px;
    }
}

.devis-section {
    padding: 120px 6%;
    background: linear-gradient(180deg, #ffffff, #f8f8f8);
    font-family: 'Poppins', sans-serif;
}

.devis-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.devis-info {
    flex: 1;
}

.devis-info .small-title {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #ff0000;
    text-transform: uppercase;
}

.devis-info h2 {
    font-size: 46px;
    font-weight: 800;
    margin: 15px 0 25px;
    color: #111;
}

.devis-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 520px;
    margin-bottom: 30px;
}

.devis-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #222;
}

.devis-feature i {
    color: #ff0000;
    font-size: 18px;
}

.devis-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.devis-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.devis-form input,
.devis-form select,
.devis-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border 0.3s ease;
}

.devis-form input:focus,
.devis-form select:focus,
.devis-form textarea:focus {
    border-color: #ff0000;
}

.devis-form button {
    background: linear-gradient(90deg, #ff0000, #ff4b2b);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.devis-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .devis-container {
        flex-direction: column;
        text-align: center;
    }

    .devis-info p {
        max-width: 100%;
    }
}

.hero-image {
    height: 30vh;
    width: 100%;
    border-radius: 5px;
    background-image: url("https://res.cloudinary.com/dg4i5nogr/image/upload/v1769094749/staduim-samia-metalfer.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.footer-bottom strong {
    color: #ffffff;
    font-weight: 700;
}

.play-btn {
    font-size: 48px;
    color: #fff;
    margin-top: 15px;
    display: inline-block;
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-container video {
    width: 90%;
    border-radius: 10px;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}