@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #f3b807;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-primary-text-emphasis: #052c65;
    --bs-secondary-text-emphasis: #2b2f32;
    --bs-success-text-emphasis: #0a3622;
    --bs-info-text-emphasis: #055160;
    --bs-warning-text-emphasis: #664d03;
    --bs-danger-text-emphasis: #58151c;
    --bs-light-text-emphasis: #495057;
    --bs-dark-text-emphasis: #495057;
    --bs-primary-bg-subtle: #cfe2ff;
    --bs-secondary-bg-subtle: #e2e3e5;
    --bs-gray-glass: #f8f9fa4f;
    --bs-success-bg-subtle: #d1e7dd;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bs-gray-100);
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}


/*--------------
 Navbar Start 
 ---------------*/

.header-section {
    position: fixed;
    z-index: 1000;
    top: 25px;
    width: 100%;
}

.header-section .container .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px 15px 40px;
    border-radius: 50px;
    height: 70px;
    backdrop-filter: blur(4px);
    background-color: var(--bs-gray-glass);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--bs-warning);
}

.header-section .container .head.scrolled {
    background: var(--bs-gray-100);
    animation: slideDown 2s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-section .container .head .nav-item .up-ul {
    display: flex;
    gap: 0px 30px;
    margin-bottom: 0 !important;
}

.header-section .container .head .nav-item ul li a {
    color: var(--bs-black);
    font-weight: 600;
    transition: all 0.50s ease;
}

.header-section .container .head .nav-item ul li a:hover,
.header-section .container .head .nav-item ul li a.active {
    color: var(--bs-warning);
    font-weight: 600;
}

.header-section .nav-item ul li .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    border-radius: 10px;
    padding: 10px 0;
}

.header-section .nav-item ul li .dropdown-menu a {
    padding: 10px 17px;
}

.header-section .nav-item ul li .dropdown-menu li:hover,
.header-section .nav-item ul li .dropdown-menu a:hover {
    background-color: #ffc10757;
    color: var(--bs-dark) !important;
}

.header-section .container .head .btns .btn {
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.50s ease;
    background-color: var(--bs-yellow);
    color: var(--bs-white);
    border: 2px solid var(--bs-yellow);
    padding: 12px 25px;
    border-radius: 50px;
}

.header-section .container .head .btns .btn.second:hover {
    background: transparent;
    color: var(--bs-black);
}

.header-section .container .head .menu_toggler i {
    font-size: 35px;
    margin-top: 7px;
    color: var(--bs-dark);
}

.header-section .container .head .menu_toggler,
.header-section .container .head .menu_toggler:hover,
.header-section .container .head .menu_toggler:active,
.header-section .container .head .menu_toggler:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.offcanvas {
    backdrop-filter: blur(30px);
    background-color: var(--bs-gray-glass);
    padding: 20px 0px;
}

.offcanvas .nav-link {
    color: var(--bs-white);
    font-weight: 600;
    padding: 10px 0;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    color: var(--bs-yellow);
}

.offcanvas .offcanvas-header .btn-close:focus {
    outline: none;
    box-shadow: none;
    color: var(--bs-dark);
}

.offcanvas .offcanvas-body .buttons .btn {
    color: var(--bs-white);
    font-weight: 600;
    transition: all 0.50s ease;
    border: 2px solid var(--bs-yellow);
    border-radius: 50px;
    background-color: var(--bs-yellow);
}

.offcanvas .offcanvas-body .buttons .btn:hover {
    background: transparent;
}

.header-section .nav-item ul li.dropdown:hover .dropdown-menu {
    display: flex !important;
    opacity: 1;
    flex-direction: column !important;
    visibility: visible;
    margin-top: 0;
}

/*-------------------
 Hero Section Start 
 --------------------*/

.creative-hero {
    padding: 100px 0 35px;
    position: relative;
    background-color: var(--theme-gray-bg);
    overflow: hidden;
}

.creative-hero .container .row .content-wrapper {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.creative-hero .container .row .content-wrapper .eyebrow-badge {
    display: inline-block;
    background-color: rgba(255, 200, 11, 0.2);
    color: var(--bs-yellow);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.creative-hero .container .row .content-wrapper .hero-heading {
    font-weight: 800;
    color: var(--bs-dark);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.creative-hero .container .row .content-wrapper .hero-heading .highlight-text {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.creative-hero .container .row .content-wrapper .hero-heading .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--bs-yellow);
    z-index: -1;
    opacity: 0.6;
    transform: rotate(-1deg);
    border-radius: 5px;
}

.creative-hero .container .row .content-wrapper .hero-desc {
    color: var(--bs-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    border-left: 4px solid var(--bs-yellow);
    padding-left: 20px;
}


.creative-hero .container .row .content-wrapper .btn-group-custom {
    display: flex;
    gap: 15px;
}

.creative-hero .container .row .content-wrapper .btn-group-custom .btn-creative {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.creative-hero .container .row .content-wrapper .btn-group-custom .btn-primary-creative {
    background-color: var(--bs-dark);
    color: var(--bs-gray-100);
    box-shadow: 0 10px 20px rgba(47, 51, 54, 0.2);
}

.creative-hero .container .row .content-wrapper .btn-group-custom .btn-primary-creative:hover {
    background-color: var(--bs-yellow);
    color: var(--bs-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 200, 11, 0.4);
}

.creative-hero .container .row .content-wrapper .btn-group-custom .btn-secondary-creative {
    background-color: var(--bs-white);
    color: var(--bs-dark);
    border: 2px solid var(--bs-gray-200);
}

.creative-hero .container .row .content-wrapper .btn-group-custom .btn-secondary-creative:hover {
    border-color: var(--bs-dark);
    background-color: var(--bs-white);
    transform: translateY(-3px);
}

/* --- Image & Blob Wrapper --- */
.creative-hero .container .row .image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.creative-hero .container .row .image-container .blob-backdrop {
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: var(--bs-yellow);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    opacity: 1;
    z-index: -1;
    box-shadow: 30px 0 0px rgba(255, 200, 11, 0.5);
    animation: subtle-morph 10s ease-in-out infinite;
}

.creative-hero .container .row .image-container .hero-img {
    width: 80%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    animation: float 5s ease-in-out infinite;
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes subtle-morph {

    0% {
        border-radius: 35% 65% 70% 30% / 30% 45% 55% 70%;
    }

    50% {
        border-radius: 70% 30% 35% 65% / 65% 55% 45% 30%;
    }

    100% {
        border-radius: 35% 65% 70% 30% / 30% 45% 55% 70%;
    }
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .creative-hero {
        padding: 60px 0;
        text-align: center;
    }

    .creative-hero .container .row .content-wrapper .hero-heading {
        font-size: 2.5rem;
    }

    .creative-hero .container .row .content-wrapper .hero-desc {
        border-left: none;
        padding-left: 0;
        margin: 0 auto 30px auto;
    }

    .creative-hero .container .row .content-wrapper .btn-group-custom {
        justify-content: center;
    }

    .creative-hero .container .row .image-container {
        margin-top: 60px;
    }
}

@media (max-width: 500px) {
    .creative-hero .container .row .content-wrapper .btn-group-custom {
        flex-direction: column;
    }

    .creative-hero .container .row .content-wrapper .btn-creative {
        width: 100%;
    }

    .creative-hero .container .row .image-container .blob-backdrop {
        width: 370px;
        height: 370px;
    }
}

/*------------------
 About Section Start 
 -------------------*/

.about-section {
    padding-top: 5rem;
    padding-bottom: 4rem;
    min-height: 80vh;
    overflow: hidden;
}

.about-section .container .row .image-wrapper {
    width: 380px;
    height: 380px;
    max-width: 90vw;
    max-height: 90vw;
    position: relative;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.about-section .container .row .image-wrapper .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid var(--bs-dark-text-emphasis);
    box-shadow: 0 0 0 1px var(--bs-gray-500);
    position: relative;
    z-index: 10;
    transition: transform 0.4s ease-out;
}

.about-section .container .row .image-wrapper .profile-img:hover {
    transform: scale(1.02);
}

.about-section .container .row .image-wrapper .circle {
    position: absolute;
    border-radius: 50%;
    z-index: 5;
    opacity: 1;
    animation-name: float-complex;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transform-origin: center center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.about-section .container .row .image-wrapper .large-dark-circle {
    background-color: var(--bs-dark);
    width: 65%;
    height: 65%;
    top: 60%;
    left: -10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.about-section .container .row .image-wrapper .small-bright-circle {
    background-color: var(--bs-yellow);
    width: 45%;
    height: 45%;
    top: -15%;
    left: 0%;
    animation-duration: 7s;
    animation-delay: 1.5s;
}

.about-section .container .row .text-dark-gray {
    color: var(--bs-dark);
    line-height: 1.2;
}

.about-section .container .row .text-secondary-accent {
    color: var(--bs-yellow);
    font-weight: 700;
}

.about-section .container .row .btn-accent {
    background-color: var(--bs-yellow);
    color: var(--bs-gray-100);
    border: 2px solid var(--bs-yellow);
    padding: 0.8rem 2.2rem;
    border-radius: 80px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.about-section .container .row .btn-accent:hover {
    background-color: var(--bs-white);
    transform: translateY(-3px);
    border: 2px solid var(--bs-yellow);
    color: var(--bs-dark-text-emphasis);
    box-shadow: 0 10px 20px rgba(255, 200, 11, 0.5);
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .about-section {
        min-height: 100vh;
        padding-top: 1rem;
        padding-bottom: 3.5rem;
    }

    .about-section .container .row .image-wrapper {
        width: 400px;
        height: 400px;
    }

    .about-section .container .row .left-content {
        margin-bottom: 3rem !important;
    }

    .about-section .container .row .image-wrapper .large-dark-circle {
        width: 60%;
        height: 60%;
        top: 70%;
        left: 5%;
    }

    .about-section .container .row .image-wrapper .small-bright-circle {
        width: 40%;
        height: 40%;
        top: -5%;
        left: -10%;
    }
}

/*------------------
 Our Features Start 
 -------------------*/

.creative-wrapper {
    padding: 6rem 0;
    position: relative;
    background-color: var(--bs-white);
    opacity: 1;
}

.creative-wrapper .container .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.creative-wrapper .container .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bs-dark);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.creative-wrapper .container .section-header .highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.creative-wrapper .container .section-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--bs-yellow);
    z-index: -1;
    transform: skewX(-10deg);
}

.creative-wrapper .container .row .service-card {
    background: var(--bs-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    position: relative;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.creative-wrapper .container .row .service-card .step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(47, 51, 54, 0.05);
    position: absolute;
    top: 0;
    right: 20px;
    line-height: 1;
    transition: color 0.3s;
}

.creative-wrapper .container .row .service-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 200, 11, 0.2);
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.creative-wrapper .container .row .service-card h3 {
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.creative-wrapper .container .row .service-card p {
    color: var(--bs-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.creative-wrapper .container .row .service-card .custom-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    border: 2px solid var(--bs-dark);
    color: var(--bs-dark);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.creative-wrapper .container .row .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-yellow);
}

.creative-wrapper .container .row .service-card:hover .step-number {
    color: rgba(255, 200, 11, 0.2);
}

.creative-wrapper .container .row .service-card:hover .icon-box {
    background-color: var(--bs-yellow);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 200, 11, 0.4);
}

.creative-wrapper .container .row .service-card:hover .custom-btn {
    background-color: var(--bs-dark);
    color: var(--bs-white);
    border-color: var(--bs-dark);
}

.creative-wrapper .container .row .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: var(--bs-yellow);
    transition: width 0.4s ease;
}

.creative-wrapper .container .row .service-card:hover::after {
    width: 100%;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .creative-wrapper .container .section-header h2 {
        font-size: 2.2rem;
    }

    .creative-wrapper {
        padding: 4rem 0;
    }
}

/*--------------------
 Pricing Section Start 
 ---------------------*/

.pricing-section {
    padding: 6rem 0;
}

.pricing-section .container .row .pricing-card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    background-color: var(--bs-white);
    height: 100%;
}

.pricing-section .container .row .pricing-card:not(.card-featured):hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
}

.pricing-section .container .row .pricing-card .card-body {
    padding: 2.5rem;
}

.pricing-section .container .row .pricing-card .card-body .icon-display {
    font-size: 3.5rem;
    color: var(--bs-yellow);
}

.pricing-section .container .row .pricing-card .card-body .price-display {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--bs-dark);
}

.pricing-section .container .row .pricing-card .card-body .price-display .currency {
    font-size: 1.5rem;
    vertical-align: 35%;
    font-weight: 500;
}

.pricing-section .container .row .pricing-card .card-body .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bs-gray);
}

.pricing-section .container .row .pricing-card .card-body .plan-name {
    font-weight: 600;
    color: var(--theme-dark);
}

.pricing-section .container .row .pricing-card .card-body .plan-features {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
}

.pricing-section .container .row .pricing-card .card-body .plan-features li {
    margin-bottom: 0.4rem;
    color: var(--bs-gray);
}

.pricing-section .container .row .pricing-card .card-body .plan-features li i {
    color: var(--bs-green);
    font-size: 18px;
}

.pricing-section .container .row .card-featured {
    background-color: var(--bs-dark);
    color: var(--bs-white);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-section .container .row .card-featured:hover {
    transform: scale(1.08);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.pricing-section .container .row .card-featured .card-body .plan-name,
.pricing-section .container .row .card-featured .card-body .price-display {
    color: var(--bs-white);
}

.pricing-section .container .row .card-featured .period {
    color: var(--bs-gray-400) !important;
    opacity: 0.8;
}

.pricing-section .container .row .card-featured .plan-features li {
    color: var(--bs-white) !important;
    opacity: 0.9;
}

.pricing-section .container .row .pricing-card .card-body .btn-buy {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    transition: all 0.3s ease;
}

.pricing-section .container .row .pricing-card .card-body .btn-outline-dark-theme {
    color: var(--bs-dark);
    border-color: var(--bs-dark);
    border: 2px solid;
}

.pricing-section .container .row .pricing-card .card-body .btn-outline-dark-theme:hover {
    background-color: var(--bs-dark);
    color: var(--bs-white);
}

.pricing-section .container .row .card-featured .card-body .btn-yellow-theme {
    background-color: var(--bs-yellow);
    color: var(--bs-dark);
    border: none;
}

.pricing-section .container .row .card-featured .card-body .btn-yellow-theme:hover {
    background-color: #eeb808;
    transform: scale(1.05);
}

/* Responsive Fixes */
@media (max-width: 600px) {
    .pricing-section .container .row .small {
        width: 90% !important;
    }
}

/*--------------------
 Contact Section Start 
 ---------------------*/

.contact-form-wrapper {
    background-color: var(--bs-light);
}

.creative-wrapper.contact-form-wrapper {
    overflow-x: hidden;
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 200, 11, 0.5);
    border-color: var(--bs-yellow);
}

.contact-form .submit-btn {
    width: auto;
    border-color: var(--bs-yellow);
    background-color: var(--bs-yellow);
    color: var(--bs-dark);
}

.contact-form .submit-btn:hover {
    background-color: var(--bs-dark);
    color: var(--bs-white);
    border-color: var(--bs-dark);
}

.contact-info-card {
    text-align: center;
    padding-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-yellow);
}

.contact-info-card .contact-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.contact-info-card h3 {
    font-size: 1.6rem;
}

.contact-info-card .highlight-info {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.contact-info-card .highlight-info::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--bs-yellow);
    z-index: -1;
    transform: skewX(-5deg);
}

.contact-details {
    text-align: left;
    padding-left: 15px;
    margin-top: 1.5rem !important;
}

.contact-details li {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--bs-dark);
}

.contact-details .icon-yellow {
    color: var(--bs-yellow);
    font-size: 1.2rem;
}

.contact-form-wrapper .service-card .step-number {
    display: none;
}

.contact-form-wrapper .service-card:hover {
    transform: translateY(0px) !important;

}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .contact-info-card {
        padding: 1rem !important;
    }

    .contact-form {
        padding: 1rem !important;
    }
}

/*------------------
   Footer Start 
-------------------*/

.dark-footer-wrapper {
    background-color: var(--bs-dark);
    color: var(--bs-white);
    padding: 3rem 0 1rem;
    font-size: 0.95rem;
}

.dark-footer-wrapper .footer-hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-footer-wrapper .footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bs-white);
}

.dark-footer-wrapper .highlight-dark {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.dark-footer-wrapper .highlight-dark::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--bs-yellow);
    z-index: -1;
    transform: skewX(-10deg);
}

.dark-footer-wrapper .widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bs-yellow);
}

.dark-footer-wrapper .footer-links li,
.dark-footer-wrapper .footer-contact-details li {
    margin-bottom: 12px;
}

.dark-footer-wrapper .footer-links a,
.dark-footer-wrapper .footer-contact-details li {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all .50s ease !important;
    display: inline-block;
}

.dark-footer-wrapper .footer-links a:hover {
    color: var(--bs-yellow);
    transform: translateX(5px);
}

.dark-footer-wrapper .icon-yellow {
    color: var(--bs-yellow);
    font-size: 1rem;
}

.dark-footer-wrapper .social-icons .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bs-white);
    border-radius: 50%;
    font-size: 1.1rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.dark-footer-wrapper .social-icons .social-link:hover {
    background-color: var(--bs-yellow);
    color: var(--bs-dark);
    transform: translateY(-3px);
}

.dark-footer-wrapper .footer-bottom-text a:hover {
    color: var(--bs-yellow) !important;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .dark-footer-wrapper {
        text-align: center;
    }

    .dark-footer-wrapper .footer-widget {
        margin-bottom: 2rem;
    }

    /* Quick Links + AI Products side by side */
    .d-flex.flex-md-row {
        flex-direction: row !important;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .d-flex.flex-md-row .footer-widget {
        flex: 1 1 45%;
    }

    .dark-footer-wrapper .footer-links {
        padding-left: 0;
    }

    .dark-footer-wrapper .footer-links a:hover {
        transform: none;
    }

    .dark-footer-wrapper .footer-contact-details {
        text-align: center;
        padding-left: 0;
    }

    .dark-footer-wrapper .social-icons {
        justify-content: center;
        display: flex;
    }
}