:root {
    /* AIM Brand Palette (Matched to Logo) */
    --primary-color: #3F5FA9;
    --secondary-color: #6393CA;
    --accent-color: #6393CA;

    --dark-bg: #050a14;
    --light-bg: #f6f9fd;
    --card-bg: #ffffff;

    --text-main: #0a162e;
    --text-muted: #576579;
    --text-light: #f1f5f9;

    --gradient-primary: linear-gradient(135deg, #3F5FA9 0%, #6393CA 100%);
    --gradient-hover: linear-gradient(135deg, #324c8a 0%, #4ea8de 100%);
    --gradient-header: linear-gradient(90deg, #050a14 0%, #3F5FA9 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(5, 10, 20, 0) 0%, rgba(5, 10, 20, 0.95) 100%);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(63, 95, 169, 0.12), 0 2px 4px -1px rgba(63, 95, 169, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(63, 95, 169, 0.15), 0 8px 10px -6px rgba(63, 95, 169, 0.1);
    --shadow-neon: 0 0 20px rgba(99, 147, 202, 0.5);

    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: "Outfit", sans-serif;
}

/* Global Reset & Base */
body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin: 0 auto;
}

/* Buttons */
.btn-aim {
    display: inline-block;
    padding: 0.800rem 1.4rem !important;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none !important;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-aim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn-aim:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.btn-aim:hover::before {
    width: 100%;
}

.container {
    max-width: 1240px;
    padding: 0 15px;
    margin: 0 auto
}

@media (min-width:1320px) {
    .container {
        max-width: 1320px;
    }
}

/* Top Header */
.top-header {
    background: #0D0D0D;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .top-title p {
    color: #F5F5F5;
    font-size: 18px;
    margin-bottom: 0;
}

.top-header .top-details {
    display: flex;
    justify-content: end;
}

.top-header .top-details .top-contact:first-child {
    margin-right: 40px;
}

.top-header .top-contact {
    text-align: right;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--text-light);
    transition: var(--transition);
}

.top-header .top-contact p {
    color: #F5F5F5;
    font-size: 18px;
    margin-bottom: 0;
    text-decoration: none;
}

.top-header .top-contact svg {
    fill: var(--accent-color);
    margin-right: 0.5rem;
}

.top-header .top-contact:hover {
    color: var(--accent-color);
}

/* Header & Navbar */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header.affix {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.navbar li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar li a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.navbar li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar li a:hover::after,
.navbar li.active a::after {
    width: 100%;
}

.navbar li a:hover,
.navbar li.active a {
    color: var(--primary-color);
}

.navbar .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu,
.company-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 260px;
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
    text-align: left;
    list-style: none;
    background-color: var(--dark-bg);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    background-color: var(--dark-bg) !important;
    box-shadow: var(--shadow-xl) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.dropdown-menu::before,
.company-dropdown::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown:has(.menu-responsive) .dropdown-menu {
    width: 1081px;
    max-width: calc(100vw - 40px);
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(25px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.dropdown:hover>.dropdown-menu,
.dropdown:hover>.company-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown:hover>.dropdown-menu {
    transform: translateX(-50%) translateY(55px);
}

.dropdown:hover>.company-dropdown {
    transform: translateX(-50%) translateY(55px);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    clear: both;
    font-weight: 400;
    color: var(--text-light);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-menu .dropdown-block {
    margin-bottom: 1.5rem;
}

.dropdown-menu .dropdown-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-block ul li a {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.dropdown-block ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.dropdown-block ul li a i,
.dropdown-block ul li a svg {
    margin-right: 12px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    transition: var(--transition);
    fill: var(--primary-color) !important;
}

.dropdown-block ul li a img {
    width: 20px;
    height: auto;
    margin-right: 12px;
    opacity: 0.7;
    transition: var(--transition);
}

.dropdown-block ul li a:hover img {
    opacity: 1;
}

.company-dropdown {
    min-width: 220px;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(25px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu {
    display: none;
    position: absolute;
    right: 15px;
    top: 15px;
}

.mobile-menu .bars {
    width: 24px;
    height: 2px;
    background-color: #000;
    display: block;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-menu.close .middle {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.close .first {
    transform: rotate(45deg);
    top: 7px;
}

.mobile-menu.close .last {
    transform: rotate(-45deg);
    top: -7px;
}

.mobile-menu .bars.middle {
    margin: 5px 0;
}

.hide-mob {
    display: block;
}

@media (max-width: 991px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        max-height: 80vh;
        overflow-y: auto;
    }

    .header-nav.open {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .mobile-menu {
        display: block;
    }

    .navbar {
        width: 100%;
        align-items: flex-start;
        gap: 0;
    }

    .navbar li {
        width: 100%;
        border-bottom: 1px solid var(--light-bg);
    }

    .dropdown-menu,
    .company-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1.5rem;
        display: none;
        transform: none;
        min-width: 100%;
        background: rgba(248, 250, 252, 0.5);
    }

    .dropdown.active .dropdown-menu,
    .dropdown.active .company-dropdown {
        display: block;
        animation: none;
    }

    /* .dropdown:hover>.dropdown-menu {
        display: none;
        left: 0;
    }

    .dropdown.active:hover>.dropdown-menu {
        display: block;
        left: 0;
    } */
}

/* Banner Section */
.banner-section {
    position: relative;
    padding: 120px 0 100px;
    background: var(--light-bg);
    overflow: hidden;
    z-index: 1;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}

.banner-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 147, 202, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.home-banner-section {
    padding: 130px 0 130px;
    background: url('../images/banner-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.home-banner-section::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.7) 100%);
    border-radius: 0;
    filter: none;
}

.home-banner-section::after {
    display: none;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.sub-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(63, 95, 169, 0.08);
    border: 1px solid rgba(63, 95, 169, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.home-banner-section .sub-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.home-banner-section .banner-content h1 {
    color: #ffffff;
}

.text-gradient {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-banner-section .banner-content .text-gradient {
    background: linear-gradient(135deg, #6393CA 0%, #5a7ccb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content p {
    font-size: 1.20rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.home-banner-section .banner-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-lg {
    padding: 1rem 2rem !important;
    font-size: 1.05rem;
}

.btn-outline-primary {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.home-banner-section .btn-outline-primary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.home-banner-section .btn-outline-primary:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--primary-color);
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.main-hero-img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    max-width: 100%;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    background: rgba(23, 31, 56, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.floating-card .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(63, 95, 169, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.floating-card .content h6 {
    color: white;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.floating-card .content span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.card-1 {
    top: 15%;
    left: -20px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.card-2 {
    bottom: 20%;
    right: -10px;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(79, 172, 254, 0.2) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .banner-section {
        text-align: center;
    }

    .banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-content .d-flex {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.wow {
    opacity: 0;
}

/* Initial state */
.fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fadeInRight {
    animation: fadeInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

[data-wow-delay="0.1s"] {
    animation-delay: 0.1s;
}

[data-wow-delay="0.2s"] {
    animation-delay: 0.2s;
}

[data-wow-delay="0.3s"] {
    animation-delay: 0.3s;
}

[data-wow-delay="0.4s"] {
    animation-delay: 0.4s;
}

[data-wow-delay="0.5s"] {
    animation-delay: 0.5s;
}

/* Slider Section */
.slider-section {
    background: white;
    border-bottom: 1px solid var(--light-bg);
}

.slider-title h2 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Infinite Slider Animation */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-slide-track {
    display: flex;
    width: calc(250px * 20);
    animation: scroll 40s linear infinite;
}

.logo-slide {
    width: 250px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-height: 50px;
    /* filter: grayscale(100%); */
    opacity: 0.9;
    transition: var(--transition);
}

.logo-slide:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* About Section */
.about-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(63, 95, 169, 0.1), transparent 40%);
    pointer-events: none;
}

.about-section .section-title h2 {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.about-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media(min-width: 768px) {
    .about-data {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-block:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(63, 95, 169, 0.3);
    border-color: rgba(63, 95, 169, 0.5);
    transform: translateY(-3px);
}

.about-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.about-block h3 span {
    color: inherit;
}

.about-block p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

.about-img {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    max-height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* Service Section */
.service-section {
    background-color: var(--light-bg);
}

.service-block {
    display: block;
    background: white;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-block:hover::before {
    transform: scaleX(1);
}

.service-block .icon {
    width: 70px;
    height: 70px;
    background: rgba(63, 95, 169, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-block .icon svg,
.service-block .icon i {
    font-size: 32px;
    fill: var(--primary-color);
    color: var(--primary-color);
}

.service-block:hover .icon {
    background: var(--gradient-primary);
}

.service-block:hover .icon svg,
.service-block:hover .icon i {
    fill: white;
    color: white;
}

.service-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-block p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1rem;
}

.service-block span {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-block:hover span i {
    transform: translateX(5px);
}

/* Service Section Dark */
.service {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.service .container {
    position: relative;
    z-index: 1;
}

.service .section-title h2 {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.service .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.service .service-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.service .service-block h3 {
    color: white;
}

.service .service-block p {
    color: rgba(255, 255, 255, 0.6);
}

.service .service-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 147, 202, 0.4);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
}

.service .service-block::before {
    background: var(--secondary-color);
}

.service .service-block .icon {
    background: rgba(255, 255, 255, 0.08);
}

.service .service-block .icon i,
.service .service-block .icon svg {
    color: var(--secondary-color);
    fill: var(--secondary-color);
}

.service .service-block:hover .icon {
    background: var(--gradient-primary);
}

.service .service-block:hover .icon i,
.service .service-block:hover .icon svg {
    color: white;
    fill: white;
}

/* Portfolio Section */
.protfolio-section {
    background: var(--dark-bg);
    position: relative;
}

.protfolio-section .section-title h2 {
    color: white;
}

.protfolio-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.protfolio-block {
    display: block;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    text-decoration: none;
    margin-bottom: 24px;

}

.protfolio-block .mb-lg-0 {
    margin-bottom: 24px;
}

.protfolio-block .mb-0 {
    margin-bottom: 24px;
}

.protfolio-block:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(63, 95, 169, 0.3);
}

.protfolio-img {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 0 !important;
}

.protfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: var(--radius-sm);
    height: 360px;
}

.protfolio-details {
    padding: 1.5rem 1rem 1rem 1rem;
}

.protfolio-details h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.protfolio-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.protfolio-btn .btn-aim {
    background: transparent;
    border: 1px solid var(--primary-color) !important;
    color: white !important;
    margin-top: 2rem;
}

.protfolio-btn .btn-aim:hover {
    background: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(63, 95, 169, 0.4);
}

/* AI Services Section */
.ai-services-section {
    background: var(--light-bg);
    color: var(--text-main);
    position: relative;
}

.ai-services-section .section-title h2 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-services-section .section-title p {
    color: var(--text-muted);
}

.ai-feature-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.ai-feature-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 95, 169, 0.2);
}

.ai-feature-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1rem;
    background: rgba(63, 95, 169, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.ai-feature-item:hover .ai-feature-icon {
    background: var(--gradient-primary);
}

.ai-feature-icon i {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    transition: var(--transition);
}

.ai-feature-item:hover .ai-feature-icon i {
    color: white;
}

.ai-feature-content h4 {
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.ai-feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.ai-cta-section {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.ai-cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.ai-cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.ai-cta-section .btn-aim {
    background: white;
    color: var(--primary-color) !important;
}

.ai-cta-section .btn-aim:hover {
    background: var(--light-bg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Step/Process Section */
.step-section {
    background: var(--light-bg);
}

.step-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Technology Section with Tabs */
.technology-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(63, 95, 169, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.technology-section .section-title h2 {
    color: white;
}

.technology-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.technology-section .nav-tab {
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.technology-section .technology-content {
    padding: 0 15px 20px 15px;
}

.nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 12px 12px 0 0;
}

.nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-tabs .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

/* Responsive Grid for Technologies */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .technology-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .technology-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .technology-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.technology-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.technology-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.technology-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.technology-block:hover::after {
    transform: scaleX(1);
}

.technology-block img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.technology-block:hover img {
    transform: scale(1.1);
}

.technology-block strong {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.testimonials-area {
    width: 100%;
    position: relative;
}

.testimonials-track {
    display: flex;
    width: max-content;
    animation: testimonials-scroll 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonials-block {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    width: 400px;
    flex-shrink: 0;
    margin-right: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: rgba(63, 95, 169, 0.2);
}

.testimonials-block p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move half the width of the track (which corresponds to one full set of items) */
        transform: translateX(-50%);
    }
}

.user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.user-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-style: normal;
}

/* Event Section */
.event-section {
    background: var(--dark-bg);
}

.event-section .section-title h2 {
    color: white;
}

.event-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.events-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.event-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(63, 95, 169, 0.3);
}

.event-header {
    padding: 1rem 1rem 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 600;
}

.event-location,
.event-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.event-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* Event Slider Styles */
.event-image-slider {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.event-slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.event-img-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.event-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
}

.event-slider-container:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: var(--primary-color);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.event-content {
    padding: 1.5rem;
}

.event-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);

    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-upcoming {
    background: rgba(63, 95, 169, 0.1);
    color: var(--primary-color);
}

.status-past {
    background: rgba(100, 116, 139, 0.1);
    color: var(--text-muted);
}

/* Industries Section */
.industries-section {
    background: var(--light-bg);
}

.industry-item {
    background: white;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(63, 95, 169, 0.2);
}

.industry-item .industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(63, 95, 169, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: var(--transition);
}

.industry-item:hover .industry-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.industry-item span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    transition: var(--transition);
}

.industry-item:hover span {
    color: var(--primary-color);
}

.industry-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Awards */
.award-section {
    background: var(--dark-bg);
}

.award-section .section-title h2 {
    color: white;
}

.award-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.award-section .award-block {
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 120px;
    box-shadow: none;
}

.award-section .award-block img {
    max-width: 100%;
    max-height: 80px;
    opacity: 0.8;
    transition: var(--transition);
}

.award-section .award-block:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(63, 95, 169, 0.3) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-5px);
}

.award-section .award-block:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.contact-area {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media(max-width: 991px) {
    .contact-area {
        padding: 2rem;
    }
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

/* Contact Details (Right Column) */
.conatct-details {
    padding-left: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(max-width: 991px) {
    .conatct-details {
        padding-left: 0;
        margin-top: 1rem;
        padding-top: 0.500rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
}

.conatct-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.point-list {
    margin-bottom: 2rem;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.point:last-child {
    margin-bottom: 0;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: rgba(63, 95, 169, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.point p {
    margin: 0;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
}

/* Review Badges */
.review-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    min-width: 180px;
    box-shadow: var(--shadow-sm);
}

.review-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.company-logo {
    height: 24px;
    width: auto;
    margin-right: 1rem;
}

.review-details {
    display: flex;
    flex-direction: column;
}

.review-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.rating-stars {
    color: #FFB800;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.clutch-stars {
    color: #e62415;
}

.rating-score {
    color: var(--text-main);
    margin-left: 4px;
}

.input-area {
    margin-bottom: 1.5rem;
}

.input-area input,
.input-area textarea {
    width: 100%;
    padding: 0.800rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    background: var(--light-bg);
    transition: var(--transition);
    font-family: var(--font-family);
}

.input-area input:focus,
.input-area textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(63, 95, 169, 0.1);
    background: white;
}

.conatct-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: rgba(63, 95, 169, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.point p {
    margin: 0;
    font-weight: 500;
}

.error-message {
    color: #e62415;
    font-size: 0.9rem;
}

.input-area .error {
    border: 1px solid #e62415;
    background-color: rgba(255, 0, 0, 0.1);
}

/* Footer section */
.footer-section {
    background: var(--dark-bg);
    color: var(--text-light);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-brand-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin: 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-list li a,
.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
    font-size: 0.95rem;
}

.footer-list li a:hover,
.footer-contact-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 0.75rem;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 1rem;
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-section .footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-section .footer-contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}


/* Animations Keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 10));
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Contact Section & Form Styles */
.contactus-section .contact-block {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contactus-section .contact-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.contactus-section .contact-form .input-area {
    margin-bottom: 1.5rem;
    position: relative;
}

.contactus-section .contact-form input,
.contactus-section .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    background-color: var(--light-bg);
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-main);
}

.contactus-section .contact-form input:focus,
.contactus-section .contact-form textarea:focus {
    border-color: var(--primary-color);
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(63, 95, 169, 0.1);
}

.contactus-section .contact-form .error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.thank-you-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: #155724;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.thank-you-message h3 {
    color: #155724;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.thank-you-message p {
    color: #155724;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Consultation Popup Overlay */
#consultation-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

#consultation-popup {
    background: white;
    width: 90%;
    max-width: 1000px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow-xl);
    animation: fadeIn 0.3s ease-out;
}

.popup-left {
    width: 40%;
    background: var(--dark-bg);
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-left h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.popup-left p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-right {
    width: 60%;
    padding: 3rem;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.popup-close:hover {
    color: var(--text-main);
}

.popup-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.popup-right p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Popup Form */
#consultation-form .input-area {
    margin-bottom: 1rem;
}

#consultation-form input,
#consultation-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    background: var(--light-bg);
}

#consultation-form button[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
}

#consultation-form button[type="submit"]:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
}

.award-section .award-block {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.award-section .award-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
    #consultation-popup {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-left,
    .popup-right {
        width: 100%;
        padding: 2rem;
    }

    .popup-left {
        display: none;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media(min-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 992px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    padding: 0;
}

.back-to-top .progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.back-to-top .progress-bg {
    stroke: rgba(255, 255, 255, 0.2);
}

.back-to-top .progress-bar {
    stroke: white;
    stroke-dasharray: 138;
    stroke-dashoffset: 138;
    transition: stroke-dashoffset 0.1s linear;
}

.back-to-top i {
    z-index: 1;
    font-size: 1.2rem;
    position: relative;
    top: -1px;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
}

/* Why Choose Service Section */
.why-choose-service {
    background: var(--light-bg);
}

.choose-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 95, 169, 0.2);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: rgba(63, 95, 169, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(360deg);
}

.choose-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.choose-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* exprtise-section */
.exprtise-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.exprtise-section .section-title p {
    color: var(--text-muted);
}

.exprtise-section .nav-tabs {
    border-bottom: 2px solid rgba(5 10 20 / 38%);
    margin-bottom: 2rem;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.exprtise-section .nav-link {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    padding: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-size: 1rem;
    white-space: nowrap;
}

.exprtise-section .nav-link:hover {
    color: var(--primary-color);
    background: rgba(63, 95, 169, 0.08);
}

.exprtise-section .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.exprtise-section .tab-pane h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    background: var(--gradient-header);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.exprtise-section .tab-pane p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.exprtise-section .tab-pane ul {
    padding-left: 0;
}

.exprtise-section .tab-pane ul li {
    list-style: none;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.05rem;
}

.exprtise-section .tab-pane ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.exprtise-section .img {
    position: relative;
    padding: 1rem;
}

.exprtise-section .img::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60%;
    padding-bottom: 60%;
    background: radial-gradient(circle, rgba(99, 147, 202, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.exprtise-section .img img {
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.exprtise-section .img:hover img {
    transform: scale(1.02);
}

.exprtise-section .tab-content {
    min-height: 400px;
}

.exprtise-section .nav-tab {
    border: 2px solid rgb(5 10 20 / 38%);
    border-radius: 12px;
}

@media (max-width: 991px) {
    .exprtise-section .nav-tabs {
        gap: 0.5rem;
        margin-bottom: 3rem;
    }

    .exprtise-section .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .exprtise-section .img {
        margin-top: 2rem;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .exprtise-section .nav-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .exprtise-section .nav-link {
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
    }
}


/* Service Steps Section */
.service-steps-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.service-steps-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 147, 202, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.service-steps-section .steps-container {
    position: relative;
    padding: 2rem 0;
}

/* Timeline Central Line */
.service-steps-section .progress-container {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    border-radius: 4px;
}

.service-steps-section .progress-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(63, 95, 169, 0.5);
}

.service-steps-section .progress-color-overlay {
    display: none;
}

/* Steps Wrapper */
.service-steps-section .steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

/* Individual Step */
.service-steps-section .step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.service-steps-section .step-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 45%;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-steps-section .step-content:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 147, 202, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Step Number (Circle on Timeline) */
.service-steps-section .step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border: 2px solid rgba(63, 95, 169, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--dark-bg);
    transition: var(--transition);
}

.service-steps-section .step:hover .step-number {
    border-color: var(--secondary-color);
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(63, 95, 169, 0.4), 0 0 0 8px var(--dark-bg);
}

/* Alternating Layout */
.service-steps-section .step:nth-child(odd) {
    flex-direction: row;
}

.service-steps-section .step:nth-child(even) {
    flex-direction: row-reverse;
}

.service-steps-section .step-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0px;
    font-weight: 700;
}

.service-steps-section .d-flex.align-items-center {
    margin-bottom: 1.5rem !important;
}

.service-steps-section .step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-steps-section .step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-steps-section .step-content:hover .step-icon {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: rotate(10deg);
}

.service-steps-section .step-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.service-steps-section .step:nth-child(odd) .step-content::after {
    right: -20px;
}

.service-steps-section .step:nth-child(even) .step-content::after {
    left: -20px;
}

.service-steps-section .step-content:hover::after {
    background: var(--secondary-color);
    width: 30px;
}

.service-steps-section .step:nth-child(odd) .step-content:hover::after {
    right: -30px;
}

.service-steps-section .step:nth-child(even) .step-content:hover::after {
    left: -30px;
}

@media (max-width: 991px) {
    .service-steps-section .progress-container {
        left: 20px;
        transform: none;
    }

    .service-steps-section .step,
    .service-steps-section .step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 50px;
        width: auto;
    }

    .service-steps-section .step-content {
        width: 100%;
        margin-bottom: 2rem;
    }

    .service-steps-section .steps {
        gap: 2rem;
    }

    .service-steps-section .step-number {
        left: -29px;
        top: 0;
        transform: translateX(-50%);
        width: 30px;
        height: 29px;
        font-size: 1rem;
        margin-top: 2.5rem;
    }

    .service-steps-section .step-content::after {
        display: none;
    }
}


/* FAQ Section */
.faq-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 147, 202, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.faq-section .section-title h2 {
    color: white;
}

.faq-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.faq-accordion {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-color: rgba(99, 147, 202, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] {
    color: var(--secondary-color);
    background-color: rgba(63, 95, 169, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background: transparent;
    padding: 0 2rem;
    opacity: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    opacity: 1;
}

.faq-item.active .faq-question {
    color: var(--secondary-color);
    background-color: rgba(63, 95, 169, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--gradient-primary);
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem;
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Modern Expertise Section */
.expertise-section {
    position: relative;
    background: white;
    overflow: hidden;
}

.expertise-section .nav-tabs {
    border-bottom: 2px solid rgba(63, 95, 169, 0.1);
    border-bottom: none;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 1px;
    margin-bottom: 3rem;
}

.expertise-section .nav-link {
    border: none;
    background: #f8fafc;
    color: var(--text-muted);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.expertise-section .nav-link:hover {
    color: var(--primary-color);
    background: rgba(63, 95, 169, 0.1);
}

.expertise-section .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Tab Content */
.expertise-content h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.expertise-content h5 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.expertise-content ul {
    margin-bottom: 2rem;
}

.expertise-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.expertise-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
}

.expertise-content ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.expertise-content .business-value {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.expertise-content .business-value strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Image Wrapper */
.expertise-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.expertise-img-wrapper:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 991px) {
    .expertise-section .nav-tabs {
        flex-direction: column;
        gap: 1rem;
    }

    .expertise-section .nav-link {
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
    }

    .expertise-img-wrapper {
        margin-top: 3rem;
    }
}

/* Portfolio Page Styles */
.portfolio-banner {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}

.portfolio-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 147, 202, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.portfolio-banner .banner-data {
    position: relative;
    z-index: 2;
    text-align: center;
}

.portfolio-banner .banner-data h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -1px;
}

.portfolio-banner .banner-data p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .portfolio-banner .banner-data h1 {
        font-size: 2rem;
    }

    .portfolio-banner .banner-data p {
        font-size: 1rem;
    }
}

/* Portfolio Details Section */
.portfolio-details {
    background: var(--light-bg);
}

.portfolio-details .section-title h2 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-details .section-title p {
    color: var(--text-muted);
}

.portfolio-data-block {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.portfolio-data-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 95, 169, 0.2);
}

.portfolio-data-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.portfolio-data-block h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.portfolio-data-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.portfolio-details .details {
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.portfolio-details .details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-details .details ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.portfolio-details .details ul li:last-child {
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.portfolio-details .details ul li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.portfolio-details .details ul li p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Portfolio Features Section */
.protfolio-features {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.protfolio-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(63, 95, 169, 0.1), transparent 40%);
    pointer-events: none;
}

.protfolio-features .section-title h2 {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.protfolio-features .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.protfolio-features-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.protfolio-features-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.protfolio-features-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(63, 95, 169, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.protfolio-features-block:hover::before {
    transform: scaleX(1);
}

.protfolio-features-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.protfolio-features-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Portfolio Image Section */
.protfolio-image {
    background: var(--light-bg);
}

.protfolio-image .section-title h2 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.protfolio-image .section-title p {
    color: var(--text-muted);
}

.protfolio-images {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.protfolio-images:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.protfolio-images img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.protfolio-images:hover img {
    transform: scale(1.05);
}

/* Tech Section (Portfolio) */
.tech-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(63, 95, 169, 0.1), transparent 40%);
    pointer-events: none;
}

.tech-section .section-title h2 {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.tech-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.tech-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(63, 95, 169, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.tech-block img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.tech-block:hover img {
    transform: scale(1.1);
}

.tech-block strong {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 991px) {
    .portfolio-details .details {
        padding: 1.5rem;
    }

    .protfolio-features-block {
        padding: 1.5rem;
    }
}

/* Circular Counter Stats */
.about-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .about-data {
        grid-template-columns: repeat(3, 1fr);
    }
}

.circular-counter {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    width: 100px;
}

.counter-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.counter-value span {
    font-size: 2rem;
    font-weight: 800;
}


.counter-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
    text-transform: capitalize;
    margin-top: 0.5rem;
}

.circular-text-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spin-text 40s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.circular-counter:hover .circular-text-svg {
    animation-play-state: paused;
}

.circular-text-path {
    fill: #cbd5e1;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes spin-text {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Hire Section */
.hire-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.hire-block {
    background: white;
    padding: 2rem 1rem 1rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hire-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 95, 169, 0.2);
}

.hire-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.hire-block ul {
    margin-bottom: 1rem;
    width: 100%;
}

.hire-block ul li {
    margin-bottom: 0.75rem;
    color: var(--text-muted) !important;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.75rem;
}

.hire-block ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hire-block .most-popular {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Hire Section Light Mode - For Hire Developer Pages */
.hire-section-light {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.hire-section-light::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hire-section-light::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 147, 202, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hire-section-light .container {
    position: relative;
    z-index: 1;
}

.hire-section-light .section-title h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hire-section-light .section-title p {
    color: var(--text-muted);
}

.hire-section-light .hire-block {
    background: white;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(63, 95, 169, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    border: 1px solid rgba(63, 95, 169, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hire-section-light .hire-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hire-section-light .hire-block:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(63, 95, 169, 0.15);
    border-color: rgba(63, 95, 169, 0.2);
}

.hire-section-light .hire-block:hover::before {
    opacity: 1;
}

.hire-section-light .hire-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
}

.hire-section-light .hire-block h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hire-section-light .hire-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    width: 100%;
}

.hire-section-light .hire-block ul li {
    color: var(--text-muted) !important;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(63, 95, 169, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hire-section-light .hire-block ul li:last-child {
    border-bottom: none;
}

.hire-section-light .hire-block ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.hire-section-light .hire-block:hover ul li {
    color: var(--text-main);
}

.hire-section-light .hire-block .most-popular {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom-left-radius: 16px;
    border-top-right-radius: 24px;
    box-shadow: 0 4px 12px rgba(63, 95, 169, 0.3);
}

/* Why Hire Section */
.why-hire-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.why-hire-section .section-title h2 {
    color: white;
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.why-hire-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.why-hire-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.why-hire-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 147, 202, 0.4);
}

.why-hire-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 2rem;
}

.why-hire-icon i,
.why-hire-icon svg {
    color: var(--secondary-color);
    fill: var(--secondary-color);
    transition: var(--transition);
}

.why-hire-block:hover .why-hire-icon {
    background: var(--gradient-primary);
}

.why-hire-block:hover .why-hire-icon i,
.why-hire-block:hover .why-hire-icon svg {
    color: white;
    fill: white;
}

.why-hire-block h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.why-hire-block p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* About Us Page Styles */
.value-block,
.why-choose-block {
    display: block;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-block:hover,
.why-choose-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 95, 169, 0.2);
}

.value-block::before,
.why-choose-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-block:hover::before,
.why-choose-block:hover::before {
    transform: scaleX(1);
}

.value-icon,
.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(63, 95, 169, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 0 auto 10px;
}

.value-block:hover .value-icon,
.why-choose-block:hover .why-icon {
    background: var(--gradient-primary);
}

.value-icon i,
.why-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-block:hover .value-icon i,
.why-choose-block:hover .why-icon i {
    color: white;
}

.value-block h3,
.why-choose-block h3,
.value-block h4,
.why-choose-block h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.value-block p,
.why-choose-block p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.founder-block {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 30px;
}

.founder-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.founder-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.founder-block:hover .founder-img img {
    transform: scale(1.05);
}

.founder-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.founder-details span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.300rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-details p {
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.summary-card {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 95, 169, 0.2);
}

.summary-card h3 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.summary-card p {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 1px;
}


.about-section {
    background-color: var(--dark-bg);
    position: relative;
}

.about-section .section-title h2 {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.our-values-section {
    background-color: var(--light-bg);
}

.why-choose-section {
    background-color: var(--dark-bg);
    position: relative;
}

.why-choose-section .section-title h2 {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.why-choose-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.why-choose-section .why-choose-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.why-choose-section .why-choose-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 147, 202, 0.4);
}

.why-choose-section .why-choose-block h4 {
    color: white;
}

.why-choose-section .why-choose-block p {
    color: rgba(255, 255, 255, 0.6);
}

.why-choose-section .why-icon {
    background: rgba(255, 255, 255, 0.08);
}

.why-choose-section .why-icon i {
    color: var(--secondary-color);
}

.why-choose-section .why-choose-block:hover .why-icon i {
    color: white;
}

.founder-section {
    background-color: var(--light-bg);
}

.team-summary-section {
    background-color: var(--dark-bg);
    position: relative;
}

.team-summary-section .section-title h2 {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.team-summary-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.team-summary-section .summary-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.team-summary-section .summary-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 147, 202, 0.4);
}

.team-summary-section .summary-card p {
    color: rgba(255, 255, 255, 0.7);
}

.contactus-section {
    position: relative;
    background-color: var(--dark-bg);
    background: linear-gradient(180deg, var(--dark-bg) 0%, #080f1e 100%);
    overflow: hidden;
}

.contactus-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contactus-section .container {
    position: relative;
    z-index: 1;
}

.contactus-section .section-title h2 {
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
}

.contactus-section .section-title p {
    color: var(--text-muted);
}

.contactus-section .contact-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contactus-section .contact-title h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

.contactus-section .contact-us h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contactus-section .contact-form .input-area {
    margin-bottom: 1.5rem;
    position: relative;
}

.contactus-section .contact-form input,
.contactus-section .contact-form textarea {
    width: 100%;
    padding: 0.700rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-family: var(--font-family);
    transition: var(--transition);
    font-size: 1rem;
}

.contactus-section .contact-form input::placeholder,
.contactus-section .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contactus-section .contact-form input:focus,
.contactus-section .contact-form textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(99, 147, 202, 0.15);
    outline: none;
    background-color: rgba(0, 0, 0, 0.4);
}

.contactus-section .contact-form .error-message {
    color: #ff0000;
    font-size: 14px;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contactus-section .contact-form .error-message.visible {
    opacity: 1;
    max-height: 60px;
    margin-top: 5px;
    display: block;
}

.input-area.invalid input,
.input-area.invalid textarea {
    border-color: #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.1);
}

.contactus-section .info-content {
    padding-right: 2rem;
}

.contactus-section .info-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contactus-section .info-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contactus-section .info-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contactus-section .info-point {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.contactus-section .point-number-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactus-section .point-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3F5FA9 0%, #2a4175 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 15px rgba(63, 95, 169, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contactus-section .connecting-line {
    position: absolute;
    top: 40px;
    bottom: -50px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.contactus-section .info-point:last-child .connecting-line {
    display: none;
}

.contactus-section .point-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contactus-section .point-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.steps-section {
    background-color: var(--light-bg);
    padding-bottom: 5rem;
    position: relative;
    color: var(--text-main);
}

.steps-section .section-title h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-section .steps-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(63, 95, 169, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.steps-section .steps-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 95, 169, 0.3);
}

.steps-section .steps-img {
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 95, 169, 0.08);
    border-radius: 20px;
    padding: 15px;
    transition: var(--transition);
}

.steps-section .steps-img img {
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.steps-section .steps-block:hover .steps-img {
    background: var(--gradient-primary);
}

.steps-section .steps-block:hover .steps-img img {
    filter: brightness(0) invert(1);
}

.steps-section .steps-block h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.steps-section .steps-block p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .contactus-section .info-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .contactus-section .contact-block {
        padding: 2rem;
    }
}


/* Hire Developer Section - Dark Theme */
.hire-devloper-section {
    background-color: var(--dark-bg);
    background: linear-gradient(180deg, var(--dark-bg) 0%, #080f1e 100%);
    position: relative;
    overflow: hidden;
}

.hire-devloper-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hire-devloper-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 147, 202, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hire-devloper-section .container {
    position: relative;
    z-index: 1;
}

.hire-devloper-section .section-title h2 {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hire-devloper-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.hire-devloper-section .hire-area {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    padding: 1.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.hire-devloper-section .hire-area:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 147, 202, 0.4);
}

.hire-devloper-section .hire-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hire-devloper-section .hire-icon i {
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.hire-devloper-section .hire-area:hover .hire-icon {
    background: var(--gradient-primary);
}

.hire-devloper-section .hire-area:hover .hire-icon i {
    color: white;
}

.hire-devloper-section .hire-details h3 {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.hire-devloper-section .hire-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.why-join-us {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.why-join-us .container {
    position: relative;
    z-index: 1;
}

.why-join-us .section-title h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-join-us .section-title p {
    color: var(--text-muted);
}

.why-join-us .why-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.why-join-us .why-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(63, 95, 169, 0.3);
}

.why-join-us .why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-join-us .why-card:hover::before {
    opacity: 1;
}

.why-join-us .benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(63, 95, 169, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-join-us .benefit-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.why-join-us .why-card:hover .benefit-icon {
    background: var(--gradient-primary);
}

.why-join-us .why-card:hover .benefit-icon i {
    color: white;
}

.why-join-us .why-card h5 {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.why-join-us .why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.hire-section {
    background-color: var(--dark-bg);
    background: linear-gradient(180deg, var(--dark-bg) 0%, #080f1e 100%);
    position: relative;
    overflow: hidden;
}

.hire-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hire-section .container {
    position: relative;
    z-index: 1;
}

.hire-section .section-title h2 {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hire-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.hire-section .hire-block {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hire-section .hire-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 147, 202, 0.4);
}

.hire-section .hire-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.hire-section .hire-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.hire-section .hire-block ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hire-section .hire-block ul li:last-child {
    border-bottom: none;
}

.hire-section .hire-block ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

@media (max-width: 991px) {

    .hire-devloper-section .hire-area,
    .why-join-us .why-card {
        margin-bottom: 1.5rem;
    }

    .contact-section .contact-area {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hire-devloper-section .hire-area {
        padding: 1.5rem;
    }

    .why-join-us .why-card {
        padding: 1.5rem;
    }
}


.blog-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(63, 95, 169, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(99, 147, 202, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-section .section-title h2 {
    color: white;
    background-clip: text;
}

.blog-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.blog-filters {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.search-form {
    position: relative;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(99, 147, 202, 0.2);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: var(--transition);
}

.search-input:focus+.search-icon {
    color: var(--secondary-color);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    list-style: none;
    display: none;
    z-index: 100;
    box-shadow: var(--shadow-xl);
}

.search-suggestions li {
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.search-suggestions li:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding-left: 1.8rem;
}

.all-blog-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.blog-tab {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-tab i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.blog-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.blog-tab.active i {
    opacity: 1;
}

.tab-content h2 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.blog-grid {
    position: relative;
    z-index: 2;
}

.blog-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    backdrop-filter: blur(10px);
    opacity: 1 !important;
    display: block;
}

.blog-block:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 147, 202, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.blog-block img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-block:hover img {
    transform: scale(1.05);
}

.blog-block .content-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-block {
    padding-bottom: 1.5rem;
}

.blog-block h3,
.blog-block p,
.blog-block .blog-title,
.blog-block .blog-writer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.blog-title {
    display: inline-block;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-block h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-block:hover h3 {
    color: var(--secondary-color);
}

.blog-block p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-writer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
}

.writer-details h4 {
    font-size: 0.9rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.writer-details p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 !important;
    padding: 0 !important;
}

.blog-pagination-container {
    margin-top: 4rem !important;
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-pagination-container .pagination {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-pagination-container .page-item {
    margin: 0 0.25rem;
}

.blog-pagination-container .page-link {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.blog-pagination-container .page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.blog-pagination-container .page-link:focus {
    box-shadow: none;
}

.blog-pagination-container .page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.blog-pagination-container .page-item.disabled .page-link {
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    background: transparent;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.page-loader {
    text-align: center;
    color: white;
}

.page-loader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.page-loader p {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.blog-banner-img img {
    border-radius: var(--radius-md);
}

.blog-area .blog span img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.blog-area .blog-table-of-content h2 {
    color: #fbfbfb;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-area .blog-table-of-content ul {
    list-style: none;
    padding-left: 15px;
}

.blog-area .blog-table-of-content ul li {
    margin-bottom: 15px;
}

.blog-area .blog-area-block {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.blog-area .blog-block b {
    color: #000;
    font-size: 19px;
    font-weight: 600;
}

.blog-area .blog-table-of-content a {
    color: #f3f3f3;
    text-decoration: none;
    font-size: 17px;
}

.blog-area .blog-table-of-content a:hover {
    text-decoration: underline;
    color: #e7e7e7;
}

.blog-area .blog-table-of-content {
    padding: 15px;
    border-radius: 8px;
    position: sticky;
    top: 85px;
    margin-bottom: 20px;
    background-color: #3e5ea9ba;
}

.blog-date ul li p {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
    color: #b9b9b9;
}

.blog-area .paragraph {
    color: #000 !important;
    line-height: 30px;
    font-size: 18px;
}

.blog-area ol,
ul li {
    color: #343434 !important;
    font-size: 18px;
}

.blog-area .title {
    color: #1a1a1a !important;
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
}

.blog-area h3 {
    font-size: 22px;
    color: #0a0a0a;
    font-weight: 600;
}

.blog-block .blog-content a {
    color: #3e5ea9;
    font-weight: 500;

    &:hover {
        color: #1a1a1a;
    }
}

.blog-block .blog-content b a {
    font-weight: 600;
    font-size: 18px;
}

.blog-area .blog-block .data-table {
    overflow-x: auto;
}

.blog-area .blog-block .data-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.blog-area .blog-block .data-table table th {
    background-color: #4d4a9a26;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.blog-area .blog-block .data-table table th,
td {
    border: none ! important;
    padding: 15px 15px !important;
    text-align: left ! important;
    border: 1px solid #1a1a1a ! important;
    color: #1a1a1a ! important;
}

.blog-area .blog-block .data-table table b {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

.blog-area .blog-block .blog-content h4 {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 600;
}
