﻿/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 7rem;
    gap: 2rem;
    background: beige;
}

.hero-text {
    flex: 1 1 480px;
    max-width: 600px;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

    .hero-text h1 .highlight {
        color: #1ab9d6;
    }

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted, #666);
    margin-bottom: 2rem;
}

.cta-btn {
    background-color: #1ab9d6;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

    .cta-btn:hover {
        background-color: #00e67e;
    }

.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

/* Responsive: Mobile & Tablet */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        margin-top: 115px;
    }

    .hero-text {
        align-items: center;
        text-align: center;
        animation: none; /* Optional: skip animation on small screens */
        opacity: 1;
    }

        .hero-text h1 {
            font-size: 2.4rem;
        }

        .hero-text p {
            font-size: 1rem;
        }

    .cta-btn {
        justify-content: center;
    }

    .hero-image {
        margin-top: -195px;
        margin-bottom: 50px;
    }

        .hero-image img {
            max-width: 90%;
        }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}
/*---------experience section----------*/
.experience-section {
    background: #000000b5;
    padding: 4rem 2rem;
    font-family: 'Inter', sans-serif;
    color: white;
}

.columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.visual-column {
    flex: 1;
    position: relative;
}

.main-image-container {
    position: relative;
}

.bw-image {
    width: 100%;
    filter: grayscale(100%);
    display: block;
}

.inset-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    top: 5%;
    left: -4%;
    background: #1ab9d6;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.content-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .content-column h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .content-column p {
        font-size: 1rem;
        color: white;
        line-height: 1.6;
    }

.benefits-list ul {
    border-left: 3px solid #1ab9d6;
    padding-left: 1rem;
    list-style: none;
    margin-top: 1rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.benefits-list i {
    color: #1a88c8;
    margin-right: 0.5rem;
}

.cta-button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #1ab9d6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.ceo-profile {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.ceo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.ceo-info {
    font-size: 0.9rem;
}

.icon-arrow-up {
    color: #1ab9d6;
    margin-left: auto;
    font-size: 1.2rem;
}
@media (max-width: 768px){ 
    .columns {
    display: flex;
    gap: 3rem;
    flex-direction: column;
}
}
/*---About-us--*/
.textsh2 {
    text-align: center;
    font-size: xxx-large;
    color: brown;
    font-family: fantasy;
    padding: 15px;
}

/* core values */
.offerings-section1 {
    text-align: center;
    padding: 60px 20px;
    background-color: #f4f6f8; /* Optional: light section background */
}

.offerings-title1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 40px;
}


.offerings-container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Style */
.offering-card1 {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

    /* Hover Effects */
    .offering-card1:hover {
        border-color: #e75c3c;
        background-color: #fff5f2;
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(231, 92, 60, 0.15);
    }

/* Icon Container */
.icon-wrapper1 {
    margin-bottom: 20px;
}

.icon-circle1 {
    border: 2px solid #dcdcdc;
    border-radius: 50%;
    padding: 15px;
    display: inline-block;
    transition: border-color 0.3s;
}

    .icon-circle1:hover {
        border-color: #e75c3c;
    }


/* Icon Image */
.icon {
    width: 48px;
    height: 48px;
}

/* Card Title */
.card-title1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e2e2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Card Description */
.card-description1 {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive Tweaks */
@media (max-width: 960px) {
    .offering-card1 {
        width: 45%;
    }
}

@media (max-width: 640px) {
    .offering-card1 {
        width: 100%;
    }
}
/*----------------- Our Brands Section ------------------*/

.our-brands {
    background: linear-gradient(60deg, black, #dee8e3);
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.h2brand {
    text-align: center;
    margin-top: 29px;
    margin-bottom: 30px;
    font-size: 3rem;
    color: cadetblue;
}

/* Container Flex Grid */
.cont-brand {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

/* Brand Card */
.Ecard {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1 1 350px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .Ecard:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .Ecard h4 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #007BFF;
    }

    .Ecard p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
    }

    .Ecard .cta {
        margin: 1.5rem 0;
        font-size: 1.1rem;
    }

    .Ecard .btn-start {
        display: inline-block;
        background-color: #ff6600;
        color: #fff;
        padding: 0.8rem 1.5rem;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s ease;
    }

        .Ecard .btn-start:hover {
            background-color: #e05500;
        }

.brandlogos {
    width: 121px;
    margin-bottom: 0px;
}

.h2logotraso {
    font-size: 2.5rem;
    color: darkred;
    font-weight: bold;
    margin-bottom: 20px;
}

/*----------------- our brands------------------*/

@media (max-width: 768px) {
    .h2brand {
        font-size: 2.2rem;
    }

    .Ecard {
        padding: 25px 20px;
    }

        .Ecard h4 {
            font-size: 1.5rem;
        }

        .Ecard p {
            font-size: 1rem;
        }

    .h2logotraso {
        font-size: 2rem;
    }

    .brandlogos {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .h2brand {
        font-size: 1.8rem;
    }

    .Ecard {
        padding: 20px;
    }

        .Ecard h4 {
            font-size: 1.3rem;
        }

        .Ecard .btn-start {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

    .brandlogos {
        width: 100px;
    }
}

/*-----our story-----*/
.our-customers {
    background-color: #000000b8;
    color: azure;
    padding: 43px;
}


.storyh2 {
    text-align: center;
    font-size: xxx-large;
    padding: 15px;
    color: cadetblue;
    font-family: fantasy;
}
.expert{
    color:white;
}
.flag{
    color:white;
}

.our-customers ul {
    padding-left: 20px;
}

.our-customers .service {
    margin-bottom: 20px;
}

.our-customers .brand-highlight {
    background: #5184a2;
    padding: 20px;
    border-left: 5px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    margin-top: 30px;
    color: beige
}
.service {
    padding: 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

    .service h2.expert {
        font-size: 2rem;
        color: #333;
        margin-bottom: 1.5rem;
    }

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

    .service-buttons a.btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background-color: #007bff; /* Bootstrap blue */
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        font-weight: 500;
        min-width: 200px;
        text-align: center;
    }

        .service-buttons a.btn:hover {
            background-color: #0056b3;
        }
@media (max-width: 600px) {
    .service-buttons a.btn {
        min-width: 100%;
    }
}

        /*------------service section------------------*/

.services-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

    .services-section h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #222;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
}

    .service-card:hover {
        background-color: #ff7b29;
        color: #fff;
        transform: translateY(-5px);
    }

.icon-number {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-container {
    background-color: #ff7b29;
    color: #fff;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    transition: background-color 0.4s, transform 0.6s;
}

.service-card:hover .icon-container {
    background-color: #ffc107;
    transform: rotateY(180deg);
}

.number {
    font-size: 18px;
    font-weight: bold;
}

.service-card h3 {
    margin: 10px 0;
    font-size: 20px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.view-more {
    text-decoration: none;
    color: #ff7b29;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s, color 0.3s;
}

    .view-more i {
        margin-left: 8px;
        transition: transform 0.3s;
    }

.service-card:hover .view-more {
    color: #fff;
}

    .service-card:hover .view-more i {
        transform: translateX(5px);
    }

@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2em;
    }
}


/*---faq-----*/
.faq-section {
    max-width: 1299px;
    background: #6f6f6f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    padding-top: 68px;
    margin-left: 109px;
    margin-bottom: 27px;
}

    .faq-section h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 30px;
        color: white;
    }

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    color: #ffffff;
}
    .faq-question::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 22px;
        transition: 0.3s ease;
    }

    .faq-question.active::after {
        content: '–';
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    font-size: 16px;
    color: #555;
}

    .faq-answer.open {
        max-height: 500px;
        margin-bottom: 10px;
    }
.faq-answer p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: whitesmoke;
}
    .faq-answer ul {
        padding-left: 20px;
        margin: 10px 0;
     
    }
    .faq-answer li {
        color: white;
    }
   
    .faq-answer a {
        color: #ffff;
        text-decoration: none;
    }
/* --------- Responsive FAQ Section --------- */

@media (max-width: 1024px) {
    .faq-section {
        margin-left: auto;
        margin-right: auto;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 30px 20px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        border-radius: 0;
    }

        .faq-section h2 {
            font-size: 26px;
        }

    .faq-question {
        font-size: 16px;
        padding: 12px;
    }

    .faq-answer {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px 15px;
    }

        .faq-section h2 {
            font-size: 22px;
        }

    .faq-question {
        font-size: 15px;
        padding: 10px;
    }

        .faq-question::after {
            right: 15px;
        }

    .faq-answer {
        font-size: 14px;
        padding: 0 10px;
    }
}
