* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-clr: #081120;
    --bg-clr-light: #13243f;
    --text-white: #ffffff;
    --text-clr: #CBD5E1;
    --primary-clr: #3B82F6;
    --primary-clr-bg: #135ce4;
    --para: #6b7280;
}

.custom-container {
    max-width: 1550px;
}

a {
    text-decoration: none;
}

p {
    font-size: 18px;
    margin: 15px 0;
    color: var(--para);
    line-height: 1.8;

}

/* Width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--text-clr);
    border-radius: 20px;
}

/* Thumb */
::-webkit-scrollbar-thumb {
    background: var(--bg-clr);
    border: 2px solid var(--bg-clr-light);
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-clr-bg);
}

/*================= Header Css Start ========================*/

.custom-navbar {

    background: var(--bg-clr);
    padding: 10px 0;
    transition: .4s;
    border-bottom: 1px solid;

}

.navbar-brand img,
.footer-logo img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.navbar-toggler {
    color: var(--text-white);
    font-size: 24px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: 12px;
}

.nav-link {
    color: var(--text-clr);
    font-size: 15px;
    font-weight: 500;
    transition: .3s;

}

.nav-link:hover {
    color: var(--primary-clr);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-clr);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary-clr);
}

.nav-link.active {
    color: var(--primary-clr) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px;
    background: var(--bg-clr);
}

.dropdown-item {
    color: var(--text-clr);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
}

.dropdown-item:hover {
    background: var(--primary-clr);
    color: var(--text-white);

}

.btn-primary-custom {
    background: var(--primary-clr);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: var(--primary-clr-bg);
    color: var(--text-white);
}

.btn-primary-custom svg,
.btn-outline-custom svg,
.btn-outline-custom-two svg {
    transition: .35s;
}

.btn-primary-custom:hover svg,
.btn-outline-custom:hover svg,
.btn-outline-custom-two:hover svg {
    transform: translateX(5px);
}


.navbar-toggler {
    border: none;
    color: var(--text-clr);
    font-size: 30px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*================= Header Css End ========================*/

/*================ Home Banner Css Start =================*/

.hero-section,
.about-intro-section,
.services-hero {
    background: var(--bg-clr);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-clr-light);
    color: var(--primary-clr);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
}

.hero-title {
    color: var(--text-white);
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 30px;
}

.hero-title span {
    color: var(--primary-clr);
}

.hero-desc {
    color: var(--text-clr);
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-outline-custom {
    border: 2px solid var(--text-clr);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: var(--primary-clr-bg);
    color: var(--text-white);
}

.btn-outline-custom-two {
    border: 2px solid var(--primary-clr);
    color: var(--primary-clr);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-custom-two:hover {
    background: var(--primary-clr-bg);
    color: var(--text-white);
}

.hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.hero-list li {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    color: var(--text-clr);
    font-size: 16px;
}

.list-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(37, 99, 235, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-right: 10px;
}

.list-icon svg {
    width: 16px;
    height: 16px;
}

/* Right */

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.glow {
    width: 420px;
    height: 420px;
    background: var(--primary-clr);
    border-radius: 50%;
    filter: blur(130px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .35;
}

.card-one {
    position: absolute;
    top: 50px;
    right: 100px;
    background: var(--bg-clr-light);
    padding: 20px;
    border-radius: 15px;
    color: var(--text-clr);
    z-index: 3;
}

.card-two {
    position: absolute;
    right: 0;
    bottom: 290px;
    background: var(--bg-clr-light);
    padding: 20px;
    border-radius: 15px;
    color: var(--text-clr);
    z-index: 3;
}

.card-three {
    position: absolute;
    right: 0;
    bottom: 60px;
    background: var(--bg-clr-light);
    padding: 20px;
    border-radius: 15px;
    color: var(--text-clr);
    z-index: 3;
}

.card-one h2,
.card-two h2,
.card-three h2 {
    color: var(--primary-clr);
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

/*================ Home Banner Css End =================*/

/*================ Services Section Css Start =================*/

.services-section,
.why-us,
.counter-section,
.projects-section,
.process-section,
.testimonial-section,
.who-we-are-section,
.mission-vision-section,
.core-values-section,
.our-journey-section,
.freelance-services-section,
.service-solution-section,
.services-get-section,
.services-feature-section,
.portfolio-list-section,
.portfolio-process-section,
.portfolio-final-cta,
.pricing-plans-section,
.pricing-faq-section,
.contact-form-section {
    padding: 60px 0;
}

.raghaw-tech-sub-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-clr);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.raghaw-tech-sub-title span {
    width: 30px;
    height: 1px;
    background: var(--primary-clr);
}

.raghaw-tech-heading-sec h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 10px;
}

.raghaw-tech-heading-sec h2 span {
    color: var(--primary-clr);
}

.service-card {
    background: var(--text-white);
    border: 1px solid var(--text-clr);
    border-radius: 20px;
    padding: 35px 30px;
    transition: .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
    border-color: var(--primary-clr);
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-clr);
    transform: scaleX(0);
    transition: .4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 25px;
}

.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.orange {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.pink {
    background: linear-gradient(135deg, #ff5ca8, #ff8ac4);
}

.service-card h3,
.project-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card a,
.project-content a {
    color: var(--primary-clr);
    font-weight: 700;
    text-decoration: none;
}

.service-card a:hover,
.project-content a:hover {
    text-decoration: underline;
}

/*================ Services Section Css End =================*/

/*================ Why Us Section Css Start =================*/

.why-list li {

    list-style: none;
    margin-bottom: 15px;
    color: var(--para);
    font-size: 17px;
    display: flex;
    align-items: center;
}

.list-icon-sec {

    color: var(--primary-clr);
    margin-right: 12px;
}

.why-us-image-box {

    position: relative;
}

.why-us-image-box img {

    border-radius: 20px;
    width: 100%;
}

.image-display-block {
    display: none;
}

.floating-card {

    position: absolute;
    left: 40px;
    bottom: 30px;
    background: var(--text-white);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.floating-card .icon {

    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #27c56d;
    color: var(--text-white);
    font-size: 20px;
}

.floating-card h6 {

    margin: 0;
    font-weight: 700;
}

.floating-card small {

    color: var(--para);
}

.btn-primary {

    border-radius: 12px;
    padding: 14px 30px;
}

/*================ Why Us Section Css End =================*/

/*================ Counter Section Css Start =================*/

.counter-section .counter-wrapper {
    background: var(--bg-clr);
    border-radius: 18px;
    overflow: hidden;
}

.counter-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 30px;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.counter-section .col-lg-3:last-child .counter-box {
    border-right: none;
}

.counter-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.counter-content h3 {
    color: var(--text-white);
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.counter-content p {
    margin-top: 8px;
    color: var(--text-clr);
    font-size: 15px;
    margin-bottom: 0;
}

/*================ Counter Section Css End =================*/

/*================ Project Section Css Start =================*/

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .5s;
}

.project-card:hover img {
    transform: scale(1.03);
}

.project-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-clr-bg);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;

}

.project-content {
    padding: 28px;
}

.float-end-custom {
    float: right;
}

/*================ Project Section Css End =================*/

/*================ Process Section Css End =================*/

.process-wrapper {
    position: relative;
}

.process-heading-section {
    margin-bottom: 50px;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: var(--text-clr);
}

.process-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 18px;
}

.process-item span {
    display: block;
    font-size: 14px;
    color: var(--primary-clr);
    margin-bottom: 8px;
    font-weight: 700;
}

.process-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-item p {
    font-size: 15px;
    color: var(--para);
    line-height: 1.7;
    max-width: 190px;
    margin: auto;
}

/*================ Process Section Css End =================*/

/*================ Testimonials Section Css Start =================*/

/*==========================
    NAVIGATION
==========================*/

.testimonial-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--text-white);
    color: var(--bg-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.nav-btn:hover,
.nav-btn.active {
    background: var(--primary-clr);
    color: var(--text-white);
}

.nav-btn svg {
    width: 18px;
    height: 18px;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slider .owl-stage {
    display: flex;
}

.testimonial-slider .owl-item {
    display: flex;
}

.testimonial-slider .owl-item .item {
    width: 100%;
    padding: 15px;
}

.testimonial-card {
    background: var(--text-white);
    border-radius: 22px;
    padding: 35px;
    height: 100%;
    border: 1px solid var(--text-clr);
    transition: .35s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .12);
}

.quote-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--text-clr);
    color: var(--bg-clr-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.stars {
    color: #ffb800;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-clr);
}

.client-info h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-clr);
}

.client-info span {
    display: block;
    margin-top: 5px;
    color: var(--para);
    font-size: 14px;

}

.testimonial-slider .owl-dots {
    margin-top: 35px;
    text-align: center;
}

.testimonial-slider .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: var(--text-clr) !important;
    transition: .3s;

}

.testimonial-slider .owl-dot.active span {
    width: 28px;
    border-radius: 20px;
    background: var(--primary-clr) !important;

}

/*================ Testimonials Section Css End =================*/

/*================ Blog Section Css Start =================*/

.blog-date {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--para);
}

.blog-date span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date svg {
    width: 15px;
    height: 15px;
    color: var(--primary-clr);
}

.float-end-custom-two {
    display: none;
}

/*================ Blog Section Css End =================*/

/*================ CTA Section Css End =================*/

.cta-wrapper {
    background: var(--primary-clr);
    border-radius: 18px;
    padding: 35px 45px;
    overflow: hidden;
    position: relative;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 22px;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    flex-shrink: 0;
}

.cta-content h2 {
    color: var(--text-white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

/*================ CTA Section Css End =================*/

/*================ Footer Css Start =================*/

.footer {
    background: var(--bg-clr);
    color: var(--text-clr);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-about p {
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {

    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-clr);
    transition: .35s;
    text-decoration: none;

}

.footer-social a:hover {
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    transform: translateY(-5px);
}

.footer h2 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 28px;
    font-weight: 700;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li:last-child {
    margin-bottom: 0;
}

.footer ul li a {
    color: var(--para);
    text-decoration: none;
    transition: .3s;
    position: relative;
}

.footer ul li a:hover {
    color: var(--primary-clr);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--para);
    line-height: 1.7;
}

.footer-contact li svg {
    min-width: 18px;
    color: var(--text-clr);
    margin-top: 3px;
}

.footer hr {
    border-color: var(--text-clr);
    margin: 55px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 25px;
}

.footer-bottom p {
    margin: 0;
    color: var(--para);
    font-size: 14px;
}

.footer hr {
    margin: 25px 0 25px;
}

/*================ Footer Css End =================*/

/********** About Us Page css start*********/
.raghaw-tech-heading-sec h1 {
    max-width: 700px;
    margin: 25px 0 0;
    color: var(--text-white);
    font-size: 60px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.raghaw-tech-heading-sec h1 span {
    color: var(--primary-clr);
}

.about-intro-right {
    padding-left: 40px;
    border-left: 1px solid rgba(203, 213, 225, 0.15);
}

.about-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 90px;
    border-top: 1px solid rgba(203, 213, 225, 0.15);
}

.about-stat {
    padding: 35px 30px;
    border-right: 1px solid rgba(203, 213, 225, 0.15);
    text-align: center;
}

.about-stat h2 span {
    color: var(--primary-clr);
}

.about-stat:last-child {
    border-right: 0;
}

.who-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 25px 25px 0;
}

.who-main-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(203, 213, 225, 0.15);
    background: var(--bg-clr-light);
}

.who-main-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.who-main-image:hover img {
    transform: scale(1.04);
}

.who-experience-card {
    position: absolute;
    z-index: 5;
    left: -25px;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bg-clr-light);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.experience-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 10px;
    color: var(--primary-clr);
    font-size: 24px;
}

.who-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(203, 213, 225, 0.12);
}

.who-feature:first-child {
    border-top: 1px solid rgba(203, 213, 225, 0.12);
}

.feature-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-clr-light);
    border: 1px solid rgba(59, 130, 246, 0.20);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 20px;
}

.who-feature h3 {
    margin: 0 0 5px;
    color: var(--primary-clr-bg);
    font-size: 17px;
    font-weight: 600;
}

.who-feature p {
    margin: 0;
    color: var(--para);
    font-size: 14px;
    line-height: 1.6;
}

.mission-vision-section {
    position: relative;
    background: var(--bg-clr-light);
    overflow: hidden;
}

.mv-card {
    position: relative;
    height: 100%;
    padding: 40px;
    background: var(--bg-clr);
    border: 1px solid var(--para);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-clr);
    transition: width 0.4s ease;
}

.mv-card:hover::before {
    width: 100%;
}

.mv-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-clr);
}

.mv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mv-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: var(--bg-clr-light);
    border: 1px solid var(--para);
    border-radius: 14px;
}

.mv-number {
    color: var(--para);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.mv-card h3 {
    margin: 30px 0 15px;
    color: var(--text-white);
    font-size: 30px;
    font-weight: 700;
}

.mv-line {
    width: 100%;
    height: 1px;
    margin: 30px 0 20px;
    background: var(--bg-clr-light);
}


.mv-bottom-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.mv-bottom-text span {
    color: var(--text-clr);
    font-size: 13px;
}


.mv-bottom-text strong {
    color: var(--primary-clr);
    font-size: 14px;
}

.core-purpose {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    padding: 28px 35px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 14px;
}

.core-purpose-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59, 130, 246, 0.10);
    border-radius: 10px;
}

.core-purpose span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-clr);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.core-purpose h4 {
    margin: 0;
    color: var(--text-white);
    font-size: 21px;
    font-weight: 500;
}

.core-purpose h4 strong {
    color: var(--primary-clr);
    font-weight: 700;
}

.values-quote {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    max-width: 480px;
}

.quote-line {
    flex: 0 0 3px;
    background: var(--primary-clr);
    border-radius: 5px;
}

.values-quote p {
    margin: 0;
    color: var(--para);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.our-journey-section {
    position: relative;
    background: var(--bg-clr-light);
    overflow: hidden;
}

.journey-timeline {
    position: relative;
    margin-top: 20px;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 29%;
    width: 1px;
    background: rgba(203, 213, 225, 0.15);
}

.journey-item {
    position: relative;
    display: grid;
    grid-template-columns: 25% 8% 67%;
    align-items: center;
    min-height: 150px;
    border-top: 1px solid rgba(203, 213, 225, 0.10);
}

.journey-item:last-child {
    border-bottom: 1px solid rgba(203, 213, 225, 0.10);
}

.journey-year {
    padding: 30px 30px 30px 0;
}

.journey-year span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-clr);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.journey-year strong {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
}

.journey-dot {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.journey-dot span {
    width: 13px;
    height: 13px;
    display: block;
    background: var(--bg-clr-light);
    border: 2px solid var(--primary-clr);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.08);
}

.journey-content {
    padding: 35px 0 35px 35px;
    transition: all 0.3s ease;
}

.journey-content h3 {
    margin: 0 0 10px;
    color: var(--text-white);
    font-size: 24px;
    font-weight: 600;
}

.journey-item:hover .journey-content {
    transform: translateX(8px);
}

.journey-item:hover .journey-dot span {
    background: var(--primary-clr);
    box-shadow:
        0 0 0 6px rgba(59, 130, 246, 0.10),
        0 0 25px rgba(59, 130, 246, 0.25);
}

/******************************************** Services Page Css Start ***********************************/

.services-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-hero .raghaw-tech-heading-sec h1 {
    max-width: 900px;
    margin: 10px auto 25px;
}

.services-hero-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-clr);
    font-size: 17px;
    line-height: 1.8;
}

.services-visual {
    position: relative;
    width: 900px;
    height: 500px;
    max-width: 100%;
    margin: 20px auto 0;
}

.service-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(59, 130, 246, 0.13);
    border-radius: 50%;
}

.service-circle-one {
    width: 330px;
    height: 330px;
}

.service-circle-two {
    width: 500px;
    height: 500px;
    border-style: dashed;
    opacity: 0.6;
}

.services-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-clr-light);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 50%;
    box-shadow:
        0 0 50px rgba(59, 130, 246, 0.10),
        inset 0 0 40px rgba(59, 130, 246, 0.04);
}

.services-center-icon {
    color: var(--primary-clr);
}

.services-center span {
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
}

.service-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 20px;
    background: rgba(19, 36, 63, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: left;
    transition: all 0.35s ease;
}

.service-float:hover {
    border-color: rgba(59, 130, 246, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.service-float-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59, 130, 246, 0.08);
    border-radius: 9px;
}

.service-float span {
    display: block;
    margin-bottom: 2px;
    color: var(--primary-clr);
    font-size: 10px;
    font-weight: 700;
}

.service-float h2 {
    margin: 0;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.service-float-one {
    top: 55px;
    left: 40px;
}

.service-float-two {
    top: 55px;
    right: 40px;
}

.service-float-three {
    bottom: 55px;
    left: 40px;
}

.service-float-four {
    bottom: 55px;
    right: 40px;
}

.freelance-services-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.freelance-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.freelance-service-card {
    position: relative;
    min-height: 420px;
    padding: 35px;
    background: var(--bg-clr-light);
    border: 1px solid var(--primary-clr-bg);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.freelance-service-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--primary-clr);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.freelance-service-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(8, 17, 32, 0.08);
}

.freelance-service-card:hover::after {
    transform: scaleX(1);
}

.service-card-number {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.freelance-service-card:hover .service-card-number {
    color: var(--primary-clr);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 55px;
    color: var(--text-white);
    background: rgba(59, 130, 246, 0.07);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.freelance-service-card:hover .service-card-icon {
    color: #ffffff;
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    transform: translateY(-3px);
}

.freelance-service-card h3 {
    margin: 0 0 15px;
    color: var(--text-white);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
}

.freelance-service-card p {
    margin: 0;
    color: var(--para);
    font-size: 14px;
    line-height: 1.8;
}

.service-card-footer {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid #eef0f3;
}

.service-card-footer > span {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.service-card-arrow {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: var(--primary-clr);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    transition: all 0.35s ease;
}

.freelance-service-card:hover .service-card-arrow {
    color: #ffffff;
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    transform: translateX(4px);
}

.solution-wrapper {
    border-top: 1px solid #e5e7eb;
}

.solution-item {
    position: relative;
    display: grid;
    grid-template-columns: 60px 65px 1fr 245px;
    gap: 20px;
    align-items: center;
    padding: 28px 15px;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.35s ease;
}

.solution-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f8faff;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}


.solution-item:hover::before {
    opacity: 1;
}

.solution-item > * {
    position: relative;
    z-index: 1;
}

.solution-count {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.solution-item:hover .solution-count {
    color: var(--primary-clr);
}

.solution-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: #f1f6ff;
    border: 1px solid #dbe8ff;
    border-radius: 12px;
    transition: all 0.35s ease;
}

.solution-item:hover .solution-icon {
    color: #ffffff;
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    transform: translateY(-3px);
}

.solution-small-title {
    color: var(--primary-clr);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.solution-content h3 {
    margin: 7px 0 6px;
    color: var(--bg-clr);
    font-size: 21px;
    font-weight: 650;
}

.solution-content p {
    max-width: 650px;
    margin: 0;
    color: var(--para);
    font-size: 14px;
    line-height: 1.7;
}

.solution-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-left: 25px;
    color: var(--bg-clr);
    border-left: 1px solid #e5e7eb;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.35s ease;
}

.solution-service svg {
    flex: 0 0 auto;
    color: var(--primary-clr);
    transition: transform 0.35s ease;
}

.solution-item:hover .solution-service {
    color: var(--primary-clr);
}

.solution-item:hover .solution-service svg {
    transform: translateX(4px);
}

.services-get-section {
    background: var(--bg-clr-light);
}

.get-features {
    border-top: 1px solid rgba(203,213,225,0.15);
}


.get-feature {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr 30px;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(203,213,225,0.15);
}

.get-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.18);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.get-feature:hover .get-feature-icon {
    color: var(--text-white);
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    transform: translateY(-2px);
}

.get-feature h3 {
    margin: 0 0 6px;
    color: var(--text-white);
    font-size: 19px;
    font-weight: 600;
}

.get-feature p {
    margin: 0;
    color: var(--text-clr);
    font-size: 13px;
    line-height: 1.7;
}

.get-feature-number {
    color: rgba(203,213,225,0.3);
    font-size: 11px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.get-feature:hover .get-feature-number {
    color: var(--primary-clr);
}

.services-feature-head {
    max-width: 750px;
    margin: 0 auto 30px;
}

.featured-service-card {
    position: relative;
    height: 100%;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 38px;
    background: linear-gradient(
        145deg,
        var(--bg-clr-light),
        #0d1b30
    );
    border: 1px solid rgba(59,130,246,0.22);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.featured-service-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    bottom: -100px;
    background: var(--primary-clr);
    opacity: 0.07;
    border-radius: 50%;
}

.featured-service-card:hover {
    border-color: rgba(59,130,246,0.5);
    transform: translateY(-5px);
}

.featured-service-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.featured-service-no {
    color: rgba(203,213,225,0.4);
    font-size: 12px;
    font-weight: 700;
}

.featured-service-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59,130,246,0.09);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 14px;
}

.featured-service-content {
    position: relative;
}

.featured-service-content > span {
    color: var(--primary-clr);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.featured-service-content h3 {
    margin: 12px 0 18px;
    color: var(--text-white);
    font-size: 42px;
    line-height: 1.05;
    font-weight: 700;
}

.featured-service-content p {
    max-width: 500px;
    margin: 0;
    color: var(--text-clr);
    font-size: 14px;
    line-height: 1.8;
}

.featured-service-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(203,213,225,0.12);
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.featured-tags span {
    padding: 6px 9px;
    color: var(--text-clr);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(203,213,225,0.1);
    border-radius: 4px;
    font-size: 9px;
}

.featured-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-clr);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.featured-service-card:hover .featured-arrow {
    color: #ffffff;
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    transform: translateX(4px);
}

.small-services-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.small-service {
    flex: 1;
    display: grid;
    grid-template-columns: 55px 1fr 38px;
    align-items: center;
    gap: 18px;
    padding: 22px 25px;
    background: var(--bg-clr-light);
    border: 1px solid rgba(203,213,225,0.1);
    border-radius: 13px;
    transition: all 0.35s ease;
}

.small-service:hover {
    background: var(--bg-clr);
    border-color: rgba(59,130,246,0.3);
    transform: translateX(5px);
}

.small-service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59,130,246,0.07);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.small-service:hover .small-service-icon {
    color: #ffffff;
    background: var(--primary-clr);
    border-color: var(--primary-clr);
}

.small-service-content > span {
    color: rgba(203,213,225,0.4);
    font-size: 9px;
    font-weight: 700;
}

.small-service-content h3 {
    margin: 4px 0 5px;
    color: var(--text-white);
    font-size: 17px;
    font-weight: 600;
}

.small-service-content p {
    margin: 0;
    color: var(--para);
    font-size: 11px;
    line-height: 1.6;
}

.small-service-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(203,213,225,0.5);
    border: 1px solid rgba(203,213,225,0.12);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.small-service:hover .small-service-arrow {
    color: var(--primary-clr);
    border-color: var(--primary-clr);
    transform: translateX(3px);
}

/******************************  Services Page Css ENd ********************************/

/******************************  Portfolio Page Css Start ********************************/

.portfolio-hero-section,
.pricing-hero-section {
    position: relative;
    padding: 115px 0 30px;
    background: var(--bg-clr);
    overflow: hidden;
}

.portfolio-hero-section h1 {
    max-width: 780px;
    margin: 0;
}

.portfolio-hero-section p {
    max-width: 650px;
    color: var(--text-clr);
}

.portfolio-hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.portfolio-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.portfolio-stat strong {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 700;
}

.portfolio-stat span {
    color: var(--para);
    font-size: 10px;
    line-height: 1.4;
}

.portfolio-stat-line {
    width: 1px;
    height: 35px;
    background: rgba(203,213,225,0.15);
}

.portfolio-hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary-clr);
    opacity: 0.09;
    filter: blur(80px);
    border-radius: 50%;
}

.portfolio-grid-pattern {
    position: absolute;
    inset: 30px 0;
    background-image:
        linear-gradient(
            rgba(203,213,225,0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(203,213,225,0.05) 1px,
            transparent 1px
        );
    background-size: 35px 35px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}

.portfolio-browser {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.35);
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.portfolio-hero-visual:hover .portfolio-browser {
    transform: rotate(0deg) translateY(-5px);
}

.portfolio-browser-header {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 14px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.portfolio-browser-dots {
    display: flex;
    gap: 5px;
}

.portfolio-browser-dots span {
    width: 7px;
    height: 7px;
    display: block;
    background: #cbd5e1;
    border-radius: 50%;
}

.portfolio-browser-address {
    flex: 1;
    padding: 5px 12px;
    color: #64748b;
    background: #ffffff;
    border-radius: 4px;
    text-align: center;
    font-size: 8px;
}
.portfolio-browser-content {
    min-height: 350px;
    padding: 25px;
    background: #f8fafc;
}

.browser-content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.browser-logo {
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
}

.browser-nav {
    display: flex;
    gap: 5px;
}

.browser-nav span {
    width: 28px;
    height: 4px;
    display: block;
    background: #cbd5e1;
    border-radius: 10px;
}

.browser-main-content {
    padding: 45px 10px 35px;
}

.browser-small-line {
    width: 55px;
    height: 5px;
    margin-bottom: 12px;
    background: var(--primary-clr);
    border-radius: 10px;
}

.browser-heading-line {
    width: 80%;
    height: 13px;
    margin-bottom: 8px;
    background: #0f172a;
    border-radius: 3px;
}

.browser-heading-line.short {
    width: 55%;
}

.browser-text-line {
    width: 90%;
    height: 5px;
    margin-top: 9px;
    background: #cbd5e1;
    border-radius: 10px;
}

.browser-text-line + .browser-text-line {
    width: 70%;
}

.browser-buttons {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.browser-buttons span {
    width: 65px;
    height: 18px;
    display: block;
    background: var(--primary-clr);
    border-radius: 3px;
}

.browser-buttons span:last-child {
    background: #e2e8f0;
}

.browser-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.browser-cards div {
    height: 65px;
    background: #e2e8f0;
    border-radius: 5px;
}

.browser-cards div:first-child {
    background: #dbeafe;
}

.portfolio-floating-card {
    position: absolute;
    left: -25px;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: rgba(19,36,63,0.95);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 9px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    animation: portfolioFloat 4s ease-in-out infinite;
}

.floating-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59,130,246,0.1);
    border-radius: 7px;
}

.portfolio-floating-card div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.portfolio-floating-card strong {
    color: var(--text-white);
    font-size: 11px;
}

.portfolio-floating-card span {
    color: var(--text-clr);
    font-size: 8px;
}

.portfolio-code-card {
    position: absolute;
    right: -5px;
    top: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    background: rgba(8,17,32,0.95);
    border: 1px solid rgba(203,213,225,0.12);
    border-radius: 7px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.portfolio-code-card > span {
    color: var(--primary-clr);
    font-size: 17px;
    font-weight: 700;
}

.portfolio-code-card div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.portfolio-code-card i {
    display: block;
    width: 35px;
    height: 3px;
    background: #334155;
    border-radius: 10px;
}

.portfolio-code-card i:nth-child(2) {
    width: 25px;
}

.portfolio-code-card i:nth-child(3) {
    width: 30px;
}

.portfolio-code-card i:nth-child(4) {
    width: 18px;
}

@keyframes portfolioFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

.portfolio-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: #d1d5db;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(8, 17, 32, 0.08);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--bg-clr-light);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.04);
}

.portfolio-link {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-clr);
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: #ffffff;
    background: var(--primary-clr);
    transform: translateY(-2px);
}

.portfolio-card-content {
    padding: 25px;
}

.portfolio-card-content > span {
    color: var(--primary-clr);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.portfolio-card-content h3 {
    margin: 9px 0 5px;
    color: var(--bg-clr);
    font-size: 22px;
    font-weight: 700;
}

.portfolio-card-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.process-intro {
    max-width: 650px;
    margin: 18px auto 0;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--primary-clr);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(8, 17, 32, 0.07);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.process-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-clr);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 7px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    color: #ffffff;
    background: var(--primary-clr);
    border-color: var(--primary-clr);
}

.process-card h3 {
    margin: 0 0 8px;
    color: var(--bg-clr);
    font-size: 20px;
    font-weight: 700;
}

.process-card p {
    margin: 0;
    color: var(--para);
    font-size: 13px;
    line-height: 1.75;
}

.portfolio-cta-box {
    position: relative;
    overflow: hidden;
    padding: 65px 70px;
    background: var(--bg-clr);
    border-radius: 12px;
}

.portfolio-cta-box p {
    max-width: 650px;
    margin: 18px 0 0;
}

.portfolio-cta-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -100px;
    bottom: -130px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.portfolio-cta-box::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -55px;
    bottom: -75px;
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 50%;
    pointer-events: none;
}
/******************************  Portfolio Page Css End ********************************/
/******************************  Pricing Page Css Start ********************************/

.pricing-hero-section .col-lg-8 > p {
    max-width: 650px;
    color: var(--text-clr);
}

.pricing-hero-note {
    display: flex;
    gap: 17px;
    padding: 25px;
    background: var(--bg-clr-light);
    border: 1px solid rgba(203, 213, 225, 0.12);
    border-radius: 8px;
}

.pricing-note-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
}

.pricing-hero-note span {
    color: var(--primary-clr);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.pricing-hero-note h3 {
    margin: 8px 0 5px;
    color: var(--text-white);
    font-size: 19px;
    font-weight: 600;
}

.pricing-hero-note p {
    margin: 0;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.7;
}

.pricing-plans-heading > p {
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 14px;
    line-height: 1.8;
}

.pricing-plan-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-plan-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-clr);
    box-shadow: 0 18px 40px rgba(8, 17, 32, 0.08);
}

.pricing-plan-featured {
    border: 1px solid var(--primary-clr);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.10);
}

.pricing-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 12px;
    color: #ffffff;
    background: var(--primary-clr);
    border-radius: 20px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.pricing-plan-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.pricing-plan-label {
    color: var(--primary-clr);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.pricing-plan-top h3 {
    margin: 7px 0 0;
    color: var(--bg-clr);
    font-size: 22px;
    font-weight: 700;
}

.pricing-plan-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59, 130, 246, 0.07);
    border: 1px solid rgba(59, 130, 246, 0.14);
    border-radius: 6px;
}

.pricing-plan-description {
    min-height: 75px;
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.7;
}

.pricing-amount {
    margin-top: 20px;
}

.pricing-amount span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 10px;
}

.pricing-amount strong {
    color: var(--bg-clr);
    font-size: 28px;
    font-weight: 700;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    margin: 22px 0;
    background: #e5e7eb;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
}

.pricing-features li svg {
    flex: 0 0 16px;
    margin-top: 1px;
    color: var(--primary-clr);
}

.pricing-included-section {
    padding: 100px 0;
    background: var(--bg-clr);
}

.pricing-included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(203, 213, 225, 0.15);
    border-left: 1px solid rgba(203, 213, 225, 0.15);
}

.pricing-included-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: auto;
    padding: 25px 22px;
    border-right: 1px solid rgba(203, 213, 225, 0.15);
    border-bottom: 1px solid rgba(203, 213, 225, 0.15);
    transition: all 0.3s ease;
}

.pricing-included-item:hover {
    background: rgba(59, 130, 246, 0.04);
}

.pricing-included-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 6px;
}

.pricing-included-item h3 {
    margin: 2px 0 6px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
}

.pricing-included-item p {
    margin: 0;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.7;
}

.pricing-faq-section .col-lg-4 > p {
    max-width: 390px;
}

.pricing-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-faq-accordion .accordion-item {
    overflow: hidden;
    background: var(--bg-clr-light);
    border: 1px solid rgba(203, 213, 225, 0.12);
    border-radius: 6px !important;
}

.pricing-faq-accordion .accordion-button {
    position: relative;
    padding: 19px 22px;
    color: var(--text-white);
    background: var(--bg-clr-light);
    box-shadow: none;
    font-size: 13px;
    font-weight: 500;
}

.pricing-faq-accordion .accordion-button:hover {
    color: var(--primary-clr);
}

.pricing-faq-accordion .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: none;
}

.pricing-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-clr);
    background: rgba(59, 130, 246, 0.06);
    box-shadow: none;
}

.pricing-faq-accordion .accordion-button::after {
    width: 18px;
    height: 18px;
    background-image: none;
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    font-size: 19px;
    font-weight: 300;
    transform: none;
}

.pricing-faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    transform: none;
}

.pricing-faq-accordion .accordion-body {
    padding: 0 22px 20px;
    color: #94a3b8;
    background: rgba(59, 130, 246, 0.06);
    font-size: 12px;
    line-height: 1.8;
}

/******************************  Pricing Page Css End ********************************/
/******************************  Contact Page Css Start ********************************/

.contact-form-section .raghaw-tech-heading-sec h2 {
    margin-top: 15px;
    color: var(--bg-clr);
}

.contact-form-section .raghaw-tech-heading-sec h2 span {
    color: var(--primary-clr);
}

.contact-form-section .col-lg-4 > p {
    max-width: 390px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-info-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-clr);
    background: rgba(59, 130, 246, 0.07);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 6px;
}

.contact-info-item span {
    display: block;
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item a,
.contact-info-item strong {
    color: var(--bg-clr);
    font-size: 12px;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--primary-clr);
}

.contact-social-wrap {
    margin-top: 35px;
}

.contact-social-wrap > span {
    display: block;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.contact-social-links {
    display: flex;
    gap: 8px;
}

.contact-social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-clr);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    color: #ffffff;
    background: var(--primary-clr);
    border-color: var(--primary-clr);
    transform: translateY(-2px);
}

.contact-form-box {
    padding: 38px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.contact-form-heading > span {
    color: var(--primary-clr);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-form-heading h3 {
    margin: 9px 0 5px;
    color: var(--bg-clr);
    font-size: 25px;
    font-weight: 650;
}

.contact-form-heading p {
    margin: 0 0 25px;
    color: var(--para);
    font-size: 11px;
    line-height: 1.7;
}

.contact-form-box label {
    display: block;
    margin-bottom: 7px;
    color: var(--bg-clr);
    font-size: 10px;
    font-weight: 600;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    min-height: 45px;
    padding: 10px 13px;
    color: var(--bg-clr);
    background: #ffffff;
    border: 1px solid #dbe3ec;
    border-radius: 5px;
    box-shadow: none;
    font-size: 11px;
}

.contact-form-box textarea.form-control {
    min-height: 125px;
    resize: vertical;
}

.contact-form-box .form-control::placeholder {
    color: #94a3b8;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--primary-clr);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}
/******************************  Contact Page Css End ********************************/