.widget-head img,
.header-logo img {
    width: 250px;
    max-width: 100%;
    display: block;
}

.brand-img img {
    height: 60px;
}

.footer-section {
    margin-top: 5rem;
}

.contact-section {
    margin-top: 5rem;
}






.mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: #000;
    padding: 0px;
    border-radius: 2rem;
    height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mega-dropdown:hover .mega-menu {
    height: auto;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
}

h6.mega-title {
    color: inherit;
    border-bottom: 2px solid maroon;
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 0.8rem;
    min-width: 180px;
}

.mega-row {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(5, auto);
}

header .mega-menu .mega-list li {
    display: block;
}

header .mega-menu .mega-list li a {
    color: white !important;
    font-size: 0.7rem;
    line-height: 1.4;
    padding: 0;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

header .mega-menu .mega-list li:hover a {
    color: var(--theme) !important;
}

header .mega-menu .mega-list li:last-child a {
    margin-bottom: 0px;
}







/* service detail page  */


/* Custom styles for the iPhone App Development section */
.contain-wrapp {
    background-color: var(--body);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.paddingbot-clear {
    padding-bottom: 0 !important;
}

/* Background pattern */
/* .contain-wrapp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, var(--bg) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, var(--bg) 2px, transparent 2px);
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: 0;
} */

.section-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mainhade {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 25px;
    margin-right: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

/* .mainhade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--theme);
    border-radius: 2px;
} */

.mainhade span {
    color: var(--theme);
    position: relative;
}

.mainhade span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--theme-dark);
    opacity: 0.5;
}

.section-heading i {
    font-size: 4rem;
    color: var(--theme);
    background: var(--bg);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 20px;
    box-shadow: var(--box-shadow);
    border: 5px solid var(--white);
    position: relative;
    z-index: 1;
}

.section-heading i::before {
    position: relative;
    z-index: 2;
}

.section-heading i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed var(--theme);
    opacity: 0.3;
    z-index: 0;
}

.contain-wrapp h3 {
    color: var(--header);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.contain-wrapp h4 {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.contain-wrapp p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.contain-wrapp p:last-child {
    margin-bottom: 0;
}

.contain-wrapp p b {
    color: var(--theme-dark);
    font-weight: 600;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    border: 8px solid var(--white);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.img-responsive:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.list-12 {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.list-12 li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.6;
    font-size: 1.05rem;
}

.list-12 li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--theme);
    background: var(--bg);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Feature boxes for better visual appeal */
.feature-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--theme);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box h4 {
    color: var(--theme-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .mainhade {
        font-size: 2.5rem;
    }

    .section-heading i {
        font-size: 3.5rem;
        width: 90px;
        height: 90px;
        line-height: 90px;
    }
}

@media (max-width: 768px) {
    .contain-wrapp {
        padding: 60px 0;
    }

    .mainhade {
        font-size: 2rem;
    }

    .img-responsive {
        transform: none;
        margin-top: 30px;
    }

    .img-responsive:hover {
        transform: none;
    }

    .feature-box {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .mainhade {
        font-size: 1.8rem;
    }

    .section-heading i {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}



/* Custom Accordion Styles */
.accordion {
    width: 100%;
    margin: 0 auto;
}

.panel {
    margin-bottom: 12px;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
}

.panel:hover {
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12); */
}

.panel-heading {
    background-color: #f8f9fa;
    padding: 0;
    border-bottom: 1px solid #E5E5E5;
}

.contain-wrapp .panel-title {
    margin: 0;
}

/* Changed from <a> to <button> for better accessibility and to prevent redirect */
.panel-title button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    color: #111;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.panel-title button:not(.collapsed) {
    background-color: #A5110D;
    color: white;
}

.panel-title button:hover {
    background-color: #f0eeee;
    color: #A5110D;
}

.panel-title button:not(.collapsed):hover {
    background-color: #5e0502;
    color: white;
}

/* Plus/Minus icon */
.panel-title button::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.panel-title button.collapsed::after {
    content: '\f107';
}

.panel-title button:not(.collapsed)::after {
    content: '\f106';
}

/* Panel body styles */
.panel-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: white;
}

.panel-collapse.show {
    max-height: 500px;
    /* Adjust based on your content */
}

.panel-body {
    padding: 25px;
    line-height: 1.7;
    color: #504E4E;
    border-top: 1px solid #f0eeee;
}

.panel-body p {
    margin-bottom: 0;
}

/* Active panel styling */
.panel.active {
    border-color: #A5110D;
    box-shadow: 0 4px 15px rgba(165, 17, 13, 0.15);
}

.panel.active .panel-heading {
    border-bottom-color: #A5110D;
}

/* Animation for the panel when opening */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-collapse.show .panel-body {
    animation: fadeIn 0.4s ease;
}

/* Focus styles for accessibility */
.panel-title button:focus {
    outline: 2px solid #A5110D;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .panel-title button {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .panel-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .panel-title button {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .panel-title button::after {
        font-size: 1rem;
    }

    .panel-body {
        padding: 16px;
    }
}


select option {
    background-color: #a5110d75;
    color: white;
    outline: none;
    border: none;
}


.case-study-wrapper .main-box .box .title-items h3 {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 1rem;
    transform: translate(-50%, -50%) rotate(-90deg);
    line-height: 0rem;
    white-space: nowrap;
}

span.arrow-btn {
    display: none !important;
}

.footer-bottom .footer-wrapper .footer-menu li a {
    margin-right: 80px;
}

img.freelancer {
    width: 28px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover img.freelancer {
    filter: invert(1);
}


/* New Page Start*/

.availability {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: start;
    margin: 2rem 0;
}

.availability .badges {
    background-color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: 500;
    color: var(--theme2);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border);
}

.availability .badges strong {
    color: var(--theme);
    font-weight: 600;
}

.availability .mode {
    background-color: var(--theme);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.feature-box-items {
    margin-top: 30px;
    background-color: var(--white);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    padding: 25px;
    position: relative;
    z-index: 9;
    border: 2px solid transparent;
    border-radius: 24px;
    transition: all 0.3s linear;
}

.feature-box-items.new-box2 {
    background: #f0eeee;
}

.feature-box-items:hover {
    transform: translateY(-15px);
    box-shadow: 0px 0px 10px #a5110d91 !important;
    border-color: var(--theme);
    background-color: var(--theme);
    color: white;
}

/* .feature-box-items .content p{
    min-height: 120px;
} */

.feature-box-items:hover h3,
.feature-box-items:hover .content p {
    color: #fff;

}

h2.mainhade {
    font-size: 2.5rem;
}

.row.new-right-box {
    overflow-y: scroll;
    max-height: 400px;
}

h2.line-heading::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--theme);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature-box-items .content {
    margin-top: 0px;
}

.feature-box-items:hover a.box-nav {
    color: rgb(0, 0, 0);

}


a.box-nav:hover {
    text-decoration: underline;
    color: var(--theme) !important;
}


.feature-box-items1 {
    margin-top: 30px;
    background-color: var(--theme);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    padding: 25px;
    position: relative;
    z-index: 9;
    border: 2px solid transparent;
    border-radius: 24px;
    transition: all 0.3s linear;
}

.feature-box-items1 .content h3,
.feature-box-items1 .content p {
    color: white;
    margin-bottom: 10px;
}



/* h3.content-head{
    min-height:80px;
}

.list-link{
     min-height: 120px;
} */

.new-section {
    padding: 50px 0px !important;
}

.feature-box-items.it-box:hover {
    background: transparent;
    border: 2px solid transparent;
    transition: none;
    transform: none;
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06); */
}

.feature-box-items.it-box:hover h3 {
    color: black;
}


i.fa-solid.fa-circle.me-2 {
    font-size: 6px;
    margin-top: 12px;
}

a.box-nav {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 8px;
}

.feature-box-items1 .content h3 {
    color: white;
    margin-bottom: 0px;
    padding: 0px;
    min-height: 64px;
}

ul.list-link {
    min-height: 144px;
}

.feature-box-items.it-box .content h3 {
    min-height: 40px;
}

span.short-text {
    color: black;
    text-transform: lowercase;
    font-size: 29px;
    margin-inline: 6px;
}

span.short-text::after {
    display: none;
}

.it-box h3.content-head {
    font-size: 22px;
}

@media screen and (max-width:768px) {
    h2.mainhade {
        font-size: 1.6rem;
    }

    .section-heading {
        margin-bottom: 0px;
    }

    /* h3.content-head{
        min-height:unset;
    }

    .list-link{
        min-height: unset;
    } */
}

/* New page End */




.faq-content.sticky-style {
    text-align: center;
}


.faq-content.sticky-style .section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--theme);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}






/* =========================================
           GLOBAL VARIABLES & RESETS
           ========================================= */
:root {
    --primary-red: #a5110d;
    --bg-light-blue: #ffffff;
    --text-dark: #222222;
    --text-muted: #666666;
    --border-color: #e2e8f0;
}


/* =========================================
           HERO & PRICING CARDS
           ========================================= */
.pricing-section {
    padding: 120px 0 20px 0;
}

.pricing-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-section .section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.pricing-section .pricing-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    text-align: left;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    position: relative;
}

.pricing-section .pricing-card.highlight {
    border: 2px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.1);
    padding-top: 50px;
    /* Make room for header badge */
}

.pricing-section .pricing-card .card-badge {
    background: var(--primary-red);
    color: white;
    padding: 8px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px 6px 0 0;
}

.pricing-section .pricing-card .plan-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-section .pricing-card .plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 40px;
}

.pricing-section .pricing-card .btn-plan {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
    padding: 10px;
}

.pricing-section .pricing-card .btn-plan.btn-outline-red {
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
}

.pricing-section .pricing-card .btn-plan.btn-red {
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
}

.pricing-section .pricing-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-section .pricing-card .feature-list li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    align-items: center;
}

.pricing-section .pricing-card .feature-list li i {
    color: var(--primary-red);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 0.8rem;
}

.pricing-section .pricing-footnote {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
           FEATURE COMPARISON TABLE
           ========================================= */
.comparison-section {
    padding: 40px 0;
}

.comparison-section .table-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    /* overflow: hidden; */
}

.comparison-section .table {
    margin-bottom: 0;
}

.comparison-section .table th {
    text-align: center;
    padding: 20px 10px;
    font-size: 1rem;
    font-weight: 600;
    vertical-align: middle;
    border-bottom: none;
}

.comparison-section .table th.th-feature {
    background: #ffffff;
    text-align: left;
    padding-left: 20px;
    font-size: 1.1rem;
}

.comparison-section .table th.th-plan1 {
    background: #1b4965;
    color: white;
}

.comparison-section .table th.th-plan2 {
    background: var(--primary-red);
    color: white;
}

.comparison-section .table th.th-plan3 {
    background: #3a86ff;
    color: white;
}

.comparison-section .table .category-row td {
    background-color: #f8f9fa;
    font-weight: 700;
    text-align: left;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: #333;
}

.comparison-section .table td {
    text-align: center;
    vertical-align: middle;
    padding: 12px 10px;
    font-size: 0.85rem;
    border-color: var(--border-color);
}

.comparison-section .table td.feature-name {
    text-align: left;
    padding-left: 20px;
    color: var(--text-dark);
}

.comparison-section .table td i.fa-check {
    color: var(--primary-red);
    font-size: 1rem;
}

.comparison-section .table td.dash {
    color: #aaa;
    font-weight: bold;
}

/* =========================================
           ADD-ONS SECTION
           ========================================= */
.addons-section {
    padding: 50px 0;
}

.addons-section .addons-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.addons-section .addon-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: 6px;
    height: 100%;
    text-align: left;
}

.addons-section .addon-card .addon-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}

.addons-section .addon-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.addons-section .addon-card .addon-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =========================================
           FORM SECTION
           ========================================= */
.form-section {
    padding: 40px 0;
}

.form-section .form-container {
    background: #e4c2c136;
    padding: 40px;
    border-radius: 8px;
    /* max-width: 700px; */
    margin: 0 auto;
    text-align: center;
    box-shadow: 0px 0px 10px #80808066;
}

.form-section .form-container h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.form-section .form-container p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-section .form-container .form-control {
    border: 1px solid #ced4da;
    padding: 10px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
}

.form-section .form-container .btn-submit {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 40px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    margin-top: 15px;
}

/* =========================================
           FAQ SECTION
           ========================================= */
.faq-section {
    padding: 50px 0 100px 0;
    /* extra padding bottom for overlapping CTA */
}

.faq-section .faq-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-section .faq-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-section .faq-box .faq-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-section .faq-box i {
    color: var(--primary-red);
    font-size: 0.8rem;
}


#hero-section-pricing.hero {

    background: #f7fbff;

    position: relative;

    overflow: hidden;

}

#hero-section-pricing.hero::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    border-radius: 50%;

    background: rgba(165, 17, 13, .1) !important;

    top: -220px;

    right: -180px;

    z-index: 0;

}

#hero-section-pricing.hero .container {

    position: relative;

    z-index: 2;

}

#hero-section-pricing.hero h1 {

    font-size: 45px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

}

#hero-section-pricing.hero h1 span {
    color: var(--primary);
}

#hero-section-pricing.hero p {

    font-size: 18px;

    color: #666;

}

#hero-section-pricing.hero img {

    animation: float 4s ease-in-out infinite;

}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}


#hero-section-pricing .btn-outline-primary {

    color: var(--primary);
    border-color: var(--primary);
}

#hero-section-pricing .bg-primary-subtle {
    background-color: rgba(165, 17, 13, .15) !important;
}

/*=========================================
General
=========================================*/




#hero-section-pricing a {
    text-decoration: none;
    transition: .3s;
}

#hero-section-pricing .btn {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: normal;
    transition: .3s;
    font-size: 16px;
}

#hero-section-pricing .btn-primary {
    background: #a5110d;
    border: none;
}

#hero-section-pricing .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(165, 17, 13, .30);

}

#hero-section-pricing .bg-primary {
    background: var(--primary) !important;
}

#hero-section-pricing .card-header:first-child {
    background: var(--primary);
}

#hero-section-pricing .btn:hover,
.btn:focus {
    background: #a5110d;
    color: white;
}

#hero-section-pricing .btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background: var(--primary);
    border-color: var(--primary);

}

#hero-section-pricing .btn-outline-primary:hover {

    transform: translateY(-3px);

}

section#hero-section-pricing {
    padding: 160px 0px 80px 0px;
}

#hero-section-pricing h2.fw-bold.count-color {
    color: #a5110d;
}



@media screen and (max-width:768px) {

    section#hero-section-pricing {
        padding: 80px 0px 40px 0px;
    }


}


.section-title .sub-title.bg-color-2 {
    background: #a5110d;
}

section.pricing-section.fix.section-padding .section-title .sub-title.bg-color-2 {
    background: #a5110d;
}

section.pricing-section.fix.section-padding .sub-title.bg-color-2.wow.fadeInUp {
    font-size: 14px;
}

section.pricing-section.fix.section-padding .pricing-card .form-check-input:checked {
    background-color: #a5110d;
    border-color: #a5110d;
}

section.pricing-section.fix.section-padding .pricing-card .form-check-input:focus {
    border-color: #a5110d;
}

.table-btn {
    border: 1px solid #a5110d;
    color: #a5110d;
    white-space: nowrap;
}

.table-btn:hover {
    background-color: #a5110d;
    color: white;
}

.form-section.container .nice-select {
    background-color: transparent;
    width: unset;
    outline: none;
    border-bottom: 2px solid var(--border) !important;
    padding: 12px 15px !important;
    border: none;
    border-radius: 0;
    padding: 0;
}

.form-section.container .nice-select:after {
    display: none;
}


.offcanvas.offcanvas-end .nice-select {
    background-color: transparent;
    width: unset;
    outline: none;
    border-bottom: 2px solid var(--border) !important;
    padding: 12px 15px !important;
    border: none;
    border-radius: 0;
    padding: 0;
}

.offcanvas.offcanvas-end .nice-select:after {
    display: none;
}


.hero-1 .hero-content a.offcanvas-btn span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: capitalize;
    color: white;
    display: inline-block;
    margin-bottom: 0px;
}

.news-standard-wrapper .news-standard-items {
    border: none;
    padding: 0px;
    margin-top: 10px;
}

.news-standard-wrapper .news-standard-items .thumb img {
    object-fit: cover;
}

.content.text-content-right {
    max-width: 500px;
    margin-left: auto;
}

.content.text-content-left {
    max-width: 500px;
    margin-right: auto;
}

img.freelancer-svg {
    width: 24px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover .freelancer-svg {
    filter: invert(1);
}


/* =========================================
   ONLINE PLATFORM SECTION (Strict Hierarchy)
   ========================================= */

#online-plateform {
    padding: 40px 0 0 0;
    width: 100%;
}

#online-plateform .platform-card {
    background-color: #fff;
    /* Lighter dark shade for the card */
    border-radius: 8px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#online-plateform .platform-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#online-plateform .platform-card .platform-logo {
    max-height: 28px;
    /* Restricts image height so they all look uniform */
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 12px;
    /* Temporary styling for the alt text until images are loaded */
    color: #ffffff;
    font-weight: 600;
    font-family: sans-serif;
    text-align: center;
}

#online-plateform .platform-card .stars {
    display: flex;
    gap: 3px;
}

#online-plateform .platform-card .stars i {
    color: #ffb400;
    /* Yellow/Gold star color */
    font-size: 14px;
}

#online-plateform .platform-card:has(.platform-logo) p {
    font-size: 12px;
    margin-bottom: 4px;
}


/* =========================================
   HERO SECTION (PARENT)
   ========================================= */
#hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}


/* =========================================
   ZERO-SIZE ANCHOR TRICK (For perfect alignment)
   ========================================= */
#hero-section .social-anchor {
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    z-index: 99;
}

/* =========================================
   ROTATED TEXT STYLING
   ========================================= */
#hero-section .social-anchor .social-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    letter-spacing: 1px;
}

#hero-section .social-anchor .social-text a {
    text-decoration: none;
    color: #111111;
    transition: color 0.3s ease;
}

#hero-section .social-anchor .social-text a:hover {
    color: #a5110d;
}

#hero-section .social-anchor .social-text .separator {
    color: #999999;
    font-weight: 300;
}


@media screen and (max=width:576px) {
    .hero-1 .hero-image {
        display: none;
    }

    .hero-1 .mike-shape {
        display: none;
    }

    .hero-1 .rocket-shape {
        display: none;
    }
}



/* ===========================
   Modern Consultation Offcanvas
=========================== */

#consultationOffcanvas {
    border-radius: 12px 0 0 12px;
    background: #f5f5f5;
    box-shadow: -15px 0 50px rgba(0, 0, 0, .15);
    overflow-y: auto;
}

/* Scrollbar */

#consultationOffcanvas::-webkit-scrollbar {
    width: 6px;
}

#consultationOffcanvas::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 20px;
}

/* Header */

#consultationOffcanvas .offcanvas-header {
    position: relative;
}

#consultationOffcanvas .btn-close {
    width: 42px;
    height: 42px;
    background-color: #f4f4f4;
    border-radius: 50%;
    opacity: 1;
    transition: .3s;
}

/* Heading */

#consultationOffcanvas h3 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
}

#consultationOffcanvas h3::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 20px;
    background: #a5110d;
}

#consultationOffcanvas p {
    color: #6b7280;
    font-size: 15px;
}

/* Form */

#consultationOffcanvas form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

/* Inputs */

#consultationOffcanvas .form-control,
#consultationOffcanvas .form-select,
#consultationOffcanvas .nice-select {

    /* height: 54px; */
    border: 1px solid #e4e8ef;
    border-radius: 8px;
    background: #fafbfc;
    font-size: 15px;
    transition: .35s;
    box-shadow: none;
}

#consultationOffcanvas textarea.form-control {
    height: 130px;
    padding-top: 15px;
    resize: none;
}

/* Focus */

#consultationOffcanvas .form-control:focus,
#consultationOffcanvas .form-select:focus,
#consultationOffcanvas .nice-select:focus,
#consultationOffcanvas .nice-select.open {

    border-color: #a5110d;
    background: #fff;
    box-shadow: 0 0 0 .2rem rgba(165, 17, 13, .15);
}

/* Placeholder */

#consultationOffcanvas ::placeholder {
    color: #9ca3af;
}

/* Nice Select */

#consultationOffcanvas .nice-select {
    /* line-height: 52px; */
    padding-left: 18px;
}

#consultationOffcanvas .nice-select:after {
    border-color: #777;
}

#consultationOffcanvas .nice-select .list {
    width: 100%;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

#consultationOffcanvas .nice-select .option {
    padding-left: 18px;
}

#consultationOffcanvas .nice-select .option:hover {
    background: #fff2f2;
    color: #a5110d;
}

/* Button */

#consultationOffcanvas button[type="submit"] {
    height: 56px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #a5110d, #c01c17);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

#consultationOffcanvas button[type="submit"]:hover {

    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(165, 17, 13, .25);
}

#consultationOffcanvas button[type="submit"]::before {

    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-30deg);
    transition: .6s;
}

#consultationOffcanvas button[type="submit"]:hover::before {
    left: 120%;
}

/* Footer */

#consultationOffcanvas small {
    color: #8b8b8b;
}

/* Input Hover */

#consultationOffcanvas .form-control:hover,
#consultationOffcanvas .nice-select:hover {

    border-color: #a5110d;
}

#consultationOffcanvas .nice-select.open .list {
    background: #ffffff;
}





/* ===========================
demo off canvas Offcanvas
=========================== */

#demoOffcanvas {
    border-radius: 12px 0 0 12px;
    background: #f5f5f5;
    box-shadow: -15px 0 50px rgba(0, 0, 0, .15);
    overflow-y: auto;
}

/* Scrollbar */

#demoOffcanvas::-webkit-scrollbar {
    width: 6px;
}

#demoOffcanvas::-webkit-scrollbar-thumb {
    background: #d8d8d8;
    border-radius: 20px;
}

/* Header */

#demoOffcanvas .offcanvas-header {
    position: relative;
}

#demoOffcanvas .btn-close {
    width: 42px;
    height: 42px;
    background-color: #f4f4f4;
    border-radius: 50%;
    opacity: 1;
    transition: .3s;
}

/* Heading */

#demoOffcanvas h3 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
}

#demoOffcanvas h3::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 20px;
    background: #a5110d;
}

#demoOffcanvas p {
    color: #6b7280;
    font-size: 15px;
}

/* Form */

#demoOffcanvas form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

/* Inputs */

#demoOffcanvas .form-control,
#demoOffcanvas .form-select,
#demoOffcanvas .nice-select {

    /* height: 54px; */
    border: 1px solid #e4e8ef;
    border-radius: 8px;
    background: #fafbfc;
    font-size: 15px;
    transition: .35s;
    box-shadow: none;
}

#demoOffcanvas textarea.form-control {
    height: 130px;
    padding-top: 15px;
    resize: none;
}

/* Focus */

#demoOffcanvas .form-control:focus,
#demoOffcanvas .form-select:focus,
#demoOffcanvas .nice-select:focus,
#demoOffcanvas .nice-select.open {

    border-color: #a5110d;
    background: #fff;
    box-shadow: 0 0 0 .2rem rgba(165, 17, 13, .15);
}

/* Placeholder */

#demoOffcanvas ::placeholder {
    color: #9ca3af;
}

/* Nice Select */

#demoOffcanvas .nice-select {
    /* line-height: 52px; */
    padding-left: 18px;
}

#demoOffcanvas .nice-select:after {
    border-color: #777;
}

#demoOffcanvas .nice-select .list {
    width: 100%;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

#demoOffcanvas .nice-select .option {
    padding-left: 18px;
}

#demoOffcanvas .nice-select .option:hover {
    background: #fff2f2;
    color: #a5110d;
}

/* Button */

#demoOffcanvas button[type="submit"] {
    height: 56px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #a5110d, #c01c17);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

#demoOffcanvas button[type="submit"]:hover {

    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(165, 17, 13, .25);
}

#demoOffcanvas button[type="submit"]::before {

    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-30deg);
    transition: .6s;
}

#demoOffcanvas button[type="submit"]:hover::before {
    left: 120%;
}

/* Footer */

#demoOffcanvas small {
    color: #8b8b8b;
}

/* Input Hover */

#demoOffcanvas .form-control:hover,
#demoOffcanvas .nice-select:hover {

    border-color: #a5110d;
}

#demoOffcanvas .nice-select.open .list {
    background: #ffffff;
}





@keyframes slideIn {

    from {

        transform: translateX(80px);
        opacity: 0;
    }

    to {

        transform: translateX(0);
        opacity: 1;
    }

}

/* Mobile */

@media(max-width:767px) {

    #demoOffcanvas {

        width: 100% !important;
        border-radius: 20px 20px 0 0;
    }

    #consultationOffcanvas {

        width: 100% !important;
        border-radius: 20px 20px 0 0;
    }

    #consultationOffcanvas form {

        padding: 20px;
    }

    #consultationOffcanvas h3 {

        font-size: 24px;
    }

    #demoOffcanvas form {

        padding: 20px;
    }

    #demoOffcanvas h3 {

        font-size: 24px;
    }

    .contact-wrapper .contact-form-area {
        padding: 30px 16px;
        border: none;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    p.wow.fadeInLeft.color-2.copyright-text {
        font-size: 10px;
    }

    .footer-bottom .footer-wrapper {
        margin-top: 0px;
    }

}