/*
Project Name: Mnair International
Project Type: Job Listing & Directory HTML Template
Company Name: Webmakerbd
Author Name: webmaker_bd
Author URL: https://themeforest.net/user/webmaker_bd
Version: 1.0.0
*/

/* 
----------------------------------------------------------------
[Table of contents]
----------------------------------------------------------------
1. General Styles
2. UI Components
3. Header & Navigation
4. Hero Section V2
5. Solutions Section
6. Featured Jobs Section
7. Process Section V2
8. Jobs of the Day
9. Partners & Stats
10. Locations Section
11. App Download Section
12. Footer
----------------------------------------------------------------
*/

/* ----------------------------------------------------------------
    1. General Styles
---------------------------------------------------------------- */
:root {
    --primary-color: #766DF4;
    --primary-soft: rgba(118, 109, 244, 0.1);
    --secondary-color: #3D454E;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-color: #6B7280;
    --heading-color: #111827;
    --border-color: #E5E7EB;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(118, 109, 244, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5e56d8;
}

html,
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    color: var(--heading-color);
    font-weight: 600;
}

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

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* ----------------------------------------------------------------
    2. UI Components
---------------------------------------------------------------- */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 12px;
    transition: var(--transition);
    font-family: 'Rubik', sans-serif;
}

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

.btn-primary:hover {
    background-color: #5e56d8;
    border-color: #5e56d8;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(118, 109, 244, 0.3);
}

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

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

.bg-primary-soft {
    background-color: var(--primary-soft);
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title.text-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 22px;
    background: var(--primary-soft);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(118, 109, 244, 0.15);
}

.section-title h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title h2 span.text-primary {
    position: relative;
    z-index: 1;
}

.section-title h2 span.text-primary::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-soft);
    z-index: -1;
    border-radius: 4px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
    3. Header & Navigation
---------------------------------------------------------------- */
.topbar {
    background-color: var(--white);
    font-family: 'Rubik', sans-serif;
}

.topbar-social a {
    transition: var(--transition);
}

.topbar-social a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar {
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.inner-page .navbar:not(.sticky) {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
header.header {
    position: relative;
    z-index: 99999;
}
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.navbar.sticky.sticky-visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar.sticky.sticky-hiding {
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
}

.nav-link {
    font-family: 'Rubik', sans-serif;
    color: #000000 !important;
    font-weight: 500;
    margin: 0 18px;
    position: relative;
    padding: 10px 0 !important;
}

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

/* Navigation link color on Home Page (Transparent Header) */
.home-page .navbar:not(.sticky) .nav-link {
    color: var(--white) !important;
}
.home-page .navbar:not(.sticky) .nav-link:hover, 
.home-page .navbar:not(.sticky) .nav-link.active {
    color: var(--white) !important;
    opacity: 0.8;
}
.home-page .navbar:not(.sticky) .nav-link:not(.dropdown-toggle)::after {
    background: var(--white);
}

.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 50px;
}

.nav-link:not(.dropdown-toggle):hover::after, .nav-link:not(.dropdown-toggle).active::after {
    width: 20px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Header dropdown style */
.navbar .dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
    padding: 10px;
    margin-top: 8px;
    min-width: 200px;
}

.navbar .dropdown-item {
    border-radius: 8px;
    font-weight: 500;
    color: var(--heading-color);
    padding: 9px 12px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: var(--primary-soft);
    color: var(--primary-color);
}

/* Keep active menu color consistent in all header states */
.navbar-nav .nav-link.active,
.navbar.sticky .navbar-nav .nav-link.active,
.offcanvas-body .nav-link.active {
    color: var(--primary-color) !important;
}
.offcanvas.show:not(.hiding), .offcanvas.showing {
   
    z-index: 999999;
}
.header-btns .btn-link {
    font-size: 15px;
    color: var(--heading-color) !important;
    transition: var(--transition);
}

.header-btns .btn-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28118, 109, 244, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas Mobile Menu */
.offcanvas {
    border: none;
    box-shadow: 20px 0 50px rgba(0,0,0,0.1);
}

.offcanvas-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-body {
    padding: 30px 25px;
}

.offcanvas-body .nav-link {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 10px 15px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    color: var(--heading-color);
    transition: var(--transition);
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
    background: var(--primary-soft);
    color: var(--primary-color);
}

.offcanvas-body .nav-link i.fa-chevron-down {
    font-size: 12px;
    transition: var(--transition);
}

.offcanvas-body .nav-link[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

.offcanvas-body .dropdown-menu {
    position: static !important;
    float: none !important;
    border: none;
    background: #fcfcff;
    padding: 0 0 10px 20px;
    margin: 0;
    box-shadow: none;
    display: none;
}

.offcanvas-body .dropdown-menu.show {
    display: block;
}

.offcanvas-body .dropdown-item {
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 6px;
    transition: var(--transition);
}

.offcanvas-body .dropdown-item:hover {
    background: var(--primary-soft);
    color: var(--primary-color);
    padding-left: 20px;
}

.offcanvas-body .nav-link::after {
    display: none;
}

.social-btn-sm {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.social-btn-sm:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.offcanvas-btns .btn {
    padding: 12px 20px;
    font-size: 15px;
}
.offcanvas-body .dropdown-item.active {
    color: #fff;
}

/* ----------------------------------------------------------------
    4. Hero Section Premium
---------------------------------------------------------------- */
.hero-section-premium {
    position: relative;
    padding: 265px 0 100px;
    background-color: #fff;
    overflow: hidden;
    margin-top: -165px;
}
.stat-item.bg-white-10.p-3.rounded-4.backdrop-blur span {
    color: #000 !important;
}

section.hero-section-premium span.badge-pill {
    color: #fff;
}

.video-bg-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 200px 0 150px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(118, 109, 244, 0.4));
    z-index: 1;
}

/* New Hero Styles */
.hero-content-center {
    position: relative;
    z-index: 2;
}

.hero-title.text-white {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.bg-white-10 {
    background: rgba(255, 255, 255, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-row .stat-item {
    min-width: 180px;
    transition: var(--transition);
}

.hero-stats-row .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .hero-title.text-white {
        font-size: 48px;
    }
}

/* Premium Study Abroad Styles */
:root {
    --study-primary: #766DF4;
    --study-secondary: #3D454E;
    --study-bg-light: #F8F9FA;
    --study-card-shadow: 0 15px 35px rgba(118, 109, 244, 0.1);
}

.about-img-premium {
    position: relative;
    z-index: 1;
}

.about-img-premium .main-img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about-img-premium:hover .main-img {
    transform: translateY(-10px);
}

.floating-stat-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    animation: float-y 4s infinite ease-in-out;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.about-study-section .icon-circle-sm {
    width: 40px;
    height: 40px;
    font-size: 16px;
    flex-shrink: 0;
}

.about-study-section .about-img-premium {
    padding-right: 30px;
}

@media (max-width: 768px) {
    .floating-stat-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}

.text-highlight-v2 {
    color: #fff;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.text-highlight-v2::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
    z-index: -1;
    opacity: 0.8;
}

.glass-stat {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.glass-stat .stat-number {
    color: #fff !important;
    font-size: 18px;
}

.glass-stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.glass-stat .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hero-bg-shapes .shape {
    position: absolute;
    z-index: 0;
    filter: blur(80px);
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(118, 109, 244, 0.15);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 126, 95, 0.1);
    bottom: -50px;
    right: 10%;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(118, 109, 244, 0.08);
    top: 20%;
    right: -50px;
}

.shape-4 {
    width: 150px;
    height: 150px;
}

/* Header Color Fix for Index.html Hero */
.home-page .navbar:not(.sticky) .nav-link {
    color: #ffffff !important;
}

.home-page .navbar.sticky .nav-link {
    color: #000000 !important;
}

/* Combined Hajj & Umrah Section V2 */
.hajj-umrah-combined-v2 {
    background: #fff;
}

.hajj-umrah-visual-v2 .img-main-v2 {
    position: relative;
    border-radius: 40px;
}

.hajj-umrah-visual-v2 .img-main-v2 img {
    width: 100%;
    transition: transform 0.5s ease;
}

.experience-card-v2 {
    position: absolute;
    bottom: 40px;
    left: -40px;
    min-width: 240px;
    z-index: 2;
}

.exp-icon-v2 {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.spiritual-feature-card {
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.spiritual-feature-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 10px 30px rgba(118, 109, 244, 0.1);
    transform: translateY(-5px);
}

.feature-icon-v2 {
    font-size: 32px;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .experience-card-v2 {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -30px;
        margin-left: 30px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .experience-card-v2 {
        margin-left: 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .experience-card-v2 .d-flex {
        justify-content: center;
    }
}



.hero-badge .badge-pill {
    background: var(--primary-soft);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid rgba(118, 109, 244, 0.2);
}

.hero-title {
    font-size: 55px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-soft);
    z-index: -1;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-color);
    max-width: 580px;
}

/* Search Form V3 */
.hero-search-premium {
    background: var(--white);
    padding: 7px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    max-width: 750px;
}

.search-input-group {
    display: flex;
    align-items: center;
    padding: 8px 15px;
}

.border-start-custom {
    border-left: 1px solid var(--border-color);
}

.input-icon {
    color: var(--primary-color);
    font-size: 16px;
    margin: 5px;
}

.form-control-v3 {
    border: none;
    padding: 0;
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 500;
    width: 100%;
    outline: none;
}

.btn-hero-submit {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    border: none;
    font-size: 15px;
    transition: var(--transition);
}

.btn-hero-submit:hover {
    background: var(--secondary-color);
    transform: scale(1.02);
}

/* Hero Stats */
.hero-stats-row {
    margin-top: 50px;
}

.stat-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 20px;
    border: 1px solid rgba(118, 109, 244, 0.08);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.stat-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.stat-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.2;
    font-family: 'Rubik', sans-serif;
}
section.hero-section-premium .stat-number {
    color: var(--primary-color);

}

.stat-label {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 0;
    white-space: nowrap;
    font-weight: 500;
}

/* Visual Section */
.hero-visual-premium {
    z-index: 1;
}

.hero-img-main {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.main-image {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.floating-card-1 {
    top: 15%;
    left: -40px;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatar-group img:first-child { margin-left: 0; }

.floating-card-2 {
    bottom: 10%;
    right: 0;
    width: 140px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bg-success-soft { background: rgba(40, 167, 69, 0.1); }

.floating-card-3 {
    bottom: 25%;
    left: -20px;
    width: 180px;
}

.icon-sm {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.h-4px { height: 4px; }
.x-small { font-size: 12px; }

.abstract-dot-1 {
    position: absolute;
    top: -20px;
    right: 10px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
}

.abstract-dot-2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.1;
}

/* ----------------------------------------------------------------
    Hajj & Umrah and Student Visa Sections
---------------------------------------------------------------- */
.hajj-card-premium {
    transition: var(--transition);
}

.hajj-card-premium:hover {
    transform: translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-features li {
    position: relative;
    padding-left: 0;
}

.experience-card, .success-rate-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    padding: 20px 30px;
    border-radius: 20px;
    z-index: 2;
}

.success-rate-card {
    left: -20px;
    right: auto;
    width: 140px;
}

.floating-icons .f-icon-1, .floating-icons .f-icon-2 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    font-size: 24px;
    z-index: 1;
}

.f-icon-1 { top: 20%; left: 0; }
.f-icon-2 { bottom: 20%; right: 20px; }

.university-badges {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-item {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.feature-item-v2 {
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item-v2:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-circle-sm {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.circular-progress {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary-soft);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .experience-card, .success-rate-card {
        right: 0;
        left: auto;
        bottom: 10px;
    }
    .hajj-visual, .student-visual {
        margin-bottom: 40px;
        padding: 0 !important;
    }
}

/* ----------------------------------------------------------------
    5. About Us Section Premium
---------------------------------------------------------------- */
.about-section-premium {
    padding: 100px 0;
    background-color: #F8F9FF; /* Light Brand Background */
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 0;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.15;
}

.about-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation: aboutShapeMove 15s infinite alternate;
}

.about-shape-2 {
    width: 250px;
    height: 250px;
    background: #10B981;
    bottom: -50px;
    right: -50px;
    animation: aboutShapeMove 12s infinite alternate-reverse;
}

@keyframes aboutShapeMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

.about-img-stack {
    position: relative;
    padding-bottom: 50px;
    z-index: 2;
}

/* Image Hover Effect */
.about-img-1, .about-img-2 {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
    will-change: transform;
}

.about-img-1:hover {
    transform: scale(1.04) rotate(-1.5deg);
    box-shadow: 0 40px 80px rgba(118, 109, 244, 0.25);
}

.about-img-2:hover {
    transform: scale(1.06) translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

/* Decorative Shapes around Image */
.about-img-dots {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.2;
}

.about-img-circle {
    position: absolute;
    bottom: 20px;
    left: -40px;
    width: 100px;
    height: 100px;
    border: 15px solid var(--primary-soft);
    border-radius: 50%;
    z-index: 1;
    animation: aboutFloat 6s infinite alternate;
}

@keyframes aboutFloat {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-20px) rotate(10deg); }
}

.about-img-1 {
    width: 85%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-img-2 {
    width: 65%;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 30px;
    border: 10px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.about-video-on-img {
    position: absolute;
    top: 50%;
    left: 42.5%; /* Centered on the first large image */
    transform: translate(-50%, -50%);
    z-index: 5;
}

.about-video-on-img .play-icon-v2 {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.about-video-on-img .play-icon-v2:hover {
    background: var(--primary-color);
    color: var(--white);
}

.about-exp-badge {
    position: absolute;
    top: 15%;
    right: 5%;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 20px;
    border-radius: 25px;
    text-align: center;
    z-index: 4;
    box-shadow: 0 20px 40px rgba(118, 109, 244, 0.3);
}

.about-exp-badge h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
}

.about-exp-badge p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    opacity: 0.9;
}

.about-feature-box {
    display: flex;
    align-items: center;
    background: #F9FAFB;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    margin-bottom: 25px;
}

.about-feature-box:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.about-feature-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 15px;
    margin-right: 15px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.about-feature-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-feature-info p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
}

.about-list {
    margin-bottom: 40px;
}

.about-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--heading-color);
}

.about-list-item i {
    width: 24px;
    height: 24px;
    background: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 12px;
}

.about-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.video-cta-btn {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--heading-color);
    transition: var(--transition);
}

.video-cta-btn:hover {
    color: var(--primary-color);
}

.play-icon-v2 {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    position: relative;
}

.play-icon-v2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ----------------------------------------------------------------
    6. Solutions Section
---------------------------------------------------------------- */
.solutions-section {
    background: #fff;
}

.solution-card-premium {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    z-index: 1;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.solution-card-premium .card-content {
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-soft);
    border-radius: 18px;
    z-index: -1;
    transition: var(--transition);
}

.solution-card-premium:hover .icon-bg {
    background: var(--primary-color);
    transform: rotate(45deg);
}

.solution-card-premium:hover .icon-wrapper {
    color: #fff;
}

.btn-explore {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.btn-explore i {
    font-size: 12px;
    transition: var(--transition);
}

.solution-card-premium:hover .btn-explore i {
    transform: translateX(5px);
}

/* Border Animation Effect */
.card-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.card-border-animation::before,
.card-border-animation::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    transition: all 0.6s ease;
}

.card-border-animation::before {
    top: 0;
    left: 0;
}

.card-border-animation::after {
    bottom: 0;
    right: 0;
}

.solution-card-premium:hover .card-border-animation::before {
    width: 100%;
    height: 100%;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-radius: 20px;
}

.solution-card-premium:hover .card-border-animation::after {
    width: 100%;
    height: 100%;
    border-bottom-color: var(--primary-color);
    border-left-color: var(--primary-color);
    border-radius: 20px;
}

.solution-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(118, 109, 244, 0.1);
    border-color: transparent;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* ----------------------------------------------------------------
    6. Featured Jobs Section
---------------------------------------------------------------- */
.featured-jobs-section {
    background-color: #F9FAFB !important;
}

.job-card-premium {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.company-logo img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.job-badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(118, 109, 244, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.job-badge-pill.full-time { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.job-badge-pill.part-time { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.job-badge-pill.contract { background: rgba(118, 109, 244, 0.1); color: var(--primary-color); }
.job-badge-pill.freelance { background: rgba(0, 123, 255, 0.1); color: #007bff; }
.job-badge-pill.internship { background: rgba(111, 66, 193, 0.1); color: #6f42c1; }
.job-badge-pill.remote { background: rgba(232, 62, 140, 0.1); color: #e83e8c; }
.job-badge-pill.other { background: rgba(108, 117, 125, 0.1); color: #6c757d; }

.job-title a {
    color: var(--heading-color);
    font-weight: 700;
    transition: var(--transition);
}

.job-card-premium:hover .job-title a {
    color: var(--primary-color);
}

.job-salary {
    color: var(--primary-color);
    font-size: 18px;
}

.btn-apply {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.btn-apply i {
    font-size: 12px;
    transition: var(--transition);
}

.job-card-premium:hover .btn-apply {
    color: var(--primary-color);
}

.job-card-premium:hover .btn-apply i {
    transform: translateX(5px);
}

/* Hover Border Animation (Reused from Solutions) */
.job-card-premium .card-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.job-card-premium .card-border-animation::before,
.job-card-premium .card-border-animation::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    transition: all 0.6s ease;
}

.job-card-premium .card-border-animation::before {
    top: 0;
    left: 0;
}

.job-card-premium .card-border-animation::after {
    bottom: 0;
    right: 0;
}

.job-card-premium:hover .card-border-animation::before {
    width: 100%;
    height: 100%;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-radius: 24px;
}

.job-card-premium:hover .card-border-animation::after {
    width: 100%;
    height: 100%;
    border-bottom-color: var(--primary-color);
    border-left-color: var(--primary-color);
    border-radius: 24px;
}

.job-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Load More Spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* ----------------------------------------------------------------
    7. Why Choose Us Section
---------------------------------------------------------------- */
.why-choose-us-section {
    background-color: var(--white);
    position: relative;
}

.icon-box-v3 {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 22px;
    transition: var(--transition);
}

.choose-item:hover .icon-box-v3 {
    transform: rotateY(180deg);
}

.video-box-wrapper {
    padding: 20px;
    background: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.video-img img {
    width: 100%;
    transition: var(--transition);
}

.video-play-btn-v2 {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 25px 10px 10px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.play-btn-v2 {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

.play-btn-v2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 2s linear infinite;
}

.video-text {
    font-weight: 600;
    color: var(--heading-color);
    font-family: 'Rubik', sans-serif;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.icon-circle-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.bg-success-soft { background: rgba(40, 167, 69, 0.1); }
.bg-warning-soft { background: rgba(255, 193, 7, 0.1); }
.bg-info-soft { background: rgba(23, 162, 184, 0.1); }

@keyframes ripple {
    0% { width: 70px; height: 70px; opacity: 1; }
    100% { width: 140px; height: 140px; opacity: 0; }
}

.abstract-shape-v2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 15px solid var(--primary-soft);
    border-radius: 50px;
    z-index: 0;
    pointer-events: none;
}

/* ----------------------------------------------------------------
    8. Jobs of the Day
---------------------------------------------------------------- */

/* ----------------------------------------------------------------
    11. Testimonials Section V2
---------------------------------------------------------------- */
.testimonials-section {
    background-color: #F9FAFB;
    position: relative;
    overflow: hidden;
}

.testimonial-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.testimonial-bg-decor .decor-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 109, 244, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-bg-decor .decor-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-badge-v3 {
    display: inline-block;
    padding: 8px 22px;
    background: var(--primary-soft);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-card-v3 {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-v3 {
    width: 50px;
    height: 50px;
    background: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 30px;
}

.testimonial-text-v3 {
    font-size: 18px;
    line-height: 1.8;
    color: var(--heading-color);
    font-style: italic;
    margin-bottom: 35px;
    flex-grow: 1;
}

.testimonial-author-v3 {
    display: flex;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #F0F0F0;
}

.author-img-v3 {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 18px;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-info-v3 h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--heading-color);
}

.author-info-v3 span {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.testimonial-rating-v3 {
    margin-left: auto;
    color: #FFB800;
    font-size: 12px;
}

.testimonials-pagination-v3 {
    margin-top: 50px;
    text-align: center;
}

.testimonials-pagination-v3 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    opacity: 1;
    margin: 0 6px !important;
    transition: var(--transition);
    border-radius: 50px;
}

.testimonials-pagination-v3 .swiper-pagination-bullet-active {
    width: 35px;
    background: var(--primary-color);
}

@media (max-width: 767px) {
    .testimonial-card-v3 {
        padding: 35px 25px;
    }
    .testimonial-text-v3 {
        font-size: 16px;
    }
}

.footer-logo-img {
    filter: brightness(0) invert(1);
}

/* ----------------------------------------------------------------
    12. Stats Section Premium
---------------------------------------------------------------- */
.stats-section-premium {
    background-color: #0A0A0A;
    padding: 100px 0;
    z-index: 1;
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/background/hero-bg.webp') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
    filter: grayscale(100%);
}

.stats-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.1;
    animation: stats-float 15s infinite alternate;
}

.shape-v1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -200px;
    left: -100px;
}

.shape-v2 {
    width: 300px;
    height: 300px;
    background: #10B981;
    bottom: -150px;
    right: -50px;
    animation-delay: 3s;
}

@keyframes stats-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 80px); }
}

.stat-card-premium {
    position: relative;
    padding: 20px;
    transition: var(--transition);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(118, 109, 244, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: var(--transition);
    border: 1px solid rgba(118, 109, 244, 0.2);
}

.stat-icon-wrapper.secondary {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-color: rgba(16, 185, 129, 0.2);
}

.stat-icon-wrapper.info {
    background: rgba(14, 165, 233, 0.1);
    color: #0EA5E9;
    border-color: rgba(14, 165, 233, 0.2);
}

.stat-icon-wrapper.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border-color: rgba(245, 158, 11, 0.2);
}

.stat-card-premium:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: var(--primary-color);
    color: #fff;
}

.stat-card-premium:hover .stat-icon-wrapper.secondary { background: #10B981; }
.stat-card-premium:hover .stat-icon-wrapper.info { background: #0EA5E9; }
.stat-card-premium:hover .stat-icon-wrapper.warning { background: #F59E0B; }

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    color: #888;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.stat-divider {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .stat-divider { display: none; }
}

/* ----------------------------------------------------------------
    13. Locations Section Premium 2026
---------------------------------------------------------------- */
.locations-section-v2 {
    background-color: var(--white);
    position: relative;
    padding: 100px 0;
}

.loc-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
    z-index: 0;
    opacity: 0.4;
    filter: blur(100px);
}

.location-grid-2026 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 280px;
    gap: 30px;
}

.loc-card-2026 {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: var(--light-gray);
    transition: var(--transition);
    z-index: 1;
}

.loc-card-2026.col-large { grid-column: span 6; grid-row: span 2; }
.loc-card-2026.col-small { grid-column: span 3; grid-row: span 1; }
.loc-card-2026.col-wide { grid-column: span 6; grid-row: span 1; }

.loc-img-v4 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.loc-card-2026:hover .loc-img-v4 {
    transform: scale(1.1);
}

.loc-glass-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 25px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    z-index: 3;
}

.loc-card-2026:hover .loc-glass-info {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.loc-name-v4 h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--white);
    transition: var(--transition);
}

.loc-card-2026:hover .loc-name-v4 h4 {
    color: var(--heading-color);
}

.loc-name-v4 span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.loc-card-2026:hover .loc-name-v4 span {
    color: var(--text-color);
}

.loc-go-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(10px);
}

.loc-card-2026:hover .loc-go-btn {
    opacity: 1;
    transform: translateX(0);
}

.loc-floating-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(118, 109, 244, 0.3);
}

.loc-overlay-v4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    transition: var(--transition);
}

.loc-card-2026:hover .loc-overlay-v4 {
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.1) 100%);
}

@media (max-width: 1199px) {
    .location-grid-2026 {
        grid-auto-rows: 240px;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .location-grid-2026 {
        display: flex;
        flex-direction: column;
    }
    .loc-card-2026 {
        height: 350px;
    }
}

/* ----------------------------------------------------------------
    14. Contact Section V2
---------------------------------------------------------------- */
.contact-section-v2 {
    background-color: var(--white);
    
}

.contact-header-premium {
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
    padding: 100px 0 250px;
    border-radius: 40px 40px 0 0;
    margin: 0 20px;
}

.contact-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 109, 244, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.contact-bg-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 109, 244, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.contact-shape-dots {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
}

.contact-form-overlap-v2 {
    margin-top: -180px;
    position: relative;
    z-index: 10;
    padding-bottom: 120px;
}

.contact-card-v3 {
    background: var(--white);
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(118, 109, 244, 0.05);
}

.contact-form-main {
    padding: 60px;
}

.form-group-v3 {
    position: relative;
    margin-bottom: 25px;
}

.form-group-v3 .form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    opacity: 0.5;
    transition: var(--transition);
}

.form-group-v3.message-group .form-icon {
    top: 25px;
    transform: none;
}

.form-control-v3 {
    width: 100%;
    padding: 10px 20px 10px 55px;
    background: #F9FAFB;
    border: 1px solid #F0F0F0;
    border-radius: 15px;
    font-size: 15px;
    color: var(--heading-color);
    transition: var(--transition);
}

.form-control-v3:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(118, 109, 244, 0.08);
    outline: none;
}

.form-control-v3:focus + .form-icon {
    color: var(--primary-color);
    opacity: 1;
}

.contact-sidebar-premium {
    background: #111111;
    padding: 60px 45px;
    height: 100%;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

 
.sidebar-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    transition: var(--transition);
}

.sidebar-info-item:hover {
    transform: translateX(10px);
}

.info-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(118, 109, 244, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-info-item:hover .info-item-icon {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(118, 109, 244, 0.3);
}

.info-item-content h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.info-item-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 14px;
}

.social-connect-v2 {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-v2 {
    display: flex;
    gap: 15px;
}

.social-btn-v2 {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-btn-v2:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-badge-v2 {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(118, 109, 244, 0.15);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .contact-form-main {
        padding: 40px;
    }
    .contact-sidebar-premium {
        padding: 40px;
    }
    .contact-header-premium {
        padding: 100px 0 200px;
    }
}

@media (max-width: 767px) {
    .contact-form-main {
        padding: 30px 20px;
    }
    .contact-header-premium {
        margin: 0;
        border-radius: 0;
    }
}

/* ----------------------------------------------------------------
    10. Pricing Section Premium
---------------------------------------------------------------- */
.pricing-section-premium {
    position: relative;
    background-color: #F8F9FA;
    padding-top: 0;
}

 
.pricing-card-v2 {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.pricing-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Hover Border Animation (Reused from Jobs) */
.pricing-card-v2 .card-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.pricing-card-v2 .card-border-animation::before,
.pricing-card-v2 .card-border-animation::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    transition: all 0.6s ease;
}

.pricing-card-v2 .card-border-animation::before {
    top: 0;
    left: 0;
}

.pricing-card-v2 .card-border-animation::after {
    bottom: 0;
    right: 0;
}

.pricing-card-v2:hover .card-border-animation::before {
    width: 100%;
    height: 100%;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-radius: 24px;
}

.pricing-card-v2:hover .card-border-animation::after {
    width: 100%;
    height: 100%;
    border-bottom-color: var(--primary-color);
    border-left-color: var(--primary-color);
    border-radius: 24px;
}

.pricing-card-v2.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card-v2.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}

.plan-price .amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1;
}

.plan-price .currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-right: 2px;
}

.plan-price .duration {
    font-size: 15px;
    color: var(--text-color);
    margin-left: 5px;
}

.pricing-divider {
    height: 1px;
    background: #eee;
    margin: 0 0 30px 0;
}

.plan-features {
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.plan-features li i {
    width: 20px;
    color: #28a745;
    font-size: 16px;
    margin-right: 12px;
}

.plan-features li.not-available {
    color: #ccc;
    text-decoration: line-through;
}

.plan-features li.not-available i {
    color: #ccc;
}

.btn-pricing-v2 {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 12px;
    padding: 14px 20px;
    width: 100%;
    transition: var(--transition);
}

.pricing-card-v2:hover .btn-pricing-v2,
.pricing-card-v2.featured .btn-pricing-v2 {
    background: var(--primary-color);
    color: #fff;
}

.pricing-card-v2.featured .btn-pricing-v2:hover {
    background: #5e56d8;
    border-color: #5e56d8;
}

.location-card {
    position: relative;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-info {
    border-top: 1px solid var(--border-color);
}

/* ----------------------------------------------------------------
    11. App Download Section
---------------------------------------------------------------- */
.app-wrapper {
    background: radial-gradient(circle at top right, rgba(118, 109, 244, 0.1), transparent);
}

.shape-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-soft);
    border-radius: 50%;
    z-index: 0;
}

/* ----------------------------------------------------------------
    12. Blog & News Section V4
---------------------------------------------------------------- */
.blog-section-v4 {
    background: #dddddd36;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
 

/* Abstract Background Shapes */
.blog-abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}

.blog-abstract-shape.shape-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
}

.blog-abstract-shape.shape-2 {
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 109, 244, 0.1) 0%, transparent 70%);
}

.blog-abstract-shape.shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 109, 244, 0.03) 0%, transparent 70%);
}

/* Section Title Decorative Lines */
.line-before, .line-after {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    vertical-align: middle;
}

/* Blog Card V4 */
.blog-card-v4 {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid #f0f0f0;
    z-index: 1;
}

.blog-card-v4:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(118, 109, 244, 0.15);
    border-color: transparent;
}

/* Blog Thumb */
.blog-thumb-v4 {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

.blog-card-v4:hover .blog-thumb-v4 img {
    transform: scale(1.1);
}

.blog-tag-v4 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(118, 109, 244, 0.3);
}

.blog-date-v4 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    min-width: 60px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card-v4:hover .blog-date-v4 {
    background: var(--primary-color);
    color: #fff;
}

.blog-read-time {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

/* Blog Info */
.blog-info-v4 {
    padding: 30px;
}

.blog-meta-v4 {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

.blog-meta-v4 i {
    color: var(--primary-color);
}

.blog-title-v4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-title-v4 a {
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.blog-card-v4:hover .blog-title-v4 a {
    color: var(--primary-color);
}

.blog-desc-v4 {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.blog-link-v4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link-v4 i {
    transition: transform 0.3s ease;
}

.blog-link-v4:hover i {
    transform: translateX(8px);
}

/* Featured Styling */
.blog-card-v4.featured {
    border-color: var(--primary-soft);
}

/* ----------------------------------------------------------------
    13. Footer Premium V3
---------------------------------------------------------------- */
.footer-premium-v3 {
    background-color: #0b0b0d;
    padding: 100px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Luxury Background Shapes */
.footer-v3-shapes .f-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
}

.footer-v3-shapes .shape-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.footer-v3-shapes .shape-2 {
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #27ae60 0%, transparent 70%);
}

.footer-v3-shapes .shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 109, 244, 0.05) 0%, transparent 70%);
}

/* Newsletter Top Bar */
.footer-newsletter-v3 {
    background: #161619;
    padding: 40px 60px;
    border-radius: 25px;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-newsletter-v3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary-color);
}

.newsletter-input-group {
    
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    position: relative;
    z-index: 1;
}

.newsletter-input-group .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding-left: 20px;
    padding: 15px 20px;
    padding-right: 245px;
}
.newsletter-input-group .form-control::placeholder {
    color: #fff;
}
.newsletter-input-group .form-control:focus {
    box-shadow: none;
}

.newsletter-input-group .btn-primary {
    border-radius: 12px;
    padding: 12px 58px;
    font-weight: 700;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
}

/* Footer Content */
.footer-widget-v3 {
    margin-bottom: 40px;
}

.widget-title-v3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

.widget-title-v3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links-v3 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-v3 li {
    margin-bottom: 15px;
}

.footer-links-v3 li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links-v3 li a i {
    font-size: 10px;
    margin-right: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-links-v3 li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links-v3 li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Box */
.contact-box-v3 {
    display: flex;
    align-items: center;
}

.contact-box-v3 .icon-v3 {
    width: 50px;
    height: 50px;
    background: rgba(118, 109, 244, 0.1);
    border: 1px solid rgba(118, 109, 244, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.contact-box-v3:hover .icon-v3 {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.contact-box-v3 .text-v3 span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
}

.contact-box-v3 .text-v3 p {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 16px;
}

/* Working Hours */
.working-hours-v3 .hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.working-hours-v3 .hour-item:last-child {
    border: none;
}

.working-hours-v3 .hour-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.working-hours-v3 .hour-item p {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.working-hours-v3 .hour-item p.closed {
    color: #ff4d4d;
}

/* Social Links */
.footer-social-v3 .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 12px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.footer-social-v3 .social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Bottom Nav */
.footer-bottom-nav-v3 li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-bottom-nav-v3 li a:hover {
    color: var(--primary-color);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* ----------------------------------------------------------------
    Breadcrumb Premium
---------------------------------------------------------------- */
.breadcrumb-area {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 45%, #f7f4ff 100%);
    border-top: 1px solid rgba(118, 109, 244, 0.08);
    border-bottom: 1px solid rgba(118, 109, 244, 0.08);
}

.breadcrumb-bg-layer {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(118, 109, 244, 0.16), transparent 36%),
        radial-gradient(circle at 78% 20%, rgba(99, 241, 255, 0.2), transparent 35%),
        radial-gradient(circle at 60% 75%, rgba(118, 109, 244, 0.14), transparent 40%);
    filter: blur(0.2px);
}

.breadcrumb-content-box {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(118, 109, 244, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(12, 22, 44, 0.08);
}

.breadcrumb-content-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--heading-color);
}

.breadcrumb-content-box .breadcrumb-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-content-box .breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 600;
}

.breadcrumb-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.crumb-shape {
    position: absolute;
    display: block;
}

.shape-orb {
    width: 130px;
    height: 130px;
    top: 14%;
    left: 8%;
    border-radius: 50%;
    background: linear-gradient(140deg, rgba(118, 109, 244, 0.5), rgba(118, 109, 244, 0.1));
    animation: floatOrb 8s ease-in-out infinite;
}

.shape-ring {
    width: 180px;
    height: 180px;
    right: 10%;
    top: 20%;
    border-radius: 50%;
    border: 2px dashed rgba(118, 109, 244, 0.35);
    animation: spinRing 16s linear infinite;
}

.shape-diamond {
    width: 50px;
    height: 50px;
    left: 28%;
    bottom: 22%;
    background: rgba(118, 109, 244, 0.2);
    transform: rotate(45deg);
    border-radius: 10px;
    animation: floatDiamond 7s ease-in-out infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    right: 24%;
    bottom: 18%;
    border-left: 26px solid transparent;
    border-right: 26px solid transparent;
    border-bottom: 44px solid rgba(18, 205, 255, 0.35);
    animation: floatTriangle 6.5s ease-in-out infinite;
}

.shape-dot-grid {
    width: 110px;
    height: 110px;
    left: 58%;
    top: 18%;
    opacity: 0.5;
    background-image: radial-gradient(rgba(118, 109, 244, 0.8) 2px, transparent 2px);
    background-size: 14px 14px;
    animation: pulseDots 4s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-16px) scale(1.06); }
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatDiamond {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-14px); }
}

@keyframes floatTriangle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulseDots {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.08); opacity: 0.75; }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .footer-newsletter-v3 {
        padding: 40px 30px;
    }

    .breadcrumb-content-box h2 {
        font-size: 38px;
    }

    .shape-ring {
        width: 130px;
        height: 130px;
    }
}

/* ----------------------------------------------------------------
    Animations & Preloader
---------------------------------------------------------------- */
.wow {
    visibility: visible !important;
    opacity: 1 !important; /* Ensure opacity is not zero as per user request */
}

#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}

.loader {
    width: 50px; height: 50px;
    border: 3px solid var(--primary-soft);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.scroll-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------------
    Blog Pagination - Modern
---------------------------------------------------------------- */
.pagination-modern {
    margin: 0;
}

.pagination-modern .page-item .page-link {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #e8eaf2;
    border-radius: 12px;
    background: #fff;
    color: #3d454e;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
}

.pagination-modern .page-item .page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(118, 109, 244, 0.16);
}

.pagination-modern .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 12px 24px rgba(118, 109, 244, 0.3);
}

.pagination-modern .page-item.disabled .page-link {
    opacity: 0.55;
    pointer-events: none;
}

/* ----------------------------------------------------------------
    15. Single Job Details Content Professional Styling
---------------------------------------------------------------- */
.job-details-content {
    line-height: 1.8;
    color: #4a4a4a;
    font-size: 16px;
}

.job-description-inner {
    font-family: var(--body-font, 'Inter', sans-serif);
}

.job-details-content h1, 
.job-details-content h2, 
.job-details-content h3, 
.job-details-content h4, 
.job-details-content h5, 
.job-details-content h6 {
    color: var(--heading-color);
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.job-details-content h1 { font-size: 2.2rem; }
.job-details-content h2 { font-size: 1.8rem; border-bottom: 2px solid var(--primary-soft); padding-bottom: 10px; }
.job-details-content h3 { font-size: 1.5rem; color: var(--primary-color); }
.job-details-content h4 { font-size: 1.25rem; }
.job-details-content h5 { font-size: 1.1rem; }
.job-details-content h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

.job-details-content p {
    margin-bottom: 1.5rem;
}

.job-details-content ul, 
.job-details-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.job-details-content ul {
    list-style: none;
}

.job-details-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.job-details-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
    font-size: 14px;
    background: var(--primary-soft);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.job-details-content ol {
    list-style: decimal;
}

.job-details-content ol li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.job-details-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
    transition: var(--transition);
}

.job-details-content a:hover {
    color: #5e56d8;
    border-bottom-style: solid;
}

.job-details-content strong, 
.job-details-content b {
    color: var(--heading-color);
    font-weight: 700;
}

.job-details-content blockquote {
    margin: 2rem 0;
    padding: 30px 40px;
    background: #f8f9ff;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 20px 20px 0;
    position: relative;
}

.job-details-content blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 0;
}

.job-details-content blockquote::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.05;
}

.job-details-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.job-details-content table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.job-details-content table th,
.job-details-content table td {
    padding: 15px 20px;
    border: 1px solid #eee;
    text-align: left;
}

.job-details-content table th {
    background-color: #f8f9ff;
    color: var(--heading-color);
    font-weight: 700;
}

.job-details-content table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Custom Buttons inside content */
.job-details-content .wp-block-button__link,
.job-details-content .btn-custom {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    margin: 10px 0;
}

.job-details-content .wp-block-button__link:hover,
.job-details-content .btn-custom:hover {
    background-color: #5e56d8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(118, 109, 244, 0.2);
}

/* ----------------------------------------------------------------
    16. Single Blog Content Professional Styling
---------------------------------------------------------------- */
.blog-standard-content .entry-content {
    line-height: 1.8;
    color: #4a4a4a;
    font-size: 16px;
    margin-top: 25px;
}

.blog-standard-content .entry-content h1, 
.blog-standard-content .entry-content h2, 
.blog-standard-content .entry-content h3, 
.blog-standard-content .entry-content h4, 
.blog-standard-content .entry-content h5, 
.blog-standard-content .entry-content h6 {
    color: var(--heading-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.blog-standard-content .entry-content h1 { font-size: 2.2rem; }
.blog-standard-content .entry-content h2 { font-size: 1.8rem; border-bottom: 2px solid var(--primary-soft); padding-bottom: 10px; }
.blog-standard-content .entry-content h3 { font-size: 1.5rem; color: var(--primary-color); }
.blog-standard-content .entry-content h4 { font-size: 1.25rem; }
.blog-standard-content .entry-content h5 { font-size: 1.1rem; }
.blog-standard-content .entry-content h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

.blog-standard-content .entry-content p {
    margin-bottom: 1.5rem;
}

.blog-standard-content .entry-content ul, 
.blog-standard-content .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.blog-standard-content .entry-content ul {
    list-style: none;
}

.blog-standard-content .entry-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.blog-standard-content .entry-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
    font-size: 12px;
    background: var(--primary-soft);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-standard-content .entry-content ol {
    list-style: decimal;
    padding-left: 20px;
}

.blog-standard-content .entry-content ol li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.blog-standard-content .entry-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
    transition: var(--transition);
}

.blog-standard-content .entry-content a:hover {
    color: #5e56d8;
    border-bottom-style: solid;
}

.blog-standard-content .entry-content strong, 
.blog-standard-content .entry-content b {
    color: var(--heading-color);
    font-weight: 700;
}

.blog-standard-content .entry-content blockquote {
    margin: 2.5rem 0;
    padding: 35px 45px;
    background: #f8f9ff;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 25px 25px 0;
    position: relative;
    overflow: hidden;
}

.blog-standard-content .entry-content blockquote p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.blog-standard-content .entry-content blockquote::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.06;
}

.blog-standard-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-standard-content .entry-content table {
    width: 100%;
    margin-bottom: 2.5rem;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}

.blog-standard-content .entry-content table th,
.blog-standard-content .entry-content table td {
    padding: 18px 22px;
    border: 1px solid #eee;
    text-align: left;
}

.blog-standard-content .entry-content table th {
    background-color: #f8f9ff;
    color: var(--heading-color);
    font-weight: 700;
}

/* Custom Buttons inside content */
.blog-standard-content .entry-content .wp-block-button__link,
.blog-standard-content .entry-content .btn-custom {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    margin: 15px 0;
    text-decoration: none !important;
}

.blog-standard-content .entry-content .wp-block-button__link:hover,
.blog-standard-content .entry-content .btn-custom:hover {
    background-color: #5e56d8;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(118, 109, 244, 0.25);
}

@media (max-width: 767px) {
    .blog-standard-content .entry-content {
        font-size: 15px;
    }
    .blog-standard-content .entry-content h1 { font-size: 1.8rem; }
    .blog-standard-content .entry-content h2 { font-size: 1.5rem; }
    .blog-standard-content .entry-content blockquote {
        padding: 25px 30px;
    }
}


/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Share Buttons */
.social-share-v3 {
    display: flex;
    gap: 12px;
}
.share-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff !important;
    font-size: 18px;
    transition: all 0.3s ease;
}
.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* Job Summary Widget */
.job-summary-list .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.job-summary-list .summary-item:last-child {
    border-bottom: none;
}
.summary-label {
    font-weight: 600;
    color: #444;
    font-size: 14px;
}
.summary-value {
    color: #777;
    font-size: 14px;
}

/* CTA Widget */
.widget-cta-premium {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}
.widget-cta-premium::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Benefits Styles */
.benefit-item {
    background: #fcfcfd;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 20px;
    min-width: 24px;
}


 

.pagination-modern .page-link.page-nav {
    padding: 0 18px;
    min-width: 110px;
    border-radius: 999px;
}

.pagination-modern .page-link.page-dots {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    min-width: 30px;
    color: #9aa3b2;
}

@media (max-width: 575.98px) {
    .pagination-modern .page-link.page-nav {
        min-width: 50px;
        padding: 0;
        font-size: 0;
    }

    .pagination-modern .page-link.page-nav i {
        font-size: 14px;
        margin: 0 !important;
    }

    .pagination-modern .page-item .page-link {
        min-width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 14px;
    }
}

/* ----------------------------------------------------------------
    Blog Standard Page
---------------------------------------------------------------- */
.blog-standard-section {
    background: #f9fafb;
}

.blog-standard-post {
    background: var(--white);
    border-radius: 26px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.blog-standard-thumb {
    position: relative;
}

.blog-standard-thumb img {
    width: 100%;
    min-height: 260px;
    object-fit: cover;
}

.blog-standard-badge {
    position: absolute;
    left: 24px;
    top: 24px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(118, 109, 244, 0.3);
}

.blog-standard-content {
    padding: 36px;
}

.blog-standard-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
}

.blog-standard-meta i {
    color: var(--primary-color);
    margin-right: 6px;
}

.blog-standard-content h3 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--heading-color);
}

.blog-standard-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.blog-standard-quote {
    border-left: 4px solid var(--primary-color);
    background: var(--primary-soft);
    color: var(--heading-color);
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    border-radius: 12px;
    padding: 22px 24px;
    margin: 28px 0;
}

.blog-sidebar {
    display: grid;
    gap: 22px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.sidebar-widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--heading-color);
}

.sidebar-search-form {
    position: relative;
}

.sidebar-search-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-height: 48px;
    padding-right: 50px;
    font-size: 14px;
}

.sidebar-search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(118, 109, 244, 0.12);
}

.sidebar-search-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--white);
    transition: var(--transition);
}

.sidebar-search-form button:hover {
    background: #5e56d8;
}

.sidebar-list li + li {
    margin-top: 10px;
}

.sidebar-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--heading-color);
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8f9ff;
    transition: var(--transition);
}

.sidebar-list li a:hover {
    color: var(--primary-color);
    background: var(--primary-soft);
    transform: translateX(2px);
}

.recent-post-list {
    display: grid;
    gap: 14px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recent-post-item img {
    width: 74px;
    height: 74px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-item h6 {
    margin: 0 0 4px;
    color: var(--heading-color);
    font-size: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

.recent-post-item span {
    font-size: 13px;
    color: var(--text-color);
}

.recent-post-item:hover h6 {
    color: var(--primary-color);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    background: #f3f4f6;
    border-radius: 999px;
    padding: 7px 14px;
    transition: var(--transition);
}

.tags-cloud a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.single-post-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    margin: 28px 0 24px;
}

.single-post-share h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.single-post-share-links {
    display: flex;
    gap: 10px;
}

/* ----------------------------------------------------------------
    Service Single Page Sidebar Styles
---------------------------------------------------------------- */

/* Sidebar Service List */
.sidebar-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-service-list li {
    margin-bottom: 8px;
}

.sidebar-service-list li a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: 12px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sidebar-service-list li a:hover,
.sidebar-service-list li a.active {
    background: var(--primary-soft);
    color: var(--primary-color);
    border-color: rgba(118, 109, 244, 0.2);
    transform: translateX(5px);
}

.sidebar-service-list li a i {
    font-size: 16px;
    width: 20px;
}

.sidebar-service-list li a .badge {
    font-size: 11px;
    padding: 4px 8px;
}

/* Sidebar CTA Widget */
.sidebar-cta-widget {
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(118, 109, 244, 0.05) 100%);
    border: 1px solid rgba(118, 109, 244, 0.15);
    border-radius: 20px;
}

.cta-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(118, 109, 244, 0.15);
}

.sidebar-cta-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
}

.sidebar-cta-widget .btn {
    border-radius: 10px;
    font-weight: 600;
}

.sidebar-cta-widget .btn-outline-primary {
    border-width: 2px;
}

/* Sidebar Download Widget */
.sidebar-download-widget {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
}

.download-item {
    margin-bottom: 12px;
}

.download-item:last-child {
    margin-bottom: 0;
}

.download-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: var(--light-gray);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.download-link:hover {
    background: var(--primary-soft);
    border-color: rgba(118, 109, 244, 0.2);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.download-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.download-info h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.download-link .fa-download {
    font-size: 14px;
    transition: var(--transition);
}

.download-link:hover .fa-download {
    transform: translateY(3px);
}

/* App Download List for Jobs Page */
.app-download-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-download-item {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    background: var(--light-gray);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.app-download-item:hover {
    background: var(--primary-soft);
    border-color: rgba(118, 109, 244, 0.2);
    color: var(--primary-color);
    transform: translateX(5px);
}

.app-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.app-download-item:hover .app-icon {
    background: var(--primary-color);
    color: #fff;
}

.app-info h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.app-download-item:hover .app-info h6 {
    color: var(--primary-color);
}

/* Jobs Page Sidebar CTA Icon */
.cta-icon-wrapper-v2 {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(118, 109, 244, 0.15);
}

/* Service Feature Items */
.service-feature-item {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-feature-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.service-feature-item h6 {
    font-weight: 700;
    color: var(--heading-color);
}

/* Service Benefits List */
.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.service-benefits-list li:last-child {
    border-bottom: none;
}

.service-benefits-list li i {
    font-size: 12px;
}

.single-post-share-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.single-post-share-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.single-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.single-post-nav-btn {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 16px;
    display: block;
    background: #f8f9ff;
}

.single-post-nav-btn span {
    display: block;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single-post-nav-btn strong {
    color: var(--heading-color);
    font-size: 15px;
    line-height: 1.4;
}

.single-post-nav-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-soft);
}

.comments-box,
.comment-form-box {
    margin-top: 26px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.comments-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.comment-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    border: 1px solid #edf0f7;
    border-radius: 14px;
    background: #fbfcff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
    margin-bottom: 12px;
}

.comment-item img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 8px 16px rgba(17, 24, 39, 0.08);
}

.comment-item-body {
    width: 100%;
}

.comment-item.is-reply {
    margin-left: 38px;
    background: var(--primary-soft);
    border-color: rgba(118, 109, 244, 0.2);
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 6px;
}

.comment-meta h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.comment-meta span {
    font-size: 13px;
    color: var(--text-color);
}

.comment-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.comment-reply-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

.comment-reply-btn:hover {
    color: #5e56d8;
}

.comment-form-box .form-control {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 14px;
}

.comment-form-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(118, 109, 244, 0.12);
}

/* ----------------------------------------------------------------
    14. Job Details Page Styles
---------------------------------------------------------------- */
.job-details-section {
    background: var(--light-gray);
    overflow: hidden;
}

.job-details-header {
    border: 1px solid var(--border-color);
}

.company-logo-lg img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.job-details-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
}

.job-meta-info {
    gap: 15px;
}

.meta-item {
    font-size: 14px;
    color: var(--text-muted);
}

.job-salary-lg {
    font-size: 22px;
    color: var(--primary-color);
}

.job-details-content {
    border: 1px solid var(--border-color);
}

.job-details-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
}

.job-responsibilities-list,
.job-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-responsibilities-list li,
.job-requirements-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
}

.job-responsibilities-list li:last-child,
.job-requirements-list li:last-child {
    border-bottom: none;
}

.job-responsibilities-list li i,
.job-requirements-list li i {
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-item {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.job-summary-list {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.summary-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--heading-color);
}

.related-jobs-section {
    overflow: hidden;
}

.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn i {
    margin-right: 10px;
    font-size: 16px;
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn.facebook:hover {
    background: #0d65d9;
    transform: translateX(5px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.twitter:hover {
    background: #0c85d0;
    transform: translateX(5px);
}

.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.share-btn.linkedin:hover {
    background: #006399;
    transform: translateX(5px);
}

.share-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.share-btn.whatsapp:hover {
    background: #1da851;
    transform: translateX(5px);
}

/* Job Apply Modal */
.job-apply-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.2);
}

.job-apply-modal .modal-header {
    padding: 28px 30px 16px;
    background: linear-gradient(180deg, rgba(118, 109, 244, 0.08) 0%, rgba(118, 109, 244, 0) 100%);
}

.job-apply-modal .modal-body {
    padding: 0 30px 30px;
}

.job-apply-modal-head h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
}

.job-apply-modal-chip {
    display: inline-flex;
    align-items: center;
    background: var(--primary-soft);
    color: var(--primary-color);
    border: 1px solid rgba(118, 109, 244, 0.25);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.job-apply-form .form-label {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.job-apply-form .form-control,
.job-apply-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--text-color);
    font-size: 15px;
    transition: var(--transition);
}

.job-apply-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.job-apply-form .form-control:focus,
.job-apply-form .form-select:focus,
.job-apply-form .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(118, 109, 244, 0.15);
}

.job-apply-form .form-control[type="file"] {
    padding: 10px 12px;
}

.job-apply-form .form-check-input {
    border-color: rgba(118, 109, 244, 0.4);
}

.job-apply-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.job-apply-modal-actions .btn {
    min-height: 48px;
}

/* Premium Modal Enhancements */
.premium-modal {
    z-index: 999999 !important;
}

.premium-modal .modal-content {
    border-radius: 24px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
}

.premium-modal .modal-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4f46e5 100%);
    border-radius: 24px 24px 0 0;
}

.modal-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.premium-modal .modal-title {
    font-size: 28px;
    letter-spacing: -0.5px;
}

.premium-input {
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    padding: 14px 20px;
    font-weight: 400;
    color: #1e293b;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.premium-input:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(118, 109, 244, 0.1);
    transform: translateY(-1px);
}

.form-label.fw-600 {
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    font-size: 15px;
}

.btn-premium-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4f46e5 100%);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-premium-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-premium-submit:hover::before {
    left: 100%;
}

.btn-premium-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(118, 109, 244, 0.3);
}

.custom-checkbox-premium .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.15em;
    cursor: pointer;
}

.premium-file-upload .premium-input {
    padding: 10px 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .premium-modal .modal-header {
        padding: 30px 25px;
    }
    .premium-modal .modal-body {
        padding: 30px 25px;
    }
    .premium-modal .modal-title {
        font-size: 22px;
    }
}

/* ----------------------------------------------------------------
    14. Services Page Styles
---------------------------------------------------------------- */

/* Services List Section */
.services-list-section {
    background-color: #fff;
    position: relative;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    z-index: 0;
}

.services-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.12;
}

.services-shape-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    top: -150px;
    right: -100px;
}

.services-shape-2 {
    width: 280px;
    height: 280px;
    background: #10B981;
    bottom: -100px;
    left: -80px;
}

/* Service Card Premium */
.service-card-premium {
    position: relative;
    padding: 45px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    z-index: 2;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card-premium .card-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.service-card-premium .card-border-animation::before,
.service-card-premium .card-border-animation::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid transparent;
    transition: all 0.6s ease;
}

.service-card-premium .card-border-animation::before {
    top: 0;
    left: 0;
}

.service-card-premium .card-border-animation::after {
    bottom: 0;
    right: 0;
}

.service-card-premium:hover .card-border-animation::before {
    width: 100%;
    height: 100%;
    border-color: var(--primary-color);
    border-radius: 20px;
}

.service-card-premium:hover .card-border-animation::after {
    width: 100%;
    height: 100%;
    border-color: var(--primary-color);
    border-radius: 20px;
}

.service-card-premium .card-content {
    position: relative;
    z-index: 2;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-soft);
    border-radius: 20px;
    z-index: -1;
    transition: var(--transition);
}

.service-card-premium:hover .service-icon-bg {
    background: var(--primary-color);
    transform: rotate(45deg) scale(0.85);
}

.service-card-premium:hover .service-icon-wrapper {
    color: #fff;
}

.service-card-premium h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    transition: var(--transition);
}

.service-card-premium:hover h4 {
    color: var(--primary-color);
}

.service-card-premium .btn-explore {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-card-premium .btn-explore i {
    font-size: 12px;
    transition: var(--transition);
}

.service-card-premium:hover .btn-explore i {
    transform: translateX(5px);
}

/* Why Services Section */
.why-services-section {
    background-color: var(--light-gray);
}

.why-services-content .choose-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.why-services-content .choose-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-services-visual .video-box-wrapper {
    position: relative;
}

.why-services-visual .video-img img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.why-services-visual .video-play-btn-v2 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-services-visual .play-btn-v2 {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.why-services-visual .play-btn-v2:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.why-services-visual .video-text {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--heading-color);
    box-shadow: var(--shadow-sm);
}

.why-services-visual .floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* CTA Section Premium */
.cta-section-premium {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 50%, #f7f4ff 100%);
    position: relative;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(118, 109, 244, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 241, 255, 0.12), transparent 35%);
    z-index: 1;
}

.cta-content-premium h2 {
    font-size: 42px;
    line-height: 1.2;
}

.cta-content-premium p {
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------------
    CTA New Section - Clean Premium Design
---------------------------------------------------------------- */
.cta-new-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f5f3ff 100%);
    position: relative;
}

.cta-new-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(118, 109, 244, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.cta-new-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(118, 109, 244, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.cta-new-wrapper {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-radius: 32px;
    padding: 60px 50px;
    box-shadow: 0 25px 80px rgba(118, 109, 244, 0.12);
    border: 1px solid rgba(118, 109, 244, 0.08);
}

.cta-new-icon {
    display: inline-block;
}

.cta-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5e56d8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(118, 109, 244, 0.35);
    animation: pulse-cta 3s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(118, 109, 244, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(118, 109, 244, 0.45);
    }
}

.cta-icon-circle i {
    font-size: 36px;
    color: #fff;
}

.cta-new-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(118, 109, 244, 0.1) 100%);
    color: var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(118, 109, 244, 0.15);
}

.cta-new-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-new-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-new-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-cta-main {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5e56d8 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(118, 109, 244, 0.3);
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(118, 109, 244, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #5e56d8 0%, var(--primary-color) 100%);
}

.btn-cta-outline {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
}

.btn-cta-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-soft);
    transform: translateY(-3px);
}

.cta-new-stats {
    border-top: 1px solid var(--border-color);
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.cta-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Service Card Responsive */
@media (max-width: 991px) {
    .service-card-premium {
        padding: 35px 25px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .service-card-premium h4 {
        font-size: 18px;
    }
    
    .cta-content-premium h2 {
        font-size: 34px;
    }
    
    .cta-content-premium p {
        font-size: 16px;
    }
    
    /* CTA V2 Responsive */
    .cta-section-v2 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    .cta-title-v2 {
        font-size: 38px;
    }
    
    .cta-desc-v2 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .service-card-premium {
        padding: 30px 20px;
    }
    
    .service-icon-wrapper {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .why-services-visual .video-play-btn-v2 {
        bottom: 20px;
        left: 20px;
    }
    
    .why-services-visual .play-btn-v2 {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .why-services-visual .video-text {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* CTA V2 Responsive */
    .cta-title-v2 {
        font-size: 32px;
    }
    
    .cta-btn-group-v2 {
        flex-direction: column;
    }
    
    .cta-btn-group-v2 .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-item-v2 {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .services-list-section .row.g-4 > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* CTA V2 Responsive */
    .cta-title-v2 {
        font-size: 28px;
    }
    
    .cta-desc-v2 {
        font-size: 15px;
    }
    
    .badge-pill-v2 {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    .btn-cta-primary-v2,
    .btn-cta-secondary-v2 {
        padding: 14px 24px !important;
    }
    
    .cta-btn-text {
        font-size: 14px !important;
    }
}

/* ----------------------------------------------------------------
    15. Error 404 Page Styles
---------------------------------------------------------------- */
.error-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    min-height: 700px;
    display: flex;
    align-items: center;
}

.error-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.error-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
}

.error-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -50px;
    left: -50px;
    animation: pulseShape 10s ease-in-out infinite alternate;
}

.error-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: #00d2ff;
    bottom: -100px;
    right: -100px;
    animation: pulseShape 12s ease-in-out infinite alternate-reverse;
}

.error-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-soft);
    top: 20%;
    right: 15%;
    filter: blur(60px);
    animation: moveShape 15s linear infinite;
}

.error-shape.shape-4 {
    width: 150px;
    height: 150px;
    background: #766df4;
    bottom: 30%;
    left: 20%;
    opacity: 0.1;
    animation: moveShape 20s linear infinite reverse;
}

@keyframes pulseShape {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, 30px); }
}

@keyframes moveShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.error-visual {
    position: relative;
    display: inline-block;
}

.error-badge-v2 {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.5rem;
    transform: rotate(-15deg);
    border: 5px solid #fff;
}

.error-search-form .form-control {
    padding-right: 60px;
}

.error-search-form .btn-primary {
    transition: all 0.3s ease;
}

.error-search-form .btn-primary:hover {
    transform: translateY(-50%) scale(1.1);
    background: #5e56d8;
}

@media (max-width: 767px) {
    .error-visual h1 {
        font-size: 6rem !important;
    }
    .error-badge-v2 {
        font-size: 1.1rem;
        padding: 8px 20px;
    }
}

/* ----------------------------------------------------------------
    /* ----------------------------------------------------------------
        16. Premium Auth Page Styles (Enhanced)
    ---------------------------------------------------------------- */
    .auth-section-premium {
        background: radial-gradient(circle at top left, #f8fafc 0%, #e2e8f0 100%);
        min-height: 80vh;
        display: flex;
        align-items: center;
        padding: 100px 0;
    }
    .auth-form-wrapper .nav-link:not(.dropdown-toggle):hover::after, .nav-link:not(.dropdown-toggle).active::after {
        display: none;
    }
    .auth-visual-floating-badge h6.mb-0.fw-bold {
        color: #fff;
    }

    .auth-abstract-shape {
        position: absolute;
        z-index: 0;
        opacity: 0.15;
        pointer-events: none;
        transition: transform 0.5s ease-out;
    }

    .auth-abstract-shape.shape-1 {
        top: -50px;
        right: -50px;
        width: 500px;
        height: 500px;
        background: var(--primary-color);
        border-radius: 50%;
        filter: blur(120px);
    }

    .auth-abstract-shape.shape-2 {
        bottom: -50px;
        left: -50px;
        width: 400px;
        height: 400px;
        background: var(--primary-color);
        border-radius: 50%;
        filter: blur(100px);
    }

    .auth-card-premium {
        background: #ffffff;
        border-radius: 32px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.12), 0 10px 30px -5px rgba(0, 0, 0, 0.04);
        position: relative;
        z-index: 1;
    }

    .auth-visual-premium {
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }

    .auth-visual-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.1);
        transition: transform 10s linear;
    }

    .auth-card-premium:hover .auth-visual-img {
        transform: scale(1.2);
    }

    .auth-visual-floating-badge {
        position: absolute;
        top: 40px;
        right: -20px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 15px 25px;
        border-radius: 20px;
        color: #fff;
        z-index: 2;
        animation: floating 3s ease-in-out infinite;
    }

    @keyframes floating {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .auth-visual-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
        z-index: 1;
    }

    .auth-visual-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 50px;
        color: #ffffff !important;
        z-index: 2;
    }

    .auth-visual-content h3, 
    .auth-visual-content p, 
    .auth-visual-content li {
        color: #ffffff !important;
    }

    .auth-visual-list li i {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Enhanced Tabs Design */
    .auth-tabs-premium {
        background: #f8fafc;
        padding: 8px;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        margin-bottom: 35px;
    }

    .auth-tabs-premium .nav-pills {
        gap: 5px;
    }

    .auth-tabs-premium .nav-pills .nav-link {
        color: #64748b;
        background: transparent;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .auth-tabs-premium .nav-pills .nav-link i {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .auth-tabs-premium .nav-pills .nav-link.active {
        color: var(--primary-color);
        background: #ffffff;
        border-color: #e2e8f0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .auth-tabs-premium .nav-pills .nav-link.active i {
        transform: scale(1.1);
        color: var(--primary-color);
    }

    .auth-tabs-premium .nav-pills .nav-link:hover:not(.active) {
        background: rgba(var(--primary-rgb), 0.05);
        color: var(--primary-color);
    }

    .auth-form-wrapper {
        background: radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.02) 0%, transparent 40%);
    }

    .auth-header-v2 h4 {
        color: #0f172a;
        letter-spacing: -0.5px;
    }

    .input-group-premium {
        position: relative;
    }

    .input-group-premium .form-control {
        height: 58px;
        padding: 0 25px;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        background: #ffffff;
        font-size: 15px;
        color: #1e293b;
        transition: all 0.3s ease;
    }

    .input-group-premium .form-control:focus {
        border-color: var(--primary-color);
        background: #ffffff;
        box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.08);
    }

    .form-label {
        color: #475569;
        font-weight: 600;
    }

    .btn-password-toggle {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #94a3b8;
        padding: 5px;
        z-index: 5;
        transition: color 0.3s ease;
    }

    .btn-password-toggle:hover {
        color: var(--primary-color);
    }

    .btn-primary-premium {
        height: 58px;
        background: var(--primary-color);
        border: none;
        border-radius: 100px;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 15px 30px -8px rgba(var(--primary-rgb), 0.4);
        transition: all 0.3s ease;
        width: 100%;
    }

    .btn-primary-premium:hover {
        background: #000; /* Darker version or brand secondary */
        transform: translateY(-3px);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
        color: #fff;
    }

    .auth-separator {
        display: flex;
        align-items: center;
        gap: 15px;
        color: #94a3b8;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .auth-separator::before,
    .auth-separator::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e2e8f0;
    }

    .social-btn-premium {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 54px;
        border-radius: 16px;
        border: 2px solid #e2e8f0;
        background: #ffffff;
        color: #1e293b;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        gap: 10px;
    }

    .social-btn-premium:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
        transform: translateY(-2px);
    }

    .custom-check .form-check-input {
        width: 1.2rem;
        height: 1.2rem;
        border-radius: 6px;
        border: 2px solid #e2e8f0;
        margin-top: 0.2em;
    }

    .custom-check .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    @media (max-width: 991px) {
        .auth-card-premium {
            border-radius: 24px;
        }
        .auth-form-wrapper {
            padding: 40px 25px !important;
        }
    }

    @media (max-width: 575px) {
        .auth-tabs-premium .nav-pills .nav-link {
            padding: 10px 15px;
            font-size: 14px;
        }
        .social-btn-premium {
            font-size: 13px;
        }
    }

        .social-btn-v4 {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid #e1e4e8;
            background: #fff;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            gap: 10px;
        }

        .social-btn-v4:hover {
            background: #f8f9fa;
            border-color: #ced4da;
        }

        .auth-divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 25px 0;
            color: #adb5bd;
            font-size: 14px;
        }

        .auth-divider::before, .auth-divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #eee;
        }

        .auth-divider:not(:empty)::before { margin-right: 15px; }
        .auth-divider:not(:empty)::after { margin-left: 15px; }

        @media (max-width: 575px) {
            .auth-form-wrap {
                padding: 25px 20px;
            }
        }
 
 

/* Premium Study Abroad Styles */
  

.study-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(118, 109, 244, 0.2);
    border: 1px solid rgba(118, 109, 244, 0.3);
    color: var(--study-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.about-img-premium {
    position: relative;
    z-index: 1;
}

.about-img-premium .main-img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about-img-premium:hover .main-img {
    transform: translateY(-10px);
}

.floating-stat-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    animation: float-y 4s infinite ease-in-out;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.study-level-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.study-level-card:hover {
    transform: translateY(-12px);
    border-color: var(--study-primary);
    box-shadow: var(--study-card-shadow);
}

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

.study-level-card:hover::before {
    transform: scaleX(1);
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .process-timeline::before { display: block; }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-icon-wrap {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 2px solid var(--study-primary);
    color: var(--study-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(118, 109, 244, 0.1);
}

.process-step:hover .step-icon-wrap {
    background: var(--study-primary);
    color: #fff;
    transform: rotateY(180deg);
}

.dest-grid-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
}

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

.dest-grid-card:hover img {
    transform: scale(1.1);
}

.dest-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    transition: all 0.4s ease;
}

.dest-grid-card:hover .dest-content-overlay {
    padding-bottom: 50px;
}

.cta-premium-wrap {
    background: linear-gradient(135deg, var(--study-primary), #5e56d8);
    border-radius: 40px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-premium-wrap::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .display-4 { font-size: 2.5rem; }
    .floating-stat-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
    .section-padding { padding: 60px 0; }
}