/*  
   1. GLOBAL & BASE STYLES
     */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: #333;
}
html,body{
    height: 100%;
}
body {
    overflow-x: hidden;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}


:root {
    --header-height: clamp(65px, 8vw, 85px);
}
main {
    flex: 1;
    padding-top: var(--header-height);
}
main > section {
    scroll-margin-top: var(--header-height);
}
img {
    max-width: 100%;
    height: auto;
}

/* HEADER CSS */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}


.header-inner {
    height: var(--header-height);
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 140px;
    display: block;
}

.menu-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

#navbar {
    position: absolute;
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
    left: 0;
    width: 75%;
    background: #fff;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    z-index: 999;
    transform: translateX(-100%);
    transition: 0.3s ease;
}

#navbar.active {
    transform: translateX(0);
}

.nav-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    width: 60%;
    margin: 0 auto;
    list-style: none;
    border-radius: 10px;
    overflow: hidden;
}

.nav-item:last-child {
    width: 85%;
    margin-top: auto;
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 16px;
}

.nav-link i {
    color: orange;
    font-size: 18px;
}

.nav-item:hover {
    background: rgba(255, 165, 0, 0.1);
}

.nav-item:hover .nav-link {
    color: orange;
}

.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: orange;
    color: #fff !important;
}

.nav-cta i {
    color: #fff;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: orange;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
}

.header-btn i {
    color: #fff;
}

.header-btn {
    transition: 0.3s ease;
}

.header-btn:hover {
    background: #ffcc80;
}

@media screen and (min-width:768px) {

    #navbar {
        width: 40%;
    }
}

@media screen and (min-width:1024px) {
    .container {
        width: 80%;
        margin: auto;
    }

    .menu-btn {
        display: none;
    }

    #navbar {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        transform: none;
        transition: none;
    }

    .nav-list {
        height: auto;
        flex-direction: row;
    }

    .nav-item {
        width: auto;
        margin: 0;
    }

    .nav-item:last-child {
        display: none;
    }

    .nav-link i {
        display: none;
    }

    .nav-item {
        position: relative;
    }

    .nav-item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: orange;
        transition: 0.3s ease;
    }

    .nav-item:hover::after {
        width: 100%;
    }

    .nav-item:hover {
        background: none;
    }

}
/*  
   HERO SECTION CSS
     */

.hero-section {
    background-color: #011f53;
    overflow: hidden;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.12);
}

.hero-wrapper {
    display: grid;
    gap: 20px;
    padding: 20px 0;
}

.hero-intro {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: -5px;
    padding: 20px 0;
}

/* Logo Color Mapping */
.brand-title .color-orange {
    color: #F39200;
}

.brand-title .color-white {
    color: #FFFFFF;
}

.brand-title .color-blue {
    color: #4157A8;
}

.hero-intro h3 {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-intro h3 span {
    color: orange;
}

.hero-intro h3 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    border-radius: 50px;
    background: orange;
}

.hero-intro .text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

/* 3x2 Strict Grid for Service Tags */
.hero-services-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 420px;
}

.hero-services-tags span {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 6px 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 11px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-services-tags span:hover {
    background-color: orange;
    border-color: orange;
    color: #ffffff;
}

/* Buttons */
.hero-btn {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-btn a {
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.hero-cta {
    background-color: orange;
    color: #ffffff;
}

.hero-cta:hover {
    background-color: rgba(255, 166, 0, 0.8);
}

.hero-cta i {
    font-size: 12px;
    margin-left: 5px;
}

.view-btn {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.view-btn:hover {
    color: orange;
    border-color: orange;
}

/* Badges */
.hero-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-item i {
    font-size: 24px;
    color: orange;
}

.badge-item span {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.2;
}

/* Right Section Images */
.hero-img {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-banner {
    height: 220px;
    width: 100%;
    padding: 0 20px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.banner-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 20px;
}

.banner-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*  
   HERO SECTION - TABLET MEDIA QUERY (768px - 1023px)
     */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-wrapper {
        display: flex;
        align-items: stretch;
        gap: 30px;
        padding: 30px 20px;
    }

    .hero-intro {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-intro h3 {
        font-size: 36px;
    }

    .hero-img {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-banner {
        height: 200px;
        padding: 0;
    }

    .banner-wrapper {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
        gap: 12px;
    }
}

 /*  
   HERO SECTION - DESKTOP MEDIA QUERY (1024px+)
     */
@media screen and (min-width: 1024px) {
    .hero-section {
        min-height: calc(100dvh - var(--header-height, 80px));
        display: flex;
        align-items: center;
    }

    .hero-section .container {
        width: 80%;
        margin: 0 auto;
        padding: 0;
    }

    .hero-wrapper {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: 40px;
        width: 100%;
        padding: 0;
    }

    .hero-intro {
        flex: 0 0 420px;
        max-width: 420px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-intro h3 {
        font-size: 42px;
    }

    .hero-intro .text {
        font-size: 16px;
    }

    .badge-item i {
        font-size: 28px;
    }

    .badge-item span {
        font-size: 13px;
    }

    .hero-img {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
    }

    .hero-banner {
        height: 360px; /* Height 310px se badha kar 360px kar di gayi hai (Aap ise apne anusaar kam/jyada kar sakte hain) */
        padding: 0;
    }

    .banner-wrapper {
        grid-template-columns: repeat(6, 1fr);
        padding: 0;
        gap: 10px;
    }
}
/* #HERO SECTION END */


/* #SERVICES SECTION */
.service-section {
    /* padding: 20px 0; */
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); */

    width: 100%;
    padding: 45px 0;
    background-color: #f5f7ff;

}

.section-head {
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.section-lable {
    color: #f58529;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 16px;
}

.section-desc {
    position: relative;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.section-desc span {
    color: #515bd4;
}

.section-desc::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    background-color: #ffcc80;
    border-radius: 10px;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

.service-box {
    position: relative;
    display: grid;
    place-items: center;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.service-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #ffcc80;
    border-radius: 0 0 10px 10px;
}

.service-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #1877f2;
    color: #ffffff;
    border-radius: 50%;
}

.service-box .service-titel {
    padding: 10px 0 0;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}

.service-box .service-desc {
    padding: 10px 0;
    text-align: center;
}

.service-box .service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 10px;
    color: #515bd4;
}

.banner {
    width: 90%;
    height: 40px;
    margin: 20px auto 0;
    background-color: whitesmoke;
}

@media screen and (min-width: 768px) {
    .service-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (min-width: 1024px) {
    .service-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
   /* #SERVICES SECTION END */
   /* #PORTFOLIO SECTION */
   .portfolio-section {

    width: 100%;
    padding: 45px 0;
    background-color: #ebedf3;

}
#portfolio {
    width: 100%;
}

#portfolio .portfolio-content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

#portfolio .category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 10px 20px;
    margin: 0 auto 20px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#portfolio .category-label::-webkit-scrollbar {
    display: none;
}

#portfolio .category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background-color: #e0e0e0;
    color: #333333;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#portfolio .category-btn:hover {
    background-color: #011f53;
    color: #ffffff;
}

#portfolio .category-btn.active {
    background-color: #011f53;
    color: #ffffff;
}

#portfolio .category-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

#portfolio .portfolio-item {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
}

#portfolio .portfolio-item img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#portfolio .portfolio-item:hover img {
    transform: scale(1.03);
}

#portfolio .portfolio-item.is-hidden {
    display: none;
}

#portfolio .portfolio-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 25px;
}

#portfolio #portfolio-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #011f53;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#portfolio #portfolio-see-more:hover {
    background-color: #f58529;
    transform: translateY(-2px);
}

#portfolio #portfolio-see-more i {
    font-size: 12px;
}

#portfolio .portfolio-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    padding-top: 25px;
}

#portfolio .portfolio-pagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: none;
    border-radius: 6px;
    background-color: #e0e0e0;
    color: #333333;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#portfolio .portfolio-pagination button:hover:not(:disabled) {
    background-color: #011f53;
    color: #ffffff;
}

#portfolio .portfolio-pagination button.active {
    background-color: #011f53;
    color: #ffffff;
}

#portfolio .portfolio-pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media screen and (min-width: 768px) {
    #portfolio .portfolio-content {
        padding: 0 25px;
    }

    #portfolio .category-label {
        padding: 10px 25px;
        justify-content: flex-start;
    }

    #portfolio .category-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    #portfolio .category-btn {
        padding: 9px 14px;
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) {
    #portfolio .portfolio-content {
        padding: 0;
    }

    #portfolio .category-label {
        justify-content: center;
        padding: 10px 0;
        margin-bottom: 25px;
    }

    #portfolio .category-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    #portfolio .category-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    #portfolio #portfolio-see-more {
        padding: 11px 22px;
        font-size: 14px;
    }
}

@media screen and (min-width: 1200px) {
    #portfolio .category-items {
        gap: 25px;
    }
}
   /* #PORTFOLIO SECTION  */

  /* # WHY CHOOSE SECTION START */

.why-choose-section {
    width: 100%;
    background-color: #011f53;
    padding:  25px;
}

.why-choose-wrapper {
    width: 100%;
    padding: 0 20px;
}

.why-choose-head {
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-label {
    display: block;
    margin-bottom: 5px;
    color: #ff9900;
    font-size: 12px;
    font-weight: 600;
}

.why-choose-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.why-choose-title span {
    color: #536dfe;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.why-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border: 2px solid #ff9900;
    border-radius: 50%;
}

.why-choose-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ff9900;
    color: #ffffff;
    font-size: 21px;
}

.why-choose-info {
    flex: 1;
}

.why-choose-info h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.why-choose-info p {
    max-width: 240px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .why-choose-section {
        padding: 45px 0;
    }

    .why-choose-wrapper {
        padding: 0 30px;
    }

    .why-choose-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .why-choose-item {
        justify-content: center;
    }

    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-icon {
        flex-basis: 65px;
        width: 65px;
        height: 65px;
    }

    .why-choose-icon i {
        width: 45px;
        height: 45px;
    }
}

@media screen and (min-width: 1024px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-wrapper {
        padding: 0;
    }

    .why-choose-head {
        margin-bottom: 35px;
    }

    .why-choose-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .why-choose-item {
        position: relative;
    }

    .why-choose-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -20px;
        width: 1px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.35);
    }

    .why-choose-icon {
        flex-basis: 80px;
        width: 80px;
        height: 80px;
    }

    .why-choose-icon i {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .why-choose-info h3 {
        font-size: 17px;
    }

    .why-choose-info p {
        font-size: 13px;
    }
}

   /* #WHY CHOOSE SECTION END */
   /*  
   SPECIAL OFFER START
  */

.offer-section {
    width: 100%;
    padding: 25px 0;
}

.offer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;

    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 20px;

    border: 1px solid #ff9900;
    border-radius: 10px;

    background-color: #ffffff;
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background-color: #ff8c00;
    color: #ffffff;

    font-size: 25px;
}

.offer-info {
    min-width: 0;
}

.offer-label {
    display: block;

    margin-bottom: 3px;

    color: #ff8c00;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.5px;
}

.offer-title {
    color: #111111;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.offer-title span {
    color: #f36f00;
}

.offer-desc {
    margin-top: 4px;

    color: #555555;

    font-size: 11px;
    line-height: 1.5;
}

.offer-action {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    width: 100%;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    padding: 11px 20px;

    border-radius: 6px;

    background-color: #ff8c00;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.offer-btn i {
    font-size: 17px;
}

.offer-btn:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
}

.offer-action-text {
    color: #555555;

    font-size: 10px;
    font-weight: 400;
}

@media screen and (min-width: 768px) {

    .offer-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        gap: 30px;

        width: 100%;
        padding: 18px 30px;
    }

    .offer-content {
        flex: 1;
    }

    .offer-icon {
        flex-basis: 75px;

        width: 75px;
        height: 75px;

        font-size: 28px;
    }

    .offer-label {
        font-size: 12px;
    }

    .offer-title {
        font-size: 25px;
    }

    .offer-desc {
        font-size: 12px;
    }

    .offer-action {
        width: 190px;

        padding-left: 30px;

        border-left: 1px solid #e5e5e5;
    }

    .offer-btn {
        width: 100%;
    }

}

@media screen and (min-width: 1024px) {

    .offer-wrapper {
        padding: 18px 45px;
    }

    .offer-icon {
        flex-basis: 80px;

        width: 80px;
        height: 80px;

        font-size: 30px;
    }

    .offer-title {
        font-size: 28px;
    }

    .offer-action {
        width: 220px;
        padding-left: 40px;
    }

    .offer-btn {
        padding: 12px 25px;

        font-size: 15px;
    }

}

/*  
   SPECIAL OFFER END
  */
/* TESTIMONIAL SECTION START */

.testimonial-section {
    width: 100%;
    padding: 45px 0;
    background-color: #f5f7ff;
}

.testimonial-wrapper {
    width: 100%;
    padding: 0 45px;
}

.testimonial-head {
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-label {
    display: block;
    margin-bottom: 5px;
    color: #ff8c00;
    font-size: 11px;
    font-weight: 600;
}

.testimonial-title {
    color: #111111;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
}

.testimonial-title span {
    color: #011f53;
}

.testimonial-title::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    margin: 8px auto 0;
    border-radius: 10px;
    background-color: #ff8c00;
}

.testimonial-slider {
    position: relative;
    width: 100%;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.testimonial-card {
    display: none;
    width: 100%;
    padding: 22px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.testimonial-card.slider-active {
    display: block;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #ff8c00;
    font-size: 13px;
}

.testimonial-text {
    min-height: 75px;
    margin-bottom: 20px;
    color: #333333;
    font-size: 13px;
    line-height: 1.6;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ff8c00;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-client-info {
    min-width: 0;
}

.testimonial-client-info h3 {
    margin-bottom: 3px;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-client-info p {
    color: #555555;
    font-size: 11px;
    line-height: 1.4;
}

.testimonial-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    color: #536dfe;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transform: translateY(-50%);
}

.testimonial-prev {
    left: -42px;
}

.testimonial-next {
    right: -42px;
}

.testimonial-arrow:hover {
    background-color: #011f53;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .testimonial-wrapper {
        padding: 0 50px;
    }

    .testimonial-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .testimonial-title {
        font-size: 27px;
    }

    .testimonial-prev {
        left: -45px;
    }

    .testimonial-next {
        right: -45px;
    }
}

@media screen and (min-width: 1024px) {
    .testimonial-section {
        padding: 55px 0;
    }

    .testimonial-wrapper {
        padding: 0 55px;
    }

    .testimonial-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-arrow {
        width: 38px;
        height: 38px;
    }

    .testimonial-prev {
        left: -50px;
    }

    .testimonial-next {
        right: -50px;
    }
}

/* TESTIMONIAL SECTION END */
/*  
   WHATSAPP CTA START
  */

.whatsapp-cta {
    width: 100%;
    padding: 25px ;
}

.whatsapp-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    width: 100%;
    padding: 25px 20px;

    background-color: #ff8c00;
    border-radius: 8px;
}

.whatsapp-cta-content {
    display: flex;
    align-items: center;
    gap: 15px;

    width: 100%;
}

.whatsapp-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background-color: #ffffff;
    color: #25d366;

    font-size: 42px;
}

.whatsapp-cta-info {
    min-width: 0;
}

.whatsapp-cta-info h2 {
    margin-bottom: 4px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
}

.whatsapp-cta-info p {
    color: #ffffff;

    font-size: 12px;
    line-height: 1.5;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 12px 20px;

    border-radius: 6px;

    background-color: #ffffff;
    color: #f58200;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-cta-btn i {
    font-size: 12px;
}

.whatsapp-cta-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

@media screen and (min-width: 768px) {

    .whatsapp-cta-wrapper {
        flex-direction: row;
        justify-content: space-between;

        padding: 20px 35px;
    }

    .whatsapp-cta-content {
        width: auto;
    }

    .whatsapp-cta-icon {
        flex-basis: 65px;

        width: 65px;
        height: 65px;

        font-size: 45px;
    }

    .whatsapp-cta-info h2 {
        font-size: 22px;
    }

    .whatsapp-cta-info p {
        font-size: 13px;
    }

    .whatsapp-cta-btn {
        width: auto;

        min-width: 190px;

        padding: 12px 22px;
    }

}

@media screen and (min-width: 1024px) {

    .whatsapp-cta-wrapper {
        padding: 20px 60px;
    }

    .whatsapp-cta-icon {
        flex-basis: 70px;

        width: 70px;
        height: 70px;

        font-size: 50px;
    }

    .whatsapp-cta-info h2 {
        font-size: 25px;
    }

    .whatsapp-cta-info p {
        font-size: 13px;
    }

    .whatsapp-cta-btn {
        min-width: 220px;

        padding: 13px 25px;

        font-size: 15px;
    }

}

/*  
   WHATSAPP CTA END
  */
   /* #FOOTER SECTION */
footer{
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 15px ;
}
.footer-grid div:nth-child(1),.footer-grid div:nth-child(4){
    grid-column: 1 / 3;
}
.footer-about img{
    display: block;
    margin: 0 auto;
}
.footer-desc{
    padding: 10px 0;
}
.social-links{
    display: grid;
    justify-items: center;
    align-items: center;
}
.social-icon {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}
.social-icon a{
    background-color: orange;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.social-icon a i{
    color: white;
}
.social-icon a:nth-child(1):hover{
    background: #1877f2;
}
.social-icon a:nth-child(2):hover{
    background:linear-gradient(45deg,#f58529,#DD2A7B,#813DAF,#515BD4) ;
}
.social-icon a:nth-child(3):hover{
    background: #FF0000;
}
.social-icon a:nth-child(4):hover{
    background: #25D366;
}

 .title-badge{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
}
.title-badge i{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    background: rgba(255, 166, 0, 0.471);
    border: 0.1px solid orange;
    border-radius: 50px;
    padding: 5px;
    font-size: 12px;
}

.footer-nav-list li,
.footer-contact-list li,
.footer-service-list li {
    display: block;
    padding: 10px;
}
.footer-nav-list li:hover,
.footer-contact-list li:hover,
.footer-service-list li:hover {
    color: red;
    background: rgba(255, 166, 0, 0.471);
}
.footer-item:hover{
    color:orange;
}
.footer-nav-list li a,
.footer-contact-list li a,
.footer-service-list li a {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    gap: 5px;
}

.footer-nav-list li a span,
.footer-contact-list li a span,
.footer-service-list li a span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links,
.footer-services,
.footer-contact,
.footer-about {
    background-color: whitesmoke;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    border-radius: 5px 5px 0 0;
}

.footer-about {
    padding: 10px 5px;
    min-width: 0;
}
.footer-desc {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
}
.title-badge span {
    position: relative;
}

.title-badge span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50%;
    height: 2px;
    background-color: orange;
    border-radius: 50px;
}
.footer-contact-list i{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border: 0.1px solid orange;
    border-radius: 50px;
    padding: 5px;
    font-size: 12px;
}
.footer-item a{
    display: block;
    width: 100%;
}
.footer-item a span{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}
.footer-item a span i{
    flex-shrink: 0;
    margin-top: 4px;
}
.whatsapp-msg{
    background: rgba(255, 166, 0, 0.471);
    border: 0.1px solid orange;
    border-radius: 5px;
    padding: 5px;
    margin: 15px 20px;
}
.whatsapp-msg a{
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.whatsapp-msg a .whatsapp{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    background: #25D366;
    border-radius: 50px;
    color: white;
}
.whatsapp-msg a span{
    display: grid;
    gap: 10px;
}
.whatsapp-msg a .arrow-right{
    background: none;
    color: orange;
    font-size: 18px;
}
.footer-trust{
    display: flex;
    justify-content: center;
}
.copy-rights{
    display: grid;
    padding: 10px 0;
    gap: 10px;
    text-align: center;
    font-size: 14px;
}
.add{
    font-size: 15px;
}
.copy-rights a{
    color: orange;
}
@media screen and (min-width:1024px) {
.footer-grid{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 0 20px ;
}
.footer-grid div:nth-child(1),.footer-grid div:nth-child(4){
    grid-column: auto;
}
.footer-links,
.footer-services,
.footer-contact,
.footer-about {
    background-color: transparent;
    box-shadow: none;
}
.footer-contact .title-badge{
    background-color:transparent;
    color: black;
    justify-content: center;
}
.footer-contact i{
    background: rgba(255, 166, 0, 0.471);
}
}