/* =========================
   RESET & GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3em !important;
}

.devparas-footer-contact a {
    color: #fff !important;
}

.devparas-web-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    margin: 0 auto;
}

footer a {
    text-decoration: none !important;
}
.devparas-logo-section{display:none !important;}
@media(max-width:991px) {
    .devparas-web-grid {
        grid-template-columns: 1fr;
    }
}

.page-id-2871,
.page-id-2749,
.page-id-3158,
.page-id-3243,
.page-id-3260,
.page-id-3271,
body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top left,
            rgba(20, 48, 79, 0.9) 0%,
            rgba(20, 48, 79, 0.5) 25%,
            transparent 55%),
        radial-gradient(circle at bottom right,
            rgba(10, 167, 167, 0.8) 0%,
            rgba(10, 167, 167, 0.35) 25%,
            transparent 55%),
        linear-gradient(135deg,
            #0f1724 0%,
            #11141b 45%,
            #0b1220 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

p>a {
    color: #fff !important;
}

/* =========================
   HEADER
========================= */

.devparas-header {
    position: absolute;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
}

.devparas-header-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* =========================
   LOGO
========================= */

.devparas-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.devparas-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}


/* =========================
   NAVIGATION
========================= */

.devparas-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.devparas-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.devparas-menu>li {
    position: relative;
    margin: 0;
    padding: 0;
}

.devparas-menu>li>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.devparas-menu>li>a:hover {
    color: #19dcc1;
}

/* Underline */
.devparas-menu>li>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #18a5ff, #19dcc1);
    transition: 0.3s ease;
}

.devparas-menu>li>a:hover::after {
    width: 100%;
}


/* =========================
   FONT AWESOME DROPDOWN ICON
========================= */

.devparas-menu li.menu-item-has-children {
    position: relative;
}

.devparas-menu li.menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.devparas-menu li.menu-item-has-children>a::before {
    display: none !important;
}

.devparas-menu li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    background: none;
    font-size: 13px;
    transition: 0.3s ease;
    color: #dce6f6;
}

.devparas-menu li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
    color: #19dcc1;
}


/* =========================
   SUBMENU
========================= */

.devparas-menu .sub-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    min-width: 280px;
    background: #121826;
    border-radius: 18px;
    padding: 18px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 999;
}

.devparas-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.devparas-menu .sub-menu li {
    width: 100%;
}

.devparas-menu .sub-menu li a {
    display: block;
    padding: 12px 24px;
    color: #dce6f6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.devparas-menu .sub-menu li a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #19dcc1;
}


/* =========================
   HEADER BUTTON
========================= */

.devparas-header-btn {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.devparas-header-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 34px;
    border-radius: 60px;
    background: linear-gradient(90deg, #18a5ff, #19dcc1);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.devparas-header-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(24, 220, 193, 0.25);
}


/* =========================
   MOBILE TOGGLE
========================= */

.devparas-mobile-toggle {
    width: 42px;
    height: 42px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.devparas-mobile-toggle span {
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 20px;
    transition: 0.3s ease;
}


/* =========================
   HERO SECTION
========================= */

.devparas-seo-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.devparas-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left */
.devparas-left {
    width: 55%;
}

.devparas-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50px;
    color: #3de6e6;
    font-size: 14px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.devparas-heading {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff !important;
}

.devparas-heading span {
    background: linear-gradient(90deg, #23c4ff, #1de9b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-description {
    font-size: 18px;
    line-height: 1.9;
    color: #b7c1d3;
    margin-bottom: 35px;
    max-width: 700px;
}

/* Highlight Box */
.devparas-highlight-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.devparas-highlight-item {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 15px;
    color: #dbe6ff;
    backdrop-filter: blur(8px);
}

/* Features */
.devparas-features {
    margin-bottom: 40px;
}

.devparas-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #d5ddee;
}

.devparas-feature span {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1db6ff, #14e0c3);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* Buttons */
.devparas-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.devparas-primary-btn,
.devparas-secondary-btn {
    padding: 18px 38px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.4s ease;
}

.devparas-primary-btn {
    background: linear-gradient(90deg, #1877f2, #11d8b0);
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 255, 200, 0.15);
}

.devparas-primary-btn:hover {
    transform: translateY(-4px);
    background: #fff !important;
    color: #000 !important;
}

.devparas-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.devparas-secondary-btn:hover {
    background: #fff;
    color: #111;
}

/* Right Form */
.devparas-right {
    width: 45%;
}

.devparas-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.4);
}

.devparas-form-card h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 34px;
    color: #fff !important;
}

.devparas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.devparas-form input,
.devparas-form textarea {
    width: 100%;
    background: #181d27;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    outline: none;
    transition: 0.3s;
    font-size: 15px;
}

.devparas-form input:focus,
.devparas-form textarea:focus {
    border-color: #18d3c7;
    box-shadow: 0 0 0 3px rgba(24, 211, 199, 0.15);
}

.devparas-form textarea {
    height: 140px;
    resize: none;
    margin-top: 20px;
}

/* Services Checkboxes */
.devparas-services {
    margin-top: 30px;
}

.devparas-services h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.devparas-services label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #d5ddee;
    cursor: pointer;
}

.devparas-services input {
    width: 18px;
    height: 18px;
}

/* Submit Button */
.devparas-submit-btn {
    width: 100%;
    margin-top: 25px;
    border: none;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(90deg, #1bb7ff, #18e0c1);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.devparas-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 255, 220, 0.18);
}


/* =========================
   INFINITE LOGO SCROLL
========================= */

.devparas-logo-scroll {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
}

.devparas-logo-scroll::before,
.devparas-logo-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* Track */
.devparas-logo-track {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: devparasInfinite 20s linear infinite;
}

.devparas-logo-track:hover {
    animation-play-state: running;
}

/* Item */
.devparas-logo-item {
    position: relative;
    flex-shrink: 0;
    width: 190px;
    height: 190px;
    margin-right: 45px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.devparas-logo-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 18px !important;
}

/* Tooltip */
.devparas-logo-tooltip {
    position: absolute;
    top: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background: #171c26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    color: #d9e3f5;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 20;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.devparas-logo-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #171c26;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.devparas-logo-item:hover .devparas-logo-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes devparasInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-235px * 4));
    }
}


/* =========================
   HOLISTIC SEO SECTION
========================= */

.devparas-holistic-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.devparas-holistic-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* Left */
.devparas-holistic-left {
    width: 50%;
}

.devparas-mini-badge {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #0aa7a7;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px !important;
}

.devparas-holistic-heading {
    font-size: 58px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.devparas-holistic-heading span {
    background: linear-gradient(90deg, #20c6ff, #18dfb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-holistic-description {
    color: #bcc8da;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* Points */
.devparas-holistic-points {
    margin-top: 35px;
    margin-bottom: 40px;
}

.devparas-holistic-point {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #e2ebfa;
    font-size: 16px;
}

.devparas-holistic-point span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #18c8ff, #19dfb6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

/* Button */
.devparas-holistic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0aa7a7, #0d6efd);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.devparas-holistic-btn:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-4px);
}

/* Right Image */
.devparas-holistic-right {
    width: 50%;
}

.devparas-image-wrapper {
    position: relative;
}

.devparas-image-wrapper img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    min-height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* Floating Cards */
.devparas-floating-card {
    position: absolute;
    padding: 16px 24px;
    border-radius: 18px;
    background: rgba(17, 20, 27, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(12px);
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.devparas-card-one {
    top: 30px;
    left: -30px;
}

.devparas-card-two {
    bottom: 40px;
    right: -20px;
}


/* =========================
   WHY SECTION V2
========================= */

.devparas-why-v2 {
    padding: 80px 0;
}

.devparas-why-v2-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* Top */
.devparas-why-top-area {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 80px;
}

.devparas-why-mini-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: #f1f7ff;
    color: #168bff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.devparas-why-main-heading {
    font-size: 60px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 28px;
    font-weight: 700;
}

.devparas-why-main-heading span {
    background: linear-gradient(90deg, #1895ff, #14d8c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-why-main-description {
    color: #f7f7f7;
    font-size: 18px;
    line-height: 1.9;
}

.devparas-why-hidden-text {
    display: none;
}

.devparas-why-main-description.active .devparas-why-hidden-text {
    display: inline;
}

.devparas-why-read-btn {
    background: none;
    border: none;
    color: #1698ff;
    font-weight: 600;
    cursor: pointer;
    margin-left: 8px;
    font-size: 16px;
}

/* Content */
.devparas-why-content {
    display: flex;
    gap: 70px;
    align-items: stretch;
}

/* Image Side */
.devparas-why-image-side {
    width: 45%;
    position: relative;
    min-height: 520px;
}

.devparas-tab-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.devparas-tab-image.active {
    opacity: 1;
    visibility: visible;
}

.devparas-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Accordion */
.devparas-why-accordion {
    width: 55%;
    border-top: 1px solid #e5e7eb;
}

.devparas-why-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}

.page-id-3158 .devparas-why-item {
    padding: 15px 0 !important;
}

.devparas-why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.devparas-why-header h3 {
    font-size: 24px;
    color: #f7f7f7;
    font-weight: 500;
    transition: 0.3s ease;
    margin-bottom: 0;
}

.devparas-why-header span {
    font-size: 34px;
    color: #f7f7f7;
    transition: 0.3s ease;
}

.devparas-why-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.devparas-why-body p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.9;
    padding-top: 22px;
    max-width: 92%;
}

.devparas-why-item.active .devparas-why-body {
    max-height: 300px;
}

.devparas-why-item.active .devparas-why-header span {
    transform: rotate(45deg);
}


/* =========================
   SERVICES SECTION V2
========================= */

.devparas-services-v2 {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.devparas-services-v2-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* Top */
.devparas-services-v2-top {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 70px;
}

.devparas-services-v2-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #19dcc1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.devparas-services-v2-heading {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

.devparas-services-v2-heading span {
    background: linear-gradient(90deg, #18a5ff, #19dcc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-services-v2-description {
    color: #b8c5d8;
    font-size: 18px;
    line-height: 1.9;
    max-width: 900px;
    margin: auto;
}

.devparas-services-v2-more {
    display: none;
}

.devparas-services-v2-description.active .devparas-services-v2-more {
    display: inline;
}

.devparas-services-v2-readmore {
    background: none;
    border: none;
    color: #19dcc1;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-left: 8px;
}

/* Tabs */
.devparas-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 65px;
    position: relative;
    z-index: 999;
    overflow: visible !important;
}

.devparas-tab-btn {
    position: relative;
    padding: 18px 34px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dce6f6;
    cursor: pointer;
    transition: 0.35s ease;
    font-size: 16px;
    font-weight: 500;
    min-width: 170px;
    text-align: center;
    overflow: visible !important;
    backdrop-filter: blur(12px);
}

.devparas-tab-btn:hover {
    transform: translateY(-4px);
}

.devparas-tab-btn.active {
    background: linear-gradient(90deg, #169dff, #18dcc1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(24, 220, 193, 0.22);
}

/* Tab Tooltip */
.devparas-tab-tooltip {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    background: #171c26;
    color: #dce6f6;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.7;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 99999;
    pointer-events: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.devparas-tab-tooltip::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #171c26;
}

.devparas-tab-btn:hover .devparas-tab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Panels */
.devparas-services-panels {
    position: relative;
    width: 100%;
}

.devparas-service-panel-v2 {
    display: none;
    width: 100%;
}

.devparas-service-panel-v2.active {
    display: block;
    animation: devparasFade 0.4s ease;
}

/* Service Card */
.devparas-service-card {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 35px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    min-height: 420px;
}

/* Service Image */
.devparas-service-image {
    width: 100%;
    height: 100%;
}

.devparas-service-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    object-position: top !important;
}

/* Service Content */
.devparas-service-content {
    width: 100%;
}

.devparas-service-content h3 {
    font-size: 32px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 22px;
    font-weight: 700;
}

.devparas-service-content p {
    color: #b8c5d8;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 95% !important;
}

.devparas-service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.devparas-service-content ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #e5edf8;
    font-size: 17px;
    margin-bottom: 18px;
}

.devparas-service-content ul li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #18a5ff, #18dcc1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

@keyframes devparasFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   SEO PACKAGES
========================= */

.devparas-seo-packages {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.devparas-seo-packages-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* Top */
.devparas-seo-packages-top {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 80px;
}

.devparas-seo-packages-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #19dcc1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 26px;
}

.devparas-seo-packages-heading {
    font-size: 64px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.devparas-seo-packages-heading span {
    background: linear-gradient(90deg, #18a5ff, #19dcc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-seo-packages-description {
    color: #b8c5d8;
    font-size: 18px;
    line-height: 1.9;
}

.devparas-seo-packages-more {
    display: none;
}

.devparas-seo-packages-readmore {
    border: none;
    background: transparent;
    color: #0d6efd;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
}

#devparasReadMoreBtn {
    border: none;
    background: transparent;
    color: #0d6efd;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

/* Pricing Grid */
.devparas-seo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.devparas-seo-card {
    position: relative;
    padding: 45px 35px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: 0.4s ease;
}

.devparas-seo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(25, 220, 193, 0.30);
}

.devparas-seo-card.active {
    border-color: rgba(24, 220, 193, 0.35);
    transform: translateY(-15px);
}

.devparas-seo-card-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(24, 220, 193, 0.15), transparent 70%);
}

.devparas-popular-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 10px 18px;
    border-radius: 60px;
    background: linear-gradient(90deg, #18a5ff, #19dcc1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.devparas-package-mini {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #19dcc1;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.devparas-seo-card h3 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 700;
}

.devparas-seo-card p {
    color: #b8c5d8;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.devparas-seo-card ul {
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
}

.devparas-seo-card ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #e5edf8;
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.devparas-seo-card ul li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #18a5ff, #19dcc1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

.devparas-seo-btn {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    background: linear-gradient(90deg, #18a5ff, #19dcc1);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.devparas-seo-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(24, 220, 193, 0.22);
    background: #fff !important;
    color: #000;
}


/* =========================
   SEO SUCCESS SECTION
========================= */

.devparas-seo-success {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.devparas-seo-success-container {
    width: min(1200px, 90%);
    margin: auto;
}

/* Top */
.devparas-seo-success-top {
    text-align: center;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 50px !important;
}

.devparas-seo-success-heading {
    font-size: 58px;
    line-height: 1.1;
    margin-top: 25px;
    color: #fff;
}

.devparas-seo-success-heading span {
    display: block;
    background: linear-gradient(135deg, #0aa7a7, #4da3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-seo-success-description {
    max-width: 900px;
    margin: 30px auto 0;
    color: #c6d0df;
    line-height: 1.9;
    font-size: 17px;
}

/* Tooltip Cards */
.devparas-tooltip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.devparas-tooltip-card {
    position: relative;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: 0.4s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.devparas-tooltip-card:hover {
    transform: translateY(-8px);
    border-color: #0aa7a7;
}

.devparas-tooltip-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0aa7a7, #0d6efd);
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.devparas-tooltip-card h3 {
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
}

.devparas-tooltip-content {
    position: absolute;
    left: 50%;
    bottom: 110%;
    transform: translateX(-50%);
    width: 260px;
    background: #121a27;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 16px;
    color: #d8e0ea;
    line-height: 1.7;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.devparas-tooltip-card:hover .devparas-tooltip-content {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

/* Steps */
.devparas-steps-wrapper {
    margin-top: 120px;
}

.devparas-steps-top {
    text-align: center;
    margin-bottom: 70px;
}

.devparas-steps-top h2 {
    font-size: 52px;
    color: #fff;
}

.devparas-steps-top h2 span {
    background: linear-gradient(135deg, #0aa7a7, #4da3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-steps-top p {
    max-width: 760px;
    margin: 20px auto 0;
    color: #c6d0df;
    line-height: 1.8;
}

/* Steps Grid */
.devparas-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px;
}

/* Steps Column */
.devparas-steps-column {
    position: relative;
}

.devparas-steps-column::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 167, 167, 0.6),
            rgba(10, 167, 167, 0.05));
}

/* Step Card */
.devparas-step-card {
    position: relative;
    padding-left: 80px;
    margin-bottom: 45px;
}

.devparas-step-card span {
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #0aa7a7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #0aa7a7;
    background: #11141b;
    z-index: 2;
}

.devparas-step-card-inner {
    padding: 35px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.devparas-step-card-inner:hover {
    transform: translateY(-6px);
    border-color: #0aa7a7;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.devparas-step-card h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.devparas-step-card p {
    color: #c6d0df;
    line-height: 1.9;
}


/* =========================
   FOOTER
========================= */

.devparas-footer-top .devparas-footer-col:nth-child(2) {
    display: none !important;
}

.devparas-footer {
    position: relative;
    padding: 90px 0 0;
    overflow: hidden;
}

.devparas-footer-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.devparas-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.devparas-footer-col h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 28px;
    font-weight: 600;
}

/* About */
.devparas-footer-logo img {
    max-width: 190px;
    height: auto;
    margin-bottom: 24px;
}

.devparas-footer-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
}

.devparas-footer-about p {
    color: #b7c4d8;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 28px;
}

/* Social */
.devparas-footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.devparas-footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.devparas-footer-socials a:hover {
    background: linear-gradient(90deg, #18a5ff, #19dcc1);
    transform: translateY(-4px);
}

/* Footer Menu & Links */
.devparas-footer-menu,
.devparas-footer-links,
.devparas-footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.devparas-footer-menu li,
.devparas-footer-links li,
.devparas-footer-contact li {
    margin-bottom: 18px;
}

.devparas-footer-menu li a,
.devparas-footer-links li a {
    color: #b7c4d8;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.devparas-footer-menu li a:hover,
.devparas-footer-links li a:hover {
    color: #19dcc1;
    padding-left: 6px;
}

/* Contact */
.devparas-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #b7c4d8;
    line-height: 1.8;
}

.devparas-footer-contact li i {
    color: #19dcc1;
    margin-top: 5px;
}

/* Bottom */
.devparas-footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.devparas-footer-bottom p {
    color: #8fa2be;
    font-size: 15px;
    margin: 0;
}


/* =========================
   READ MORE (GLOBAL)
========================= */

.devparas-more-text {
    display: none;
}

.devparas-more-text.active {
    display: inline;
}

.devparas-description.active .devparas-more-text,
.devparas-why-main-description.active .devparas-why-hidden-text,
.devparas-seo-success-description.active .devparas-more-text {
    display: inline;
}

.devparas-readmore-btn {
    margin-top: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.devparas-readmore-btn:hover {
    transform: translateY(-3px);
}


/* =========================
   DEVPARAS HOLISTIC CAROUSEL
========================= */

.devparas-holistic-carousel-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.devparas-holistic-carousel-container {
    width: min(1280px, 90%);
    margin: auto;
}

/* TOP */
.devparas-carousel-top {
    text-align: center;
    margin-bottom: 60px;
}

/* NOTE: .devparas-mini-badge duplicate removed — already defined in HOLISTIC SEO SECTION above */

.devparas-carousel-heading {
    font-size: 58px;
    line-height: 1.1;
    margin-top: 25px;
    color: #fff;
}

.devparas-carousel-heading span {
    display: block;
    background: linear-gradient(135deg, #0aa7a7, #4da3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-carousel-description {
    max-width: 850px;
    margin: 25px auto 0;
    color: #c6d0df;
    line-height: 1.9;
    font-size: 17px;
}

/* DOTS */
.devparas-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.devparas-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s ease;
}

.devparas-dot.active {
    width: 35px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0aa7a7, #0d6efd);
}

/* CAROUSEL */
.devparas-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.devparas-carousel-track {
    display: flex;
    gap: 25px;
    transition: 0.5s ease;
    will-change: transform;
}

.devparas-carousel-wrapper:hover .devparas-carousel-track {
    animation-play-state: paused;
}

/* ICON */
.devparas-carousel-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0aa7a7, #0d6efd);
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(10, 167, 167, 0.25);
}

/* CARD */
.devparas-carousel-card {
    min-width: calc((100% - 50px) / 3);
    max-width: calc((100% - 50px) / 3);
    flex-shrink: 0;
    padding: 35px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.devparas-carousel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 167, 167, 0.08),
            rgba(13, 110, 253, 0.03));
    opacity: 0;
    transition: 0.4s ease;
}

.devparas-carousel-card:hover::before {
    opacity: 1;
}

.devparas-carousel-card:hover {
    border-color: #0aa7a7;
}

/* NUMBER */
.devparas-carousel-number {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0aa7a7, #0d6efd);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* TITLE */
.devparas-carousel-card h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

/* TEXT */
.devparas-carousel-card p {
    color: #c6d0df;
    line-height: 1.9;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* ARROWS */
.devparas-carousel-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.devparas-carousel-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s ease;
}

.devparas-carousel-btn:hover {
    background: linear-gradient(135deg, #0aa7a7, #0d6efd);
    border-color: transparent;
    transform: translateY(-3px);
}


/* =========================
   DEVPARAS FAQ SECTION
========================= */

.devparas-faq-section {
    position: relative;
    padding: 80px 0;
}

.devparas-faq-container {
    width: min(1200px, 90%);
    margin: auto;
}

/* TOP */
.devparas-faq-top {
    text-align: center;
    margin-bottom: 70px;
}

.devparas-faq-heading {
    font-size: 58px;
    line-height: 1.1;
    margin-top: 25px;
    color: #fff;
}

.devparas-faq-heading span {
    display: block;
    background: linear-gradient(135deg, #0aa7a7, #4da3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devparas-faq-description {
    max-width: 850px;
    margin: 25px auto 0;
    color: #c6d0df;
    line-height: 1.9;
}

.devparas-faq-description a {
    color: #0aa7a7;
    text-decoration: none;
}

/* TABS */
.devparas-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 50px;
}

.devparas-faq-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.devparas-faq-tab i {
    color: #0aa7a7;
}

.devparas-faq-tab.active {
    background: linear-gradient(135deg, #0aa7a7, #0d6efd);
}

.devparas-faq-tab.active i {
    color: #fff;
}

/* FAQ CONTENT */
.devparas-faq-content {
    display: none;
}

.devparas-faq-content.active {
    display: block;
}

/* FAQ ITEM */
.devparas-faq-item {
    margin-bottom: 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* QUESTION */
.devparas-faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    cursor: pointer;
}

.devparas-faq-question h3 {
    flex: 1;
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
}

.devparas-faq-question span {
    color: #0aa7a7;
    font-size: 28px;
    font-weight: 700;
}

/* TOOLTIP ICON */
.devparas-faq-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0aa7a7, #0d6efd);
    color: #fff;
    font-size: 22px;
}

.devparas-faq-icon::after {
    content: "SEO FAQ";
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #11141b;
    color: #fff;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    white-space: nowrap;
}

.devparas-faq-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ANSWER */
.devparas-faq-answer {
    display: none;
    padding: 0 28px 28px 28px;
}

.devparas-faq-answer p {
    color: #c6d0df;
    line-height: 1.9;
    margin-bottom: 15px;
}

.devparas-faq-answer ul {
    padding: 0px 20px;
}

.devparas-faq-answer li {
    color: #c6d0df;
    line-height: 1.9;
    margin-bottom: 15px;
}

.devparas-faq-answer a {
    color: #0aa7a7;
    text-decoration: none;
}

/* ACTIVE */
.devparas-faq-item.active .devparas-faq-answer {
    display: block;
}

/* ANIMATION */
@keyframes devparasScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-385px * 3));
    }
}

/* =========================
DIGIHEX CONTACT BANNER
========================= */

.digihex-contact-banner {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;

    background:
        linear-gradient(rgba(7, 11, 20, .82),
            rgba(7, 11, 20, .82)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2000');

    background-size: cover;
    background-position: center;
}

.digihex-contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.digihex-contact-badge {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 60px;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .08);

    color: #19dcc1;

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

    margin-bottom: 25px;
}

.digihex-contact-title {
    font-size: 72px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.digihex-contact-description {
    max-width: 850px;
    margin: auto;

    color: #d6e0ef;

    font-size: 18px;
    line-height: 1.9;
}

.digihex-contact-breadcrumb {
    margin-top: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.digihex-contact-breadcrumb a {
    color: #19dcc1;
    text-decoration: none;
}

.digihex-contact-breadcrumb i {
    color: #8fa2be;
    font-size: 12px;
}

.digihex-contact-breadcrumb span {
    color: #ffffff;
}

/* ==========================================
COMMON HEADING
========================================== */

.digihex-contact-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.digihex-contact-mini {
    display: inline-block;

    padding: 10px 20px;

    border-radius: 50px;

    background: rgba(24, 165, 255, .08);

    border: 1px solid rgba(24, 165, 255, .15);

    color: #19dcc1;

    margin-bottom: 20px;

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

.digihex-contact-heading h2 {
    font-size: 54px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.digihex-contact-heading p {
    color: #b7c4d8;
    font-size: 18px;
    line-height: 1.9;
}

/* ==========================================
CONTACT INFO
========================================== */
.page-id-3243 .forminator-ui#forminator-module-2763.forminator-design--default .forminator-label {
    text-align: left !important;
}

.page-id-3243 .iti__country-list {
    background: black !important;
}

.digihex-contact-info {
    padding: 80px 0;
    background: #070b14;
}

.digihex-contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.digihex-contact-card {
    padding: 40px 30px;

    border-radius: 24px;

    background: #101722;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s ease;
}

.digihex-contact-card:hover {
    transform: translateY(-8px);
    border-color: #19dcc1;
}

.digihex-contact-icon {
    width: 70px;
    height: 70px;

    border-radius: 18px;

    background: linear-gradient(135deg, #18a5ff, #19dcc1);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 25px auto;
}

.digihex-contact-icon i {
    color: #fff;
    font-size: 28px;
}

.digihex-contact-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.digihex-contact-card p,
.digihex-contact-card a {
    color: #b7c4d8;
    text-decoration: none;
    line-height: 1.8;
}

/* ==========================================
FORM + MAP
========================================== */

.digihex-contact-form-section {
    padding: 80px 0;
    background: #0d131d;
}

.digihex-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.digihex-contact-form-side,
.digihex-contact-map-side {
    background: #101722;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;

    padding: 40px;
}

.digihex-contact-form-side h2 {
    font-size: 48px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.digihex-contact-form-side p {
    color: #b7c4d8;
    line-height: 1.9;
    margin-bottom: 35px;
}

.digihex-contact-map-side {
    min-height: 650px;
    overflow: hidden;
    padding: 0;
}

.digihex-contact-map-side iframe {
    width: 100%;
    height: 100%;
}

/* ==========================================
WHY CHOOSE
========================================== */

.digihex-contact-why {
    padding: 80px 0;
    background: #070b14;
}

.digihex-contact-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.digihex-contact-why-card {
    padding: 40px 30px;

    background: #101722;

    border-radius: 24px;

    border: 1px solid rgba(255, 255, 255, .08);

    text-align: center;
}

.digihex-contact-why-card i {
    font-size: 50px;
    color: #19dcc1;
    margin-bottom: 25px;
}

.digihex-contact-why-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.digihex-contact-why-card p {
    color: #b7c4d8;
    line-height: 1.8;
}

/* ==========================================
FAQ
========================================== */

.digihex-contact-faq {
    padding: 80px 0;
    background: #0d131d;
}

.digihex-contact-faq-list {
    max-width: 1000px;
    margin: auto;
}

.digihex-contact-faq-item {
    padding: 30px;

    margin-bottom: 20px;

    border-radius: 20px;

    background: #101722;

    border: 1px solid rgba(255, 255, 255, .08);
}

.digihex-contact-faq-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.digihex-contact-faq-item p {
    color: #b7c4d8;
    line-height: 1.8;
}

/* ==========================================
CTA
========================================== */

.digihex-contact-cta {
    padding: 80px 0;
    background:
        linear-gradient(135deg,
            #0d131d,
            #101722);

    text-align: center;
}

.digihex-contact-cta h2 {
    color: #fff;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.digihex-contact-cta p {
    max-width: 800px;
    margin: 0 auto 40px;

    color: #b7c4d8;

    font-size: 18px;
    line-height: 1.9;
}

.digihex-contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.digihex-contact-primary-btn,
.digihex-contact-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 60px;

    padding: 0 35px;

    border-radius: 60px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

.digihex-contact-primary-btn {
    background: linear-gradient(90deg, #18a5ff, #19dcc1);
    color: #fff;
}

.digihex-contact-secondary-btn {
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.digihex-contact-primary-btn:hover,
.digihex-contact-secondary-btn:hover {
    transform: translateY(-4px);
}

/* ==========================================
DIGIHEX ABOUT PAGE
========================================== */

.digihex-about-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* ==========================================
BANNER
========================================== */

.digihex-about-banner {
    position: relative;
    padding: 180px 0 120px;

    background:
        linear-gradient(rgba(7, 11, 20, .85),
            rgba(7, 11, 20, .85)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2000');

    background-size: cover;
    background-position: center;

    text-align: center;
}

.digihex-about-badge {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #19dcc1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.digihex-about-title {
    font-size: 72px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.digihex-about-description {
    max-width: 850px;
    margin: auto;
    color: #d7e1ef;
    font-size: 18px;
    line-height: 1.9;
}

.digihex-about-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
}

.digihex-about-breadcrumb a {
    color: #19dcc1;
    text-decoration: none;
}

.digihex-about-breadcrumb i {
    color: #9fb2cb;
}

.digihex-about-breadcrumb span {
    color: #fff;
}

/* ==========================================
COMMON
========================================== */

.digihex-about-mini {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(24, 165, 255, .08);
    border: 1px solid rgba(24, 165, 255, .15);
    color: #19dcc1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.digihex-about-company,
.digihex-about-service {
    padding: 80px 0;
    background: #070b14;
}

.digihex-about-mission {
    padding: 80px 0;
    background: #0d131d;
}

.digihex-about-company-grid,
.digihex-about-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.digihex-about-company-content h2,
.digihex-about-service-content h2 {
    font-size: 52px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 25px;
}

.digihex-about-company-content p,
.digihex-about-service-content p {
    color: #b7c4d8;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ==========================================
IMAGES
========================================== */

.digihex-about-company-image img,
.digihex-about-service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;

    transition: .4s ease;
}

.digihex-about-company-image:hover img,
.digihex-about-service-image:hover img {
    transform: scale(1.03);
}

/* ==========================================
MISSION
========================================== */

.digihex-about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.digihex-about-mission-card {
    padding: 50px 40px;
    border-radius: 24px;
    background: #101722;
    border: 1px solid rgba(255, 255, 255, .08);

    transition: .3s ease;
}

.digihex-about-mission-card:hover {
    transform: translateY(-8px);
    border-color: #19dcc1;
}

.digihex-about-mission-card i {
    font-size: 55px;
    color: #19dcc1;
    margin-bottom: 25px;
}

.digihex-about-mission-card h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
}

.digihex-about-mission-card p {
    color: #b7c4d8;
    line-height: 1.9;
}

/* ==========================================
SERVICES
========================================== */

.digihex-about-service-content ul {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.digihex-about-service-content ul li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 18px;
    color: #dce6f6;
    font-size: 17px;
}

.digihex-about-service-content ul li::before {
    content: '✓';

    position: absolute;
    left: 0;
    top: 0;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #18a5ff,
            #19dcc1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

/* ==========================================
CTA
========================================== */

.digihex-about-cta {
    padding: 80px 0;

    text-align: center;

    background:
        linear-gradient(135deg,
            #0d131d,
            #101722);
}

.digihex-about-cta h2 {
    color: #fff;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.digihex-about-cta p {
    max-width: 850px;
    margin: 0 auto 40px;

    color: #b7c4d8;

    font-size: 18px;
    line-height: 1.9;
}

.digihex-about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.digihex-about-primary-btn,
.digihex-about-secondary-btn {
    height: 60px;
    padding: 0 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 60px;

    text-decoration: none;
    font-weight: 600;

    transition: .3s ease;
}

.digihex-about-primary-btn {
    background: linear-gradient(90deg,
            #18a5ff,
            #19dcc1);

    color: #fff;
}

.digihex-about-secondary-btn {
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.digihex-about-primary-btn:hover,
.digihex-about-secondary-btn:hover {
    transform: translateY(-4px);
}

/* MOBILE */
/* =========================
   RESPONSIVE — 1100px
========================= */

@media (max-width: 1100px) {

    .digihex-about-company-grid,
    .digihex-about-service-grid,
    .digihex-about-mission-grid {
        grid-template-columns: 1fr;
    }

    .digihex-about-title {
        font-size: 52px;
    }

    .digihex-about-company-content h2,
    .digihex-about-service-content h2,
    .digihex-about-cta h2 {
        font-size: 40px;
    }

    .digihex-about-service-reverse .digihex-about-service-image {
        order: 1;
    }

    .digihex-about-service-reverse .digihex-about-service-content {
        order: 2;
    }

    /* Header */
    .devparas-header-container {
        min-height: 85px;
    }

    .devparas-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f1117;
        padding: 30px;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .devparas-navigation.active {
        display: block;
    }

    .devparas-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .devparas-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .digihex-contact-cards,
    .digihex-contact-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .digihex-contact-grid {
        grid-template-columns: 1fr;
    }

    .digihex-contact-title {
        font-size: 52px;
    }

    .digihex-contact-heading h2 {
        font-size: 40px;
    }

    .devparas-menu>li>a {
        width: 100%;
        padding: 16px 0;
        justify-content: space-between;
    }

    .devparas-mobile-toggle {
        display: flex;
    }

    .devparas-header-btn {
        display: none;
    }

    /* Submenu Mobile */
    .devparas-menu .sub-menu {
        position: relative;
        top: 0 !important;
        left: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        min-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0 10px 15px;
    }

    .devparas-menu li.menu-item-has-children.active>.sub-menu {
        display: block;
    }

    .devparas-menu .sub-menu li a {
        padding: 12px 0;
    }

    .devparas-menu li.menu-item-has-children.active>a::after {
        transform: rotate(180deg);
    }

    /* Hero */
    .devparas-container {
        flex-direction: column;
    }

    .devparas-seo-hero {
        padding: 80px 0 60px !important;
    }

    .devparas-logo-scroll {
        padding-top: 0px !important;
    }

    .devparas-left,
    .devparas-right {
        width: 100%;
    }

    .devparas-heading {
        font-size: 48px;
    }

    /* Holistic */
    .devparas-holistic-container {
        flex-direction: column;
    }

    .devparas-holistic-left,
    .devparas-holistic-right {
        width: 100%;
    }

    /* Why V2 */
    .devparas-why-content {
        flex-direction: column;
    }

    .devparas-why-image-side,
    .devparas-why-accordion {
        width: 100%;
    }

    .devparas-why-image-side {
        min-height: 500px;
    }

    .devparas-why-main-heading {
        font-size: 42px;
    }

    /* Services */
    .devparas-service-card {
        grid-template-columns: 1fr;
    }

    .devparas-service-content {
        padding-right: 0;
    }

    .devparas-service-content h3 {
        font-size: 22px;
    }

    .devparas-service-content p {
        font-size: 17px;
        max-width: 100%;
    }

    /* Success */
    .devparas-seo-success {
        padding: 40px 0;
    }

    .devparas-seo-success-top {
        padding: 25px !important;
    }

    .devparas-steps-wrapper {
        margin-top: 40px !important;
    }

    .devparas-seo-success-heading {
        font-size: 34px;
    }

    .devparas-steps-top h2 {
        font-size: 34px;
    }

    .devparas-step-card {
        padding-left: 70px;
    }

    .devparas-step-card-inner {
        padding: 25px;
    }

    .devparas-step-card h3 {
        font-size: 22px;
    }

    /* Footer */
    .devparas-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}


/* =========================
   RESPONSIVE — 991px
========================= */

@media (max-width: 991px) {

    .devparas-faq-heading {
        font-size: 42px;
    }

    .devparas-seo-pricing-grid {
        grid-template-columns: 1fr;
    }

    .devparas-seo-card.active {
        transform: none;
    }

    .devparas-seo-packages-heading {
        font-size: 46px;
    }

    .devparas-tooltip-grid,
    .devparas-steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .devparas-seo-success-heading,
    .devparas-steps-top h2 {
        font-size: 42px;
    }

    .devparas-carousel-heading {
        font-size: 42px;
    }

    .devparas-carousel-card {
        width: 320px;
    }
}


/* =========================
   RESPONSIVE — 768px
========================= */

@media (max-width: 768px) {
    .digihex-contact-banner {
        padding: 80px 0 90px;
    }

    .digihex-about-banner {
        padding: 80px 0 90px;
    }

    .digihex-about-company,
    .digihex-about-service,
    .digihex-about-mission,
    .digihex-about-cta {
        padding: 80px 0;
    }

    .digihex-about-title {
        font-size: 38px;
    }

    .digihex-about-description,
    .digihex-about-company-content p,
    .digihex-about-service-content p,
    .digihex-about-cta p {
        font-size: 16px;
    }

    .digihex-about-company-content h2,
    .digihex-about-service-content h2,
    .digihex-about-cta h2 {
        font-size: 30px;
    }

    .digihex-about-company-image img,
    .digihex-about-service-image img {
        height: 320px;
    }

    .digihex-about-cta-buttons {
        flex-direction: column;
    }

    .digihex-contact-title {
        font-size: 38px;
    }

    .digihex-contact-description {
        font-size: 16px;
    }

    .devparas-seo-packages-top {
        margin: 0 auto 20px !important;
    }

    .devparas-faq-section {
        padding: 40px 0;
    }

    .devparas-faq-heading {
        font-size: 34px;
    }

    .devparas-faq-question {
        padding: 22px;
    }

    .devparas-faq-question h3 {
        font-size: 18px;
    }

    .devparas-faq-answer {
        padding: 0 22px 22px 22px;
    }

    .digihex-contact-banner {
        padding: 80px 0 90px;
    }

    .digihex-contact-title {
        font-size: 38px;
    }

    .digihex-contact-description,
    .digihex-contact-heading p,
    .digihex-contact-cta p {
        font-size: 16px;
    }

    .digihex-contact-cards,
    .digihex-contact-why-grid {
        grid-template-columns: 1fr;
    }

    .digihex-contact-form-side h2,
    .digihex-contact-cta h2,
    .digihex-contact-heading h2 {
        font-size: 30px;
    }

    .digihex-contact-cta-buttons {
        flex-direction: column;
    }

    /* Header */
    .devparas-header-container {
        width: 92%;
        min-height: 80px;
    }

    .devparas-logo img {
        max-width: 150px;
    }

    /* Hero */
    .devparas-grid {
        grid-template-columns: 1fr;
    }

    .devparas-heading {
        font-size: 38px;
    }

    .devparas-description {
        font-size: 16px;
    }

    .devparas-btn-group {
        flex-direction: column;
    }

    .devparas-primary-btn,
    .devparas-secondary-btn {
        text-align: center;
    }

    .devparas-form-card {
        padding: 25px;
    }

    /* Logo Scroll */
    .devparas-logo-item {
        width: 140px;
        height: 140px;
        margin-right: 25px;
    }

    .devparas-logo-item img {
        width: 100%;
        height: auto;
    }

    .devparas-logo-tooltip {
        width: 220px;
        font-size: 13px;
        padding: 14px;
    }

    /* Holistic */
    .devparas-holistic-section {
        padding: 20px 0;
    }

    .devparas-holistic-container {
        gap: 30px !important;
    }

    .devparas-mini-badge {
        margin-bottom: 20px !important;
    }

    .devparas-image-wrapper img {
        box-shadow: none !important;
    }

    .devparas-holistic-heading {
        font-size: 34px;
    }

    .devparas-holistic-description {
        font-size: 15px;
    }

    .devparas-image-wrapper img {
        min-height: auto;
    }

    .devparas-card-one {
        left: 10px;
        top: 10px;
    }

    .devparas-card-two {
        right: 10px;
        bottom: 10px;
    }

    /* Why Section */
    .devparas-why-section {
        padding: 80px 0;
    }

    .devparas-why-heading {
        font-size: 36px;
    }

    .devparas-accordion-header h3 {
        font-size: 22px;
    }

    .devparas-accordion-content p {
        font-size: 15px;
        max-width: 100%;
    }

    /* Why V2 */
    .devparas-why-v2 {
        padding: 40px 0;
    }

    .devparas-why-main-heading {
        font-size: 34px;
    }

    .devparas-why-main-description {
        font-size: 16px;
    }

    .devparas-why-header h3 {
        font-size: 22px;
    }

    .devparas-why-body p {
        font-size: 15px;
        max-width: 100%;
    }

    .devparas-why-image-side {
        min-height: 350px;
    }

    /* Services V2 */
    .devparas-services-v2 {
        padding: 40px 0;
    }

    .devparas-services-v2-heading {
        font-size: 36px;
    }

    .devparas-services-v2-description {
        font-size: 16px;
    }

    .devparas-service-card {
        padding: 16px;
        border-radius: 22px;
    }

    .devparas-service-image img {
        height: 260px;
    }

    .devparas-service-content h3 {
        font-size: 30px;
    }

    .devparas-service-content p {
        font-size: 15px;
    }

    .devparas-service-content ul li {
        font-size: 15px;
    }

    .devparas-tab-btn {
        width: 100%;
        min-width: auto;
    }

    /* Packages */
    .devparas-seo-packages {
        padding: 30px 0;
    }

    .devparas-seo-packages-heading {
        font-size: 34px;
    }

    .devparas-seo-packages-description {
        font-size: 16px;
    }

    .devparas-seo-card {
        padding: 35px 24px;
    }

    .devparas-seo-card h3 {
        font-size: 30px;
    }

    /* Success */
    .devparas-tooltip-grid,
    .devparas-steps-grid {
        grid-template-columns: 1fr;
    }

    .devparas-seo-success-heading,
    .devparas-steps-top h2 {
        font-size: 34px;
    }

    .devparas-tooltip-content {
        width: 220px;
    }

    /* Footer */
    .devparas-footer {
        padding-top: 70px;
    }

    .devparas-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .devparas-footer-col h3 {
        font-size: 20px;
    }

    /* Carousel */
    .devparas-holistic-carousel-section {
        padding: 40px 0;
    }

    .devparas-carousel-heading {
        font-size: 34px;
    }

    .devparas-carousel-card {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}


/* =========================
   RESPONSIVE — 480px
========================= */

@media (max-width: 480px) {

    .devparas-heading {
        font-size: 30px;
    }

    .devparas-holistic-heading {
        font-size: 28px;
    }

    .devparas-why-main-heading {
        font-size: 28px;
    }

    .devparas-services-v2-heading {
        font-size: 28px;
    }

    .devparas-seo-packages-heading {
        font-size: 28px;
        line-height: 1.3em !important;
    }

    .devparas-seo-success-heading,
    .devparas-steps-top h2 {
        font-size: 26px;
    }

    .devparas-seo-card h3 {
        font-size: 26px;
    }

    .devparas-form-card h2 {
        font-size: 26px;
    }

    .devparas-faq-heading {
        font-size: 28px;
        line-height: 1.3em !important;
    }

    .devparas-faq-top {
        margin-bottom: 20px !important;
    }

    .devparas-faq-tab {
        width: 100% !important;
    }

    .devparas-carousel-heading {
        font-size: 28px;
    }
}

/* =========================
   CENTRALIZED PARAGRAPH READ MORE
========================= */
.centralized-paragraph-clamped {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    position: relative !important;
    padding-right: 85px !important;
    /* Leave space for the inline button */
}

.centralized-paragraph-expanded {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    position: relative !important;
    padding-right: 0 !important;
}

.centralized-read-more-btn {
    background: transparent !important;
    border: none !important;
    color: #0aa7a7 !important;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    margin: 0 0 0 5px;
    font-size: 0.9em;
    text-decoration: underline;
    display: inline-block;
    transition: color 0.3s ease;
}

.centralized-paragraph-clamped .centralized-read-more-btn {
    position: absolute;
    bottom: 8px;
    right: 0;
}

.centralized-paragraph-expanded .centralized-read-more-btn {
    position: static;
}

.centralized-read-more-btn:hover {
    color: #fff !important;
}

/* Navigation Header Styles added to make it transparent and visible */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent !important;
    animation: none !important;
    transition: none !important;
}

.site-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: transparent !important;
}

.site-header .navbar-brand {
    flex-shrink: 0;
}

.site-header .navbar-brand a {
    display: inline-block;
}

.site-header .navbar-brand img,
.site-header .custom-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.site-header .devparas-navigation {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.site-header .devparas-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.site-header .devparas-navigation ul li {
    position: relative;
}

.site-header .devparas-navigation ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Submenu Styling */
.site-header .devparas-navigation ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 10000;
}

.site-header .devparas-navigation ul li:hover > ul.sub-menu {
    display: flex;
}

.site-header .devparas-navigation ul li ul.sub-menu li {
    width: 100%;
}

.site-header .devparas-navigation ul li ul.sub-menu li a {
    color: #333;
    padding: 10px 20px;
    display: block;
    font-size: 15px;
    transition: background 0.3s ease;
}

.site-header .devparas-navigation ul li ul.sub-menu li a:hover {
    background-color: #f5f5f5;
    color: #000;
}

.site-header .devparas-mobile-toggle {
    display: none;
}


/* Enforce single line on desktop */
.site-header .navbar {
    flex-wrap: nowrap !important;
}
.site-header .navbar-brand {
    flex-shrink: 0;
}
.site-header .devparas-navigation {
    flex-shrink: 1;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .site-header .devparas-mobile-toggle {
        display: block !important;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
    }
    .site-header .devparas-navigation {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px;
        flex-direction: column;
    }
    .site-header .devparas-navigation.active {
        display: flex !important;
    }
    .site-header .devparas-navigation ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }
    .site-header .devparas-navigation ul li {
        width: 100%;
        text-align: center;
    }
    /* Mobile Submenu */
    .site-header .devparas-navigation ul li ul.sub-menu {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
    }
    .site-header .devparas-navigation ul li:hover > ul.sub-menu {
        display: flex;
    }
    .site-header .devparas-navigation ul li ul.sub-menu li a {
        color: #ccc;
    }
}

/* Fix Navbar Container Flexbox */
.site-header .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
