.key-about {
    background-image: linear-gradient(to right, #d33075, #f8710d);
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    /* font-family: "Lora", serif; */
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-about:hover {
    transform: translateY(-5px);
}

.key-about h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-links {
    background-image: linear-gradient(to right, #d33075, #f8710d);
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-links:hover {
    transform: translateY(-5px);
}

.key-links h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-links ul li {
    margin: 0px 0;
}

.key-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.key-links ul li a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateX(5px);
}

.key-contact {
    background-image: linear-gradient(to right, #d33075, #f8710d);
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-contact:hover {
    transform: translateY(-5px);
}

.key-contact h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-contact p a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.key-baner-div {
    width: 100%;
    height: 340px;
    margin-bottom: 30px;
}

.key-baner-div img {
    width: 100%;
    height: 340px;
    /* margin-bottom: 30px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.key-main h2 {
    text-align: left;
    color: #f92400;
}


.carrer-para {
    font-size: 28px;
    /* font-weight: 600; */
}






/* FAQ css */
.faq-contain {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    background: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f1f1f1;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 15px 20px;
    margin: 0;
    color: #555;
}





/*** Testimonial ***/
/* Testimonial Section */
.testimonial-section {
    /* background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%); */
    overflow: hidden;
}

.sub-heading {
    display: inline-block;
    color: #e54f44;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.sub-heading::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #e54f44;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}


.testimonial-item {
    background: #fff;
    border-radius: 25px;
    padding: 30px 30px;
    margin: 10px 10px;
    /* box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08); */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 460px;
}

.testimonial-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(6, 163, 218, 0.25);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    width: 65px;
    height: 65px;
    background: #e54f44;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.testimonial-content p {
    color: #555;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.testimonial-author img {
    width: 75px !important;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f92400;
    margin-right: 20px;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 22px;
    color: #0B2154;
    font-weight: 700;
}

.testimonial-author span {
    color: #06A3DA;
    font-size: 15px;
    font-weight: 600;
}

/* Owl Navigation */
.testimonial-carousel .owl-nav {
    margin-top: 40px;
    text-align: center;
}

.testimonial-carousel .owl-nav button {
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #fff !important;
    color: #06A3DA !important;
    font-size: 22px !important;
    margin: 0 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-nav button:hover {
    background: #06A3DA !important;
    color: #fff !important;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 34px;
    }

    .testimonial-item {
        padding: 30px 25px;
    }
}







.why-choose-us {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef4ff 100%);
}

.testi {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

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

.feature-card {
    background: #fff;
    padding: 25px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e54f44, #ff9f43);
    transition: 0.5s;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background-image: linear-gradient(to right, #d33075, #f8710d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.icon-box i {
    font-size: 34px;
    color: #fff;
}

.feature-card h4 {
    font-size: 20px;
    color: #0d1b4c;
    margin-bottom: 18px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .feature-card {
        padding: 35px 25px;
    }
}





.grid-s {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.card ul {
    padding-left: 18px;
    margin: 0;
}

.card ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.4;
}

.section-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 26px;
    color: #111;
    font-weight: bold;
}


.premium {
    padding: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 15px;
}

.gifts i {
    padding-right: 35px;
    color: #e54f44;
    font-size: 28px;
}

.gift-list {
    list-style: none;
    line-height: 2;
    padding-left: 0rem !important;
}

.gift-list li {
    color: #000000;
}

.gift-list li i {
    color: #e54f44;
    padding-right: 25px;
}





.step-table {
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.step-table th {
    background: #4a90e2;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    text-align: left;
}

.step-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.step-number {
    font-size: 22px;
    font-weight: bold;
    color: #e54f44;
    width: 120px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.step-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.step-table tr:hover {
    background: #f0f6ff;
    transition: 0.3s;
}

@media(max-width:600px) {

    .step-table,
    .step-table tr,
    .step-table td {
        display: block;
        width: 100%;
    }

    .step-number {
        padding-bottom: 5px;
    }
}


.simple {
    background-color: #fffaf9;
}







.grid-sec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card-sec {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border: 1px solid #eee;
    margin-bottom: 20px;
    width: 100% !important;
}

.card-sec:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border-color: #d6e4ff;
}

.icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
    color: #e54f44;
}

.card-sec h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.card-sec p {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
}



.grid-box {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card-box {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: rgb(0, 0, 0);
    width: 100%;
    margin-bottom: 10px;
}

.card-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgb(211, 48, 117), rgb(248, 113, 13));
    transition: 0.4s;
    z-index: 0;
}

.card-box:hover::before {
    left: 0;
}

.card-box:hover {
    transform: translateY(-5px);
    color: #fff;
}

.card-box span {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
}


.text-bg {
    background: #000000;
}

.bg-key {
    background-image: linear-gradient(to right, #d33075, #f8710d);
}

.key-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

.key-box h5 {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
}






.fashion-section {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 70px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0e6df;
}

.fashion-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #d4af37, #f8e7b5);
    border-radius: 50%;
    opacity: 0.12;
}

.fashion-content {
    position: relative;
    z-index: 2;
    text-align: center;
}


.fashion-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    margin-top: 20px;
}

.fashion-list li {
    background: #fff3f3;
    padding: 22px 25px;
    border-radius: 15px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    border: 1px solid #f1e4d8;
    transition: all 0.4s ease;
}

.fashion-list li:hover {
    transform: translateY(-8px);
    background-image: linear-gradient(to right, #d33075, #f8710d);
    color: #fff;
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.25);
}

.brand-name {
    color: #b8860b;
}

@media (max-width: 768px) {
    .fashion-section {
        padding: 50px 30px;
    }

    .fashion-description {
        font-size: 17px;
    }
}

@media (max-width: 480px) {

    .fashion-list li {
        font-size: 16px;
        padding: 18px 20px;
    }
}


.text-justify {
    text-align: justify;
}




/* Mobile Responsive */
@media (max-width: 768px) {
    .key-about {
        max-width: 100%;
    }

    .key-links {
        max-width: 100%;
    }

    .key-contact {
        max-width: 100%;
    }

    .key-baner-div img {
        width: 100%;
        height: auto !important;
    }

    .key-baner-div {
        width: 100%;
        height: auto !important;
    }

    .carrer-para {
        font-size: 22px !important;
    }

    .grid-sec {
        display: flex !important;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .testimonial-item {
        height: auto !important;
    }
}