:root {
    /* Fonts */
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Poppins",  sans-serif;
    --nav-font: "Raleway",  sans-serif;

    /* Global Colors */
    --background-color: #ffffff;
    --default-color: #28282B;
    --heading-color: #32353a;
    --accent-color: #6366f1;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;


    /* Nav Menu Color */
    --nav-color: #3a3939;
    --nav-hover-color: #6366f1;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #3a3939;
    --nav-dropdown-hover-color: #6366f1;

}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body{
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a{
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover{
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6{
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.money-back-color{
    color: #6366f1;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section{
    padding: 60px 0;
}

.section2{
    padding-top: 120px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header{
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.3s;
    z-index: 997;
    padding: 8px 0;
    border-bottom: 1px solid #ebebeb;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 60px;

}

.header .btn-getstarted,
.header .btn-getstarted:focus{
    color: var(--contrast-color);
    /* background: var(--accent-color); */
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    /* background: color-mix(in srgb, var(--accent-color), transparent 15%); */
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;

    }

    .header .navmenu {
        order: 3;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Navmenu - Desktop */

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

.main{
    /* padding-top: 60px;
    padding-bottom: 60px; */
}

/*--------------------------------------------------------------
# Page Banner Section
--------------------------------------------------------------*/

.page-banner{
    padding-top: 140px;
    background: linear-gradient(135deg, #6d28d9, #4f46e5, #3b82f6);
}

.page-banner .page-baner-section-title{
    text-align: center;

}

.page-banner h2{
    color: #ebebeb;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.page-banner h2::before{
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, #ebebeb, transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.page-banner h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.page-banner p{
    color: #ebebeb;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero{
    padding-top: 170px;
    /* padding-top: 80px; */
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(135deg, #4f46e5, #3b82f6, #06b6d4);
    /* background: linear-gradient(135deg, #0f172a, #1e293b, #3b82f6); */
    /* background: linear-gradient(135deg, #6d28d9, #4f46e5, #3b82f6); */
    /* background: linear-gradient(135deg, #f97316, #ec4899, #8b5cf6); */
}

.hero .hero-title{
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /* color: #1e1b4b; */
    /* color: #38bdf8; */
    color: #ffffff;

}

@media (max-width: 991.98px) {
  .hero .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero .hero-title {
    font-size: 1.75rem;
  }
}

.hero .hero-description{
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    /* color: #e2e8f0; */
    /* color: #cbd5e1; */
    /* color: #e9d5ff; */
    color: #fef3c7;
}

@media (max-width: 767.98px) {
    .hero .hero-description {
        font-size: 1rem;
    }
}

.hero .cta-wrapper .btn-primary {
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    transition: all 0.3s ease;

    background: linear-gradient(135deg, #6366f1, #3b82f6);
    /* background: linear-gradient(135deg, #3b82f6, #06b6d4); */
    /* background: linear-gradient(135deg, #8b5cf6, #6366f1); */
    /* background: linear-gradient(135deg, #f97316, #fb923c); */
    color: #ffffff;
    /* border: none; */
    /* border-color: var(--accent-color); */
    border-color: #06b6d4;
}

.hero .cta-wrapper .btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-color: #3b82f6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.hero .hero-form{
    padding: 2rem;
    background: var(--contrast-color);
    border-radius:8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

}

.hero .hero-form .form-control,
.hero .hero-form .form-select{
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 12px 15px;
}

.hero .hero-form .form-control:focus,
.hero .hero-form .form-select:focus{
    border-color: var(--accent-color);
}

.hero .hero-form .form-control::placeholder{
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero .hero-form button{
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: #ffffff;
    border: 0;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.hero .hero-form button:hover{
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    transform: translateX(3px);
}

/*--------------------------------------------------------------
# Full Form Description
--------------------------------------------------------------*/

.full-form-desc{
    padding: 2rem;
    background: var(--contrast-color);
    border-radius:8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.full-form-desc h3{
    font-size: 18px;
    margin-bottom: 10px;
    color: #475569;
    font-weight: 600;
}

.full-form-desc .form-control,
.full-form-desc .form-select{
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 12px 15px;
}

.full-form-desc .form-control:focus,
.full-form-desc .form-select:focus{
    border-color: var(--accent-color);
}

.full-form-desc .form-control::placeholder{
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.full-form-desc button{
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: #ffffff;
    border: 0;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.full-form-desc button:hover{
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    transform: translateX(3px);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: color-mix(in srgb, #1e293b, transparent 20%);

}

.about .content .who-we-are2{
    font-size: 1.5rem;
    font-weight: 700;
    color: color-mix(in srgb, #1e293b, transparent 20%);
    text-transform: uppercase;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 5px;
}

.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}
.about .content .read-more:hover {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    padding-right: 19px;
}

.about .content .read-more:hover i {
    margin-left: 10px;
}



.about .about-images img {
    border-radius: 20px 15px 10px 15px;
    /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;

    transition: ease-in 0.3s;
}

.about .about-images img:hover {
    transform: translateX(3px);
}

.vision-mision-box{
    background: linear-gradient(135deg,#3b82f6,#6366f1);
    padding: 20px;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
    border-radius: 20px 15px 10px 15px;
    transition: all 0.4s ease;
}

.vision-mision-box:hover{
    background: linear-gradient(135deg,#6366f1,#3b82f6);
}

.vision-mision-box h3{
    color: #ebebeb;
    font-size: 20px;
    font-weight: 600;
}

.vision-mision-box p{
    color: #ebebeb;
    font-size: 16px;
}

.about-cta h3{
    color: #6366f1;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
}

/*--------------------------------------------------------------
# Global Divider For Price
--------------------------------------------------------------*/
.price-divider{
    margin-bottom: 20px;
}
.price-divider::before{
    content: "";
    /* position: absolute; */
    display: block;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    /* left: 0; */
    /* right: 0; */
    /* bottom: 1px; */
    margin: auto;

}

.price-divider::after{
    content: "";
    /* position: absolute; */
    display: block;
    width: 50%;
    height: 3px;
    background: #4f46e5;
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    margin: auto;
}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}
.custom-section-title{
    text-align: center;
    padding-bottom: 50px;
    position: relative;
}

.custom-section-title h2{
    font-size: 26px;
    font-weight: 700;
    position: relative;
    /* color: var(--surface-color); */
    color: #475569;
}

.custom-section-title p{
    /* color: #fcf5d8; */
    font-size: 16px;
    padding-top: 10px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.bg-light-section{
    background-color: color-mix(in srgb, #e9d5ff, transparent 95%);

}

.bg-dark-section{
   /* background-color: color-mix(in srgb, #6366f1, transparent 95%); */
   /* background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.08),
    rgba(59, 130, 246, 0.05),
    rgba(6, 182, 212, 0)
    ); */

    background: linear-gradient(
        135deg,
    rgba(139, 92, 246, 0.10),
    rgba(167, 139, 250, 0.06),
    rgba(243, 232, 255, 0)
    );

    /* background: linear-gradient(
        135deg,
        rgba(241, 245, 249, 0.8),
        rgba(226, 232, 240, 0.5),
        rgba(248, 250, 252, 0)
    ); */

    /* background: linear-gradient(
        135deg,
        rgba(45, 212, 191, 0.08),
        rgba(94, 234, 212, 0.06),
        rgba(240, 253, 250, 0)
    ); */
}

.bg-dark-section2{
    /* background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.75),
        rgba(3, 105, 161, 0.55),
        rgba(14, 165, 233, 0.35)
    ); */
    background: linear-gradient(
        135deg,
       rgba(241, 245, 249, 0.8),
        rgba(226, 232, 240, 0.5),
        rgba(248, 250, 252, 0)
    );
}

.services{
    /* background-color: color-mix(in srgb, #e9d5ff, transparent 95%); */
}

.services .service-item {
    display: flex;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.services .service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--accent-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.services .service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.services .service-item:hover::before {
    transform: scaleY(1);
}

.services .service-item:hover .service-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotateY(180deg);
}

.services .service-item:hover .service-icon i {
    transform: rotateY(180deg);
}

.services .service-item:hover .service-link i {
    transform: translateX(5px);
}

.services .service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    transition: all 0.5s ease;
}

.services .service-icon i {
    font-size: 2rem;
    transition: transform 0.5s ease;
}

.services .service-content {
    flex-grow: 1;
}

.services .service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.services .service-content p {
    margin-bottom: 1.25rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services .service-link span {
    margin-right: 0.5rem;
}

.services .service-link i {
    transition: transform 0.3s ease;
}

.services .service-link:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-card {
    background-color: var(--surface-color);
    padding: 30px;
    text-align: center;
    height: 100%;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease-in-out;
}

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

.contact .info-card .icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .info-card .icon-box i {
    font-size: 24px;
    color: var(--accent-color);
}

.contact .info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact .info-card p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 15px;
    line-height: 1.6;
}

.contact .form-wrapper .input-group .input-group-text {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control,
.contact .form-wrapper .input-group .form-select {
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 0 8px 8px 0;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control:focus,
.contact .form-wrapper .input-group .form-select:focus {
    border-color: var(--accent-color);
}

.contact .form-wrapper .input-group .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .form-wrapper textarea.form-control {
    min-height: 160px;
}

.contact .form-wrapper button {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border: 0;
    padding: 12px 40px;
    color: var(--contrast-color);
    border-radius: 8px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.contact .form-wrapper button:hover {
    /* background-color: color-mix(in srgb, var(--accent-color), transparent 20%); */
    background: linear-gradient(135deg,#3b82f6,#6366f1);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.pricing .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing .pricing-card .price {
    margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
}

.pricing .pricing-card .price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #475569;
}

.pricing .pricing-card .description {
    margin-bottom: 2rem;
    font-size: 0.975rem;
}

.pricing .pricing-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pricing .pricing-card .features-list li i {
    /* color: var(--accent-color); */
    color: #6366f1;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.pricing .pricing-card .read-more{
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border: 0;
    padding: 12px 40px;
    color: var(--contrast-color);
    border-radius: 8px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.pricing .pricing-card .read-more:hover{
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    transform: translateX(3px);
}

/*--------------------------------------------------------------
# Custom Software Solution
--------------------------------------------------------------*/
.custom-sofwtare-banner-add{

}

.custom-sofwtare-banner-add .intro-panel{
    background: linear-gradient(180deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 96%));
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.custom-sofwtare-banner-add .intro-panel .preview-visual {
  position: relative;
}

.custom-sofwtare-banner-add .intro-panel .preview-visual img {
  display: block;
}

.custom-sofwtare-banner-add .intro-panel .preview-visual::after {
    content: "";
    position: absolute;
    inset: -10px -8px auto auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 65%), transparent 70%);
    filter: blur(12px);
    border-radius: 50%;
    pointer-events: none;

}

.custom-sofwtare-banner-add .intro-panel .intro-content .intro-title{
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 24px;
    color: #475569;
}

.custom-sofwtare-banner-add .intro-panel .intro-content .intro-text {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin: 0;
}

.custom-sofwtare-banner-add .intro-panel .intro-content .intro-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    padding: 5px 0;
}

.custom-sofwtare-banner-add .intro-panel .intro-content .intro-highlights li i {
    /* color: var(--accent-color); */
    color: #6366f1;
    font-size: 18px;
}

.custom-sofwtare-banner-add .intro-panel .intro-content .cta-btn {
    /* background: var(--accent-color); */
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: var(--contrast-color);
    border-radius: 999px;
    padding: 10px 18px;
    box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: 0.3s;
}

.custom-sofwtare-banner-add .intro-panel .intro-content .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--contrast-color);
}

.custom-sofwtare-banner-add .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 1200px) {
  .custom-sofwtare-banner-add .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .custom-sofwtare-banner-add .feature-grid {
    grid-template-columns: 1fr;
  }
}

.custom-sofwtare-banner-add .feature-item {
    position: relative;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    border-radius: 18px;
    padding: 20px 18px 20px 18px;
    box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: 0.3s;
    overflow: hidden;
}

.custom-sofwtare-banner-add .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px color-mix(in srgb, var(--default-color), transparent 82%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.custom-sofwtare-banner-add .feature-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent 100%);
    opacity: 0.8;
    pointer-events: none;
}

.custom-sofwtare-banner-add .feature-item .f-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: var(--contrast-color);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

.custom-sofwtare-banner-add .feature-item .f-icon i {
  font-size: 22px;
}

.custom-sofwtare-banner-add .feature-item .f-body .f-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #475569;
}

.custom-sofwtare-banner-add .feature-item .f-body .f-text {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 15px;
}

.badge-blue {
  background: color-mix(in srgb, var(--accent-color), #5dade2 40%);
}

/*--------------------------------------------------------------
# Digital Marketing Call To Action
--------------------------------------------------------------*/
.digital-marketing-banner-add{

}

.digital-marketing-banner-add .cta-image-wrapper{
    box-shadow: 0 6px 7px color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 40px 10px 20px 10px;
    transition: ease 0.3s;
}

.digital-marketing-banner-add .cta-image-wrapper:hover{
    box-shadow: 0 10px 17px color-mix(in srgb, var(--default-color), transparent 85%);
}

.digital-marketing-banner-add .cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    /* margin-bottom: 1.5rem; */
    color: #475569;
}

@media (max-width: 992px) {
   .digital-marketing-banner-add .cta-content h2 {
        font-size: 1.5rem;
   }
}

.digital-marketing-banner-add .cta-content p {
    font-size: 1.1rem;
    /* margin-bottom: 2rem; */
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.digital-marketing-banner-add .cta-features {
  /* margin-bottom: 1.5rem; */
}

.digital-marketing-banner-add .cta-features .feature-item {
    display: flex;
    align-items: center;
    /* margin-bottom: 1rem; */
}

.digital-marketing-banner-add .cta-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.digital-marketing-banner-add .cta-features .feature-item span {
  font-size: 1rem;
}

.digital-marketing-banner-add .cta-action .read-more{
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border: 0;
    padding: 12px 40px;
    color: var(--contrast-color);
    border-radius: 8px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.digital-marketing-banner-add .cta-action .read-more:hover{
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    transform: translateX(3px);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials{
    /* background-color: color-mix(in srgb, var(--accent-color), transparent 95%); */
    /* padding: 80px 0; */
    overflow: hidden;
}

.testimonials .testimonials-container {
    margin-bottom: 60px;
}

.testimonials .testimonials-container .swiper-wrapper {
    height: auto !important;
    padding-bottom: 20px;
}

.testimonials .testimonials-container .testimonial-item {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 3px solid var(--accent-color);
}

.testimonials .testimonials-container .testimonial-item .stars {
    margin-bottom: 15px;
    display: flex;
}

.testimonials .testimonials-container .testimonial-item .stars i {
    color: #FFD700;
    margin-right: 3px;
    font-size: 16px;
}

.testimonials .testimonials-container .testimonial-item p {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--default-color);
    line-height: 1.6;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile {
    display: flex;
    align-items: center;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    margin-right: 15px;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--heading-color);
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-weight: normal;
}

.testimonials .testimonials-container .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    opacity: 1;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    width: 20px;
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio{

}

.portfolio .img-scroll{
    width: 100%;
    height: 400px;       /* your visible area */
    overflow: hidden;
    position: relative;

    border-radius: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.portfolio .img-scroll img {
    width: 100%;
    height: auto;        /* keep natural aspect ratio */
    display: block;
    transition: transform 6s ease; /* smooth scroll */
    transform: translateY(0);      /* start at top */
    /* fallback if JS not available: mild scroll */
    /* the var --ty will be set by JS; if not present, fallback -25% */
}

/* on hover use computed translate value */

.portfolio .img-scroll:hover img {
    transform: translateY(var(--ty, -25%));
}

/* optional: make hover trigger faster on touch — prevents accidental long animations */
@media (hover: none) {
    .portfolio .img-scroll:hover img {
        transform: translateY(var(--ty, -25%));
        transition-duration: 1s;
    }
}

/* make Swiper slides visually nice and spacing */
.portfolio .swiper {
    padding: 1rem 0;
}

.portfolio .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* maintain slide content width */
    max-width: 100%;
}

.portfolio .swiper-button-next,
.portfolio .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #ff6bcb, #7366ff); */
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 0 18px rgba(130, 100, 255, 0.55);
    transition: 0.3s ease;
}

.portfolio .swiper-button-next:hover,
.portfolio .swiper-button-prev:hover {
    transform: scale(1.12);
    box-shadow: 0 0 25px rgba(130, 100, 255, 0.75);
}

.portfolio .swiper-button-next::after,
.portfolio .swiper-button-prev::after {
    color: #fff;
    font-size: 22px;

}

/* active (click) effect */
.portfolio .swiper-button-next:active,
.portfolio .swiper-button-prev:active {
    transform: scale(0.95);
}

/* On mobile make them smaller */
@media (max-width: 576px) {
    .portfolio .swiper-button-next,
    .portfolio .swiper-button-prev {
        width: 42px;
        height: 42px;
    }
    .portfolio .swiper-button-next::after,
    .portfolio .swiper-button-prev::after {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer{
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;

    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 60px;
    /* margin-right: 6px; */
}

.footer .footer-about a {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-bottom {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .footer-bottom .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer .footer-bottom .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.footer .footer-bottom .footer-bottom-content p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content p .sitename {
    color: var(--heading-color);
    font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .footer-bottom .footer-bottom-content .credits a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# whatsapp Button
--------------------------------------------------------------*/
.whatsappbutton{
    background-color: #25D366;
    /* color: #fff; */
    position: fixed;
    right: 15px;
    bottom: 60px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.whatsappbutton:hover{
    background-color: #1ebe5d;
    transform: scale(1.12);
    box-shadow: 0px 10px 25px rgba(37, 211, 102, 0.5);

}

.whatsappbutton i{
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.whatsappbutton {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}


/* Floating Button */
.wa-floating-btn {
    position: fixed;
    bottom: 60px;
    right: 15px;
    background: #25D366;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.wa-floating-btn:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

/* Popup Box */
.wa-popup {
    width: 290px;
    position: fixed;
    bottom: 105px;
    right: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 9999;
    display: none;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.wa-header {
    background: #25D366;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* Body */
.wa-body {
    padding: 15px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Button in popup */
.wa-chat-btn {
    background: #25D366;
    color: #fff;
    display: block;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.wa-chat-btn:hover {
    background: #1ebe5d;
    color: #fff;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}


/*--------------------------------------------------------------
# Modal Customization
--------------------------------------------------------------*/

.modal-form-header{
    background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.modal-form-contact .form-control,
.modal-form-contact .form-select{
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 12px 15px;
}

.modal-form-contact .form-control:focus,
.modal-form-contact .form-select:focus{
    border-color: var(--accent-color);
}

.modal-form-contact .form-control::placeholder{
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.modal-form-contact button{
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: #ffffff;
    border: 0;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.modal-form-contact button:hover{
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    transform: translateX(3px);
}
