/*=========================
    RESET
==========================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Red+Hat+Display:wght@400;500;600;700;800;900&display=swap');


:root {
    --heading-font: "Red Hat Display", sans-serif;
    --body-font: "DM Sans", sans-serif;
}


/* =========================
   BODY FONT
========================= */

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #52617a;
    background: #fff;
}



/* =========================
   HEADING FONT
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}



/* Desktop Heading Sizes */

h1 {
    font-size: 64px;
    font-weight: 900;
}


h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.title.black {
    color: #000;
}

h3 {
    font-size: 32px;
    font-weight: 700;
}


h4 {
    font-size: 24px;
    font-weight: 700;
}


h5 {
    font-size: 20px;
    font-weight: 700;
}


h6 {
    font-size: 18px;
    font-weight: 700;
}



/* =========================
   BODY ELEMENTS
========================= */

p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}


a {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}


button,
.btn {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
}


span,
label,
li {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 400;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.sr7-layer a {
    color: #fff !important;
}

/* Top Bar */

.top-bar {
    background: #9c12d4;
    color: #fff;
    font-size: 14px;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.left-info {
    display: flex;
    gap: 30px;
}

.left-info span i {
    margin-right: 8px;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

.top-bar {
    transition: 0.3s;
}

.top-bar.hide {
    margin-top: -50px;
    /* same as top bar height */
}

header {
    transition: 0.3s;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Header */

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.brand-logo {
    max-width: 150px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.logo img {
    height: 70px;
}

/* Menu */

.menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #222;
    font-size: 17px;
    padding: 10px 0;
    display: block;
    transition: 0.3s;
}

.menu a:hover,
.menu .active {
    color: #e20000;
}

/* First Dropdown */

.submenu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    width: 230px;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 100;
}

.submenu li {
    border-bottom: 1px solid #eee;
}

.submenu li:last-child {
    border: none;
}

.submenu a {
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
}

.dropdown:hover>.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

/* Second Level */

.submenu-right {
    position: absolute;
    left: 100%;
    top: 0;
    width: 220px;
    background: #fff;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.dropdown-right:hover>.submenu-right {
    visibility: visible;
    opacity: 1;
}

/* Quote Button */

.quote-btn {
    background: #9814d8;
    color: #fff;
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #7d0ec0;
}

/* Mobile */

.mobile-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
}


/*==========================
    ABOUT SECTION
==========================*/


.about-section {
    padding: 80px 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}


.small-title {
    color: #a600e8;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}


.about-content h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #1d2438;
}


.about-content h2 span {
    display: block;
}


.about-content p {
    color: #52617a;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
}



/* Rating */

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.rating span {
    color: #ffc400;
    font-size: 20px;
}

.rating b {
    color: #4285f4;
    font-size: 20px;
}



/* Features */

.features {
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}


.features div {
    color: #15213b;
    font-size: 15px;
}


.features i {
    background: #000;
    color: white;
    width: 15px;
    height: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 10px;
    margin-right: 10px;
}



/* Bottom */

.bottom-info {
    display: flex;
    align-items: center;
    gap: 50px;
}


.founder {
    display: flex;
    align-items: center;
    gap: 15px;
}


.founder img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}


.founder h4 {
    margin: 0;
    font-size: 18px;
}


.founder small {
    color: #a600e8;
}



.phone {
    display: flex;
    gap: 15px;
    align-items: center;
    color: #a600e8;
}


.phone strong {
    display: block;
    color: #111;
}



/* Image */
.small-about-image {
    position: absolute;
    left: 0%;
    top: 7%;
    animation: jump-1 10s linear infinite;
}

.small-about-image {
    animation: floatingImage 5s ease-in-out infinite;
}

@keyframes floatingImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}


.left.single h2 {
    color: #fff;
}

.experience {
    animation: experienceFloat 4s ease-in-out infinite;
}

@keyframes experienceFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.small-about-image img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.about-image {
    display: flex;
    justify-content: end;
    position: relative;
}

.main-img {
    width: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}


.experience {
    background: #a600e8;
    color: white;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    position: absolute;
    align-items: center;
    justify-content: space-between;
    padding: 25px 32px;
    bottom: 7%;
    left: 1%;
    width: 310px;
}


.experience strong {
    font-size: 45px;
}


.experience span {
    font-size: 18px;
}


.experience p.time {
    margin: 0;
    font-size: 22px;
    color: #fff;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 700;
    margin-top: -8px;
    margin-bottom: 0;
}

.experience p {
    color: #fff;
    line-height: 24px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

/* Buttons */
.cost-cal-buttons {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}

.cost-cal-buttons a.btn-primary {
    display: inline-block;
    overflow: hidden;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: #a600e8;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    border-color: #a600e8;
}

.btn-primary:hover {
    background-color: transparent;
    color: #a600e8;
    border-color: #a600e8;
}

.video-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fbeaff;
    color: #a600e8;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

a.video-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.video-popop span {
    margin-left: 30px;
    font-weight: 500;
    color: #DF0A0A;
}

@keyframes pulse-border {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

a.video-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid #a600e8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-border 1.5s infinite;
    z-index: -1;
}

a.video-btn i {
    position: relative;
    z-index: 2;
}

.modal-backdrop.show {
    opacity: .8;
    background: #000;
}

#videoModal .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 1060;
    filter: invert(1);
    opacity: 1;
}

#videoModal iframe {
    border-radius: 10px;
}



/*------------------------- Second Section ----------------------------*/
.container-custom {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.business-cost-section {
    background: #fff;
}

.section-tag {
    color: #b11cff;
    font-weight: 500;
    letter-spacing: .5px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-desc {
    color: #303b55;
    line-height: 1.8;
    margin: 0 auto;
}


/* CTA Banner */

.cost-banner {
    position: relative;
    min-height: 290px;
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cost-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.banner-content h3 {
    font-weight: 700;
    margin-bottom: 35px;
    color: #fff;
}

.cost-btn {
    border-radius: 15px;
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 25px;
}

.banner-content p {
    margin: 0;
}


/*---------------------------- 4th Section Home Page ---------------------------*/

.jurisdiction-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

/* Small label */

.section-tag {
    position: relative;
    z-index: 1;
    color: #b11cff;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

/* Heading */
.section-title {
    position: relative;
    z-index: 1;
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Description */

.section-description {
    position: relative;
    z-index: 1;
    color: #303b55;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 1250px;
}


/*----------- rotate Css-------------*/

/* WRAPPER */
.feature-slider {
    width: 500px;
    height: 650px;
    position: relative;
}

/* ORBIT */
.feature-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 450px;
    height: 450px;
    transform: translate(-50%, -50%) rotate(0deg);
    border: 3px dotted #c000ff;
    border-radius: 50%;
    transition: transform .6s ease;
}

/* ITEMS */
.feature-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78px;
    height: 78px;
    margin: -39px;
    background: #9c08c952;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #7d3cff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.feature-item img {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.feature-item.is-active {
    background: linear-gradient(135deg, #8a3cff, #9c08c9);
    color: #fff;
    transform: scale(1.15);
}

.feature-item:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(92, 0, 255, .4);
}

/* CENTER */
.feature-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    text-align: center;
    z-index: 10;
}

#bgImage {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    object-fit: contain;
    opacity: .08;
    z-index: -1;
    pointer-events: none;
    transition: .4s;
}

.feature-center h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.feature-center h2 a {
    color: #5d00b4;
    text-decoration: none;
}

.feature-center p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-icon {
    color: #b11cff;
}


.feature-icon svg path {
    fill: currentColor;
}


.contact-form-box {
    box-shadow: 0px 21px 46px 0px rgba(0, 0, 0, 0.11);
    padding: 5% 5% 4% 5%;
    border-radius: 7px;
}

.contact-form-box form .row:nth-child(2) p {
    margin-bottom: 0;

}

.contact-form-box h2 {
    margin-bottom: 30px;
    color: #000;
}

.sub-text {
    margin: 0 0 16px;
    display: block;
    font-size: 16px;
    line-height: 16px;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #b11cff;
}

/*---------------------------- 4th Section Home Page end ---------------------------*/

/*------------------------------ 5th Section Home Page Timeline Code -----------------------------------*/


/* WRAPPER */
.timeline__wrapper {
    width: 95%;
    max-width: 1400px;
    margin: 80px auto;
    position: relative;
}

/* TRACK */
.timeline__track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 180px 30px;
}

/* LINE */
.timeline__line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #9C08C9;
    transform: translateY(-50%);
}

/* ITEM */
.timeline__item {
    width: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DOT */
.timeline__dot {
    width: 22px;
    height: 22px;
    background: #9C08C9;
    border: 4px solid #9C08C9;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
    z-index: 10;
}

/* CARD */
.timeline__card {
    width: 210px;
    background: #1b211e;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: absolute;
    transition: .4s;
    opacity: .35;
    height: 180px;
}

/* POSITION MODIFIERS */
.timeline__card--top {
    bottom: 45px;
}

.timeline__card--bottom {
    top: 45px;
}


.timeline__card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #fff;
    line-height: 32px;
}

.timeline__card p {
    color: #d4d4d4;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
}

/* ACTIVE STATE */
.timeline__item--active .timeline__dot {
    background: #fff;
    border-color: #DF0A0A;
    transform: scale(1.35);
}

.timeline__item--active .timeline__card {
    opacity: 1;
    border-color: #9C08C9;
    box-shadow: 0 0 25px rgb(156, 8, 201, .35);
}

/* NAV */
.timeline__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #303530;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 20;
    padding: 6px 0;
}

.timeline__nav--prev {
    left: -10px;
}

.timeline__nav--next {
    right: -10px;
}

/*------------------------------ 5th Section Home Page Timeline Code End-----------------------------------*/

/*---------------------------- 6th Section Home Page  ---------------------------*/

/* Grid */

.services-grid {
    border-top: 1px solid #ececec;
    border-left: 1px solid #ececec;
}

.services-grid>[class*="col"] {
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

/* Card */

.service-box {
    display: flex;
    gap: 28px;
    padding: 55px 35px;
    height: 100%;
    transition: .35s;
    background: #fff;
}

.services-icon {
    background: 0 0;
    text-align: left;
    position: relative;
    z-index: 1;
    display: flex;
}

.icon {
    margin-right: 37px;
}

.service-box:hover {
    background: #faf8ff;
}

.service-box:hover {
    transform: translateY(-8px);
}

.icon svg {
    width: 70px;
}

.content h3 {
    font-size: 34px;
    font-weight: 700;
    color: #1f2940;
    margin-bottom: 20px;
}

.content p {
    color: #666;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1f2940;
    font-weight: 700;
    font-size: 18px;
}

.circle {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-box:hover .circle {
    background: #9c08c9;
    color: #fff;
}

.circle i {
    font-size: 18px;
}



/*---------------------------- 6th Section Home Page  end---------------------------*/

/*---------------------------- 7th Section Home Page ---------------------------*/

.business-section {
    background: #070b17;
    color: #fff;
}

.sub-title {
    color: #b92cff;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.main-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.description {
    max-width: 720px;
    color: #c8c8c8;
    font-size: 20px;
    line-height: 1.7;
}

/* Counter */

.counter-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #9d18ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
}

.icon-circle img {
    width: 100%;
    height: auto;
}

.counter-box h2 {
    font-size: 54px;
    font-weight: 700;
    margin: 0;
}

.counter-box p {
    margin: 0;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

/* Client Heading */

.client-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.client-title h4 {
    margin: 0;
    font-size: 30px;
    color: #bfbfbf;
    font-weight: 700;
}

.line {
    flex: 1;
    height: 3px;
    background: #ff2a2a;
}

section.success-counter-section {
    padding: 80px 0;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
    font-size: 30px;
}

/* .news-slider.slick-initialized.slick-slider { 
    padding: 0 25px;
} */


.video-slider .video-item.slick-slide {
    position: relative;
}

.video-slider .slick-slide img {
    display: block;
    width: 100%;
    height: 250px;
}

.video-slider a.video-btn {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 9999999;
    margin: 0 auto;
    background: #fbeaff;
    color: #a600e8;
    text-decoration: none;
    transform: translateY(-50%);
}

.video-slider,
.news-slider {
    margin: 0 -15px;
}

.video-slider .slick-slide,
.news-slider .slick-slide {
    padding: 0 15px;
}


/*---------------------------- 7th Section Home Page end---------------------------*/

/*---------------------------- 8th Section Home Page ---------------------------*/
.pricing-section {
    background: #fff;
}

.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
    position: relative;
    min-height: 790px;
    background-image: radial-gradient(circle at bottom right,
            rgba(255, 255, 255, .08),
            transparent 35%);
    background: url('http://localhost/rewampstart/wp-content/uploads/2026/07/pricing-bg.webp');
    background-size: 100% auto;
}

/* Header */
.card-header {
    text-align: center;
    padding: 55px 20px;
    background: #192236;
    min-height: 172px;
}

.card-header h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

.card-header p {
    color: #bfc3d0;
    font-size: 18px;
    margin: 0;
}

/* Body */
.card-body {
    padding: 35px 28px;
}

.price {
    color: #d7d3d8;
    font-size: 65px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

.price span {
    font-size: 18px;
    vertical-align: top;
}

.price sup {
    font-size: 35px;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    color: #ddd;
    font-size: 16px;
}

.pricing-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: 1px solid;
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 18px;
}

.pricing-features li.active::before {
    border-color: red;
    color: red;
}

/* Button */
.pricing-card .btn {
    display: block;
    width: 75%;
    margin: 70px auto 25px;
    background: #d50000;
    border: none;
    padding: 14px;
    font-size: 16px;
}

.pricing-card .btn:hover {
    background: #ff0000;
}

/* Whatsapp */
.whatsapp {
    text-align: center;
    color: #ddd;
    font-size: 18px;
    display: block;
}

.whatsapp i {
    color: #00e676;
    font-size: 28px;
    margin-left: 15px;
}

/* Ribbon */
.ribbon {
    position: absolute;
    right: -45px;
    top: 20px;
    background: #e60000;
    color: #fff;
    width: 150px;
    text-align: center;
    padding: 7px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}


/*---------------------------- 8th Section Home Page end---------------------------*/


/*---------------------------- 9th Section Home Page ---------------------------*/
.success-story .container-custom {
    background-image: url(http://localhost/rewampstart/wp-content/uploads/2026/07/success-story-bg.webp);
    background-size: 100% auto;
    padding: 80px 0;
}

.govt-agency-slider {
    margin: 0 -10px;
}

.govt-agency-slider .slick-slide {
    margin: 0 10px;
}

.govt-agency-slider .slick-slide img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    border: 1px solid #C7C7C7;
    padding: 20px;
}

/*---------------------------- 9th Section Home Page end---------------------------*/

/*---------------------------- 10th Section Home Page ---------------------------*/
.consultation-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    background: url('your-image.jpg') center center/cover no-repeat;
    border-radius: 0;
    overflow: hidden;
}

/* Dark Overlay */
.consultation-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.consultation-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 50px 80px;
}

.consultation-banner .banner-text {
    max-width: 800px;
}

.banner-text h3 {
    margin: 0;
}

.consultation-banner .banner-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #DF0A0A;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.consultation-banner .banner-btn a:hover {
    background: #DF0A0A;
    color: #fff;
    transform: translateY(-3px);
}




/*---------------------------- 10th Section Home Page end---------------------------*/


/*---------------------------- 11th Section Home Page ---------------------------*/

/*======================================
    SPECIALITIES SECTION
======================================*/

.specialities-section {
    padding: 90px 0;

}

.specialities-section .container-custom {
    margin: auto;
    padding: 80px 15px;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
}

.specialities-section .specialities-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 580px;
    max-width: 1320px;
    margin: 0 auto;
}

/*======================================
    LEFT CONTENT
======================================*/

.specialities-section .left-content {
    flex: 0 0 48%;
    max-width: 38%;
    height: 100%;
}

.specialities-section .sub-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #9c08c9;
    text-transform: uppercase;
    margin-bottom: 15px;
}



/*======================================
    TIMELINE
======================================*/

.specialities-section .timeline {
    position: relative;
    padding-left: 45px;
}

.specialities-section .timeline:before {
    content: "";
    position: absolute;
    left: 16px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    border: 1px dashed #9c08c9;
}

/*======================================
    ACCORDION ITEM
======================================*/

.specialities-section .accordion-item {
    position: relative;
    padding-bottom: 10px;
}

.specialities-section .accordion-item:last-child {
    padding-bottom: 0;
}

.specialities-section .accordion-item:before {
    content: "";
    position: absolute;
    left: -37px;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #9c08c9;
    z-index: 2;
    transition: .35s;
}

.specialities-section .accordion-item.active:before {
    width: 26px;
    height: 26px;
    left: -41px;
    background: #9c08c9;
    box-shadow: 0 0 0 8px rgba(156, 8, 201, .15);
}

/*======================================
    ACCORDION BUTTON
======================================*/

.specialities-section .accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 0 0 10px;
    color: #1f2940;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.specialities-section .accordion-header:hover {
    color: #9c08c9;
}

.specialities-section .accordion-item.active .accordion-header {
    font-size: 22px;
    color: #1f2940;
}

/*======================================
    ACCORDION BODY
======================================*/

.specialities-section .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.specialities-section .accordion-item.active .accordion-body {
    max-height: 220px;
}

.specialities-section .accordion-body p {
    font-size: 17px;
    line-height: 30px;
    color: #666;
    margin: 0;
    padding-right: 30px;
}

/*======================================
    RIGHT IMAGE
======================================*/

.specialities-section .right-image {
    flex: 0 0 52%;
    max-width: 52%;
    position: relative;
    overflow: hidden;
}

.specialities-section .right-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

/* Red Shape */

.specialities-section .shape {
    position: absolute;
    top: -40px;
    left: -80px;
    width: 150px;
    height: 120%;
    background: #df0a0a;
    transform: skew(-14deg);
    opacity: .92;
    z-index: 2;
}

.specialities-section .shape:after {
    content: "";
    position: absolute;
    left: 90px;
    top: 0;
    width: 200px;
    height: 100%;
    background: rgba(223, 10, 10, .22);
}

/*---------------------------- 11th Section Home Page end---------------------------*/
.img-box {
    display: block;
    overflow: hidden;
    text-align: right;
}

/*---------------------------- 12th Section Home Page ---------------------------*/

.contact-info-section {
    background: #F7F7F7;
    padding: 0% 0% 0% 8%;
}

.contact-content {
    padding: 60px;
}

.contact-box {
    padding-right: 40px;
}

.address-box {
    border-left: 1px solid #ddd;
    padding-left: 40px;
}

.contact-box h4 {
    margin-bottom: 15px;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: #111;
    margin-bottom: 30px;
}

.contact-box h5 {
    color: #444;
    margin-bottom: 10px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-list i {
    width: 25px;
    color: #111;
    margin-top: 4px;
}

.contact-list a {
    color: #a400ff;
    text-decoration: none;
    font-size: 16px;
}

.contact-list a:hover {
    color: #6d00d7;
}

.address-box p {
    margin-bottom: 20px;
}

.map-area {
    height: 100%;
    min-height: 300px;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*---------------------------- 12th Section Home Page end---------------------------*/








/*--------------------------------- Footer Style ---------------------------------------*/
.footer-info {
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    left: -150px;
    top: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
}

.footer-widget {
    position: relative;
    z-index: 2;
}

.service-box {
    background: rgba(255, 255, 255, .04);
    padding: 35px;
    border-radius: 12px;
}

.footer-widget h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-line {
    display: block;
    width: 70px;
    height: 3px;
    background: #fff;
    margin-bottom: 30px;
    position: relative;
}

.footer-line::after {
    content: "";
    width: 10px;
    height: 3px;
    background: #fff;
    position: absolute;
    right: -15px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: .3s;
    font-size: 16px;
    font-weight: 400;
    color: rgb(139, 143, 153);
}
.footer-menu li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 12px;
    color: #b8bfd4;
}

.footer-menu li a:hover {
    color: #fff;
    padding-left: 8px;
}

.refer-btn {
    display: inline-block;
    margin-top: 25px;
    background: #a600ff;
    color: #fff;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.google-review {
    margin-top: 30px;
}

.social-icons-footer {
    display: block;
    overflow: hidden;
    margin: 20px auto 0;
    text-align: center;
}

.social-icons-footer a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    transition: 0.3s;
}

/* Facebook */
.social-icons-footer .social-facebook-f {
    background: #1877f2;
}

/* Instagram */
.social-icons-footer .social-instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

/* LinkedIn */
.social-icons-footer .social-linkedin-in {
    background: #0a66c2;
}

/* YouTube */
.social-icons-footer .social-youtube {
    background: #ff0000;
}

/* X Twitter */
.social-icons-footer .social-x-twitter {
    background: #000;
}

/* Hover Effect */
.social-icons-footer a:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}



/*==========================
    RESPONSIVE
==========================*/
@media (max-width: 1700px) {
    .container-custom {
        max-width: 95%;
    }
}

@media(max-width:991px) {

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 28px;
    }

    .container-custom {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        height: 90px;
    }

    .mobile-btn {
        display: block;
    }

    .quote-btn {
        display: none;
    }

    .menu {
        position: absolute;
        top: 88px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .menu.show {
        display: flex;
        z-index: 9;
    }


    .menu li {
        width: 100%;
    }

    .menu a {
        width: 100%;
        padding: 15px;
    }

    .submenu,
    .submenu-right {
        position: static;
        visibility: visible;
        opacity: 1;
        display: none;
        box-shadow: none;
        width: 100%;
    }

    .dropdown:hover>.submenu {
        display: block;
    }

    .dropdown-right:hover>.submenu-right {
        display: block;
    }

    .top-content {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        gap: 10px;
    }

    .left-info {
        flex-direction: column;
        gap: 10px;
    }

    .about-section .container {
        flex-direction: column;
    }

    .about-content,
    .about-image {
        width: 100%;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .floating-img {
        width: 150px;
        left: 0;
        top: 30px;
    }

    .experience-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -70px;
        width: fit-content;
    }

    /*------------ About Home page Section --------------*/
    .about-section {
        padding: 50px 20px;
    }


    .about-content h2 {
        font-size: 32px;
    }


    .about-image {
        margin-top: 40px;
    }


    .experience {
        left: 20px;
        bottom: 20px;
    }

    /*------------ Third Section Home Page --------------*/

    .cost-banner {
        min-height: 250px;
    }

    .timeline__track {
        gap: 40px;
        overflow-x: auto;
    }

    .timeline__item {
        min-width: 220px;
    }

    .consultation-banner .banner-content {
        padding: 50px 40px;
    }

    .consultation-banner .banner-btn a {
        padding: 16px 35px;
        font-size: 18px;
    }

    .contact-content {
        padding: 40px 30px;
    }

    .map-area {
        min-height: 450px;
    }
}

@media(max-width:768px) {
    .timeline__track {
        display: block;
        padding: 40px 0;
    }

    .timeline__line {
        width: 4px;
        height: 100%;
        left: 25px;
        top: 0;
        transform: none;
    }

    .timeline__item {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 80px;
        padding-left: 70px;
    }

    .timeline__dot {
        position: absolute;
        left: 15px;
        top: 20px;
    }

    .timeline__card {
        position: relative;
        width: 100%;
        opacity: 1;
    }

    .timeline__card--top,
    .timeline__card--bottom {
        top: 0;
        bottom: 0;
    }

    .timeline__nav {
        display: none;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:767px) {

    body {
        font-size: 15px;
    }


    h1 {
        font-size: 38px;
    }


    h2 {
        font-size: 30px;
    }


    h3 {
        font-size: 24px;
    }


    h4 {
        font-size: 20px;
    }


    h5 {
        font-size: 18px;
    }


    h6 {
        font-size: 16px;
    }


    p {
        font-size: 15px;
    }

    .business-cost-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-tag {
        font-size: 14px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .cost-banner {
        min-height: 280px;
        padding: 30px 15px;
    }

    .banner-content h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .cost-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .banner-content p {
        font-size: 13px;
    }


    .features {
        grid-template-columns: 1fr;
    }


    .bottom-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }


    .experience {
        padding: 15px;
    }


    .experience strong {
        font-size: 32px;
    }


    .buttons {
        flex-wrap: wrap;
    }

    /*------------ Third Section Home Page --------------*/
    .business-cost-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cost-banner {
        min-height: 280px;
        padding: 30px 15px;
    }

    /*---------------------------- 4th Section Home Page  ---------------------------*/
    .feature-slider {
        width: 100%;
        height: 500px;
    }

    .feature-orbit {
        width: 280px;
        height: 280px;
    }

    .feature-slider h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .feature-center p {
        font-size: 14px;
        line-height: 20px;
        padding: 0 20px;
    }

    .feature-item img {
        width: 50px;
        height: auto;
        object-fit: contain;
    }

    .feature-item {
        width: 60px;
        height: 60px;
    }

    .counter-box {
        justify-content: start;
    }

    .btn-primary {
        padding: 8px 10px;
        height: 45px;
    }

    .video-popop span {
        margin-left: 10px;
    }

    .consultation-banner .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 50px 25px;
    }

    .consultation-banner .banner-btn a {
        width: 100%;
        max-width: 300px;
    }

    .consultation-banner .consultation-banner {
        min-height: auto;
    }

    /*---------------------------- 4th Section Home Page end ---------------------------*/

    .contact-box {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .address-box {
        border-left: none;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 30px;
    }

    .contact-content {
        padding: 30px 20px;
    }

    .contact-box h2 {
        font-size: 32px;
    }

    .contact-box h5 {
        font-size: 22px;
    }

    .contact-list a,
    .address-box p {
        font-size: 16px;
    }

    .map-area {
        min-height: 350px;
    }

    /*---------------------------- 12th Section Home Page end ---------------------------*/
}