/********** ProfitBridge - Modern Startup & IT Solutions CSS **********/
:root {
    --primary: #06A3DA;
    --primary-rgb: 6, 163, 218;
    --primary-dark: #0582af;
    --secondary: #34AD54;
    --secondary-rgb: 52, 173, 84;
    --light: #EEF9FF;
    --dark: #091E3E;
    --dark-rgb: 9, 30, 62;
    --dark-card: #0c254c;
    --gray-text: #6c757d;
    --border-color: rgba(6, 163, 218, 0.15);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #555555;
    background-color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

a:hover {
    color: var(--primary-dark);
}

/* Spinner Loader */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-border-custom {
    width: 3.5rem;
    height: 3.5rem;
    border: 4px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Buttons */
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    padding: 10px 24px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.35);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #2b9145;
    border-color: #2b9145;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 173, 84, 0.35);
}

.btn-dark {
    background-color: var(--dark);
    border-color: var(--dark);
    color: #FFFFFF;
}

.btn-dark:hover {
    background-color: #06152c;
    border-color: #06152c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 30, 62, 0.4);
}

.btn-outline-light:hover {
    background-color: #FFFFFF;
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-square {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Topbar */
.topbar {
    font-size: 14px;
    background-color: #06152c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
    color: #d1d9e6;
}

.topbar a:hover {
    color: var(--primary);
}

/* Navbar */
.navbar {
    transition: var(--transition);
    background-color: var(--dark);
}

.navbar-brand {
    color: #FFFFFF !important;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.3px;
    color: #FFFFFF !important;
    margin: 0;
}

.brand-title span,
.navbar-brand span {
    color: var(--primary);
}

.brand-slogan {
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-top: 3px;
    line-height: 1;
}

.brand-logo-img {
    width: 75px;
    height: 75px;
    max-height: 75px;
    max-width: 75px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    transition: transform 0.5s ease;
}

.footer-brand {
    cursor: default;
}

.navbar-brand:hover .brand-logo-img,
.footer-brand:hover .brand-logo-img,
footer h1:hover .brand-logo-img,
.footer h1:hover .brand-logo-img {
    transform: rotate(90deg);
}

.navbar-nav .nav-link {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #e4eaf3 !important;
    padding: 25px 15px;
    position: relative;
    transition: var(--transition);
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    background-color: rgba(9, 30, 62, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 10px 0;
    background: #FFFFFF;
    margin-top: 0;
}

.dropdown-item {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--light);
    color: var(--primary);
    padding-left: 25px;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease forwards;
    }
}

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

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

/* Hero Carousel */
.hero-header {
    position: relative;
    background: var(--dark);
}

.carousel-item {
    min-height: 550px;
    max-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 30, 62, 0.88) 0%, rgba(9, 30, 62, 0.65) 100%);
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.carousel-caption h5 {
    letter-spacing: 2px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(6, 163, 218, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 25px;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
}

/* Page Header (Subpages) */
.page-header {
    background: linear-gradient(135deg, rgba(9, 30, 62, 0.92) 0%, rgba(6, 163, 218, 0.8) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1600&auto=format&fit=crop') center center no-repeat;
    background-size: cover;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #FFFFFF;
}

.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: #eef9ff;
    font-weight: 600;
}

.page-header .breadcrumb-item.active {
    color: var(--primary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Section Title */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title h5 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
}

.section-title h1 {
    font-size: 36px;
    margin-bottom: 0;
    line-height: 1.25;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Fact Stats Box */
.facts-card {
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.facts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(6, 163, 218, 0.15);
    border-color: var(--border-color);
}

.facts-icon {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    background: var(--primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.facts-card:hover .facts-icon {
    background: var(--dark);
    transform: rotate(6deg) scale(1.05);
}

.facts-card h1 {
    font-size: 34px;
    color: var(--dark);
    margin-bottom: 2px;
}

.facts-card h4 {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

/* About Section */
.about-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--primary);
    color: #FFFFFF;
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 163, 218, 0.4);
}

.experience-badge h2 {
    color: #FFFFFF;
    font-size: 36px;
    margin-bottom: 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-feature-item i {
    color: var(--primary);
    font-size: 18px;
    margin-right: 12px;
}

.about-contact-box {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 6px 6px 0;
}

/* Services */
.service-item {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
    z-index: 0;
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(6, 163, 218, 0.2);
}

.service-item>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: #FFFFFF;
    color: var(--primary);
}

.service-item h4 {
    transition: var(--transition);
    font-size: 20px;
    margin-bottom: 15px;
}

.service-item p {
    color: #666666;
    transition: var(--transition);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-item:hover h4,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item:hover .service-btn {
    background: #FFFFFF;
    color: var(--primary);
    transform: translateX(5px);
}

/* Why Choose Us & Features */
.feature-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    background: var(--primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

/* Portfolio & Projects */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.portfolio-filter-btn {
    background: var(--light);
    color: var(--dark);
    border: none;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(6, 163, 218, 0.3);
}

.project-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.project-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 30, 62, 0.92) 0%, rgba(9, 30, 62, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover img {
    transform: scale(1.08);
}

.project-overlay h5 {
    color: #FFFFFF;
    margin-bottom: 5px;
}

.project-overlay span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

/* Pricing Plans */
.pricing-switch-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.switch-label {
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
}

.pricing-plan-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-plan-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(6, 163, 218, 0.2);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.pricing-plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 18px 45px rgba(6, 163, 218, 0.18);
}

.pricing-price {
    margin: 25px 0;
}

.pricing-price h1 {
    font-size: 44px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 0;
}

.pricing-price small {
    color: var(--gray-text);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 12px;
    font-size: 16px;
}

.pricing-features li i.fa-check {
    color: var(--secondary);
}

.pricing-features li i.fa-times {
    color: #dc3545;
}

/* Free Quote / ROI Calculator */
.quote-section {
    background: linear-gradient(135deg, rgba(9, 30, 62, 0.95) 0%, rgba(9, 30, 62, 0.85) 100%), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=1600&auto=format&fit=crop') center center no-repeat;
    background-size: cover;
    color: #FFFFFF;
    padding: 80px 0;
}

.quote-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 35px;
}

.calculator-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    color: var(--dark);
}

/* Team Members */
.team-item {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
}

.team-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(6, 163, 218, 0.18);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
}

.team-avatar-wrap {
    padding: 35px 20px 25px;
    background: linear-gradient(180deg, rgba(6, 163, 218, 0.08) 0%, rgba(238, 249, 255, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.team-avatar-circle {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    box-shadow: 0 10px 25px rgba(6, 163, 218, 0.25);
    border: 4px solid #FFFFFF;
    transition: var(--transition);
    user-select: none;
}

.team-item:hover .team-avatar-circle {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 35px rgba(6, 163, 218, 0.35);
}

.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 32px;
    height: 32px;
    background: #091E3E;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 2px solid #FFFFFF;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Member-specific Avatar Gradients */
.avatar-theme-1 {
    background: linear-gradient(135deg, #06A3DA 0%, #0056b3 100%);
}

.avatar-theme-2 {
    background: linear-gradient(135deg, #7928CA 0%, #FF0080 100%);
}

.avatar-theme-3 {
    background: linear-gradient(135deg, #06A3DA 0%, #34AD54 100%);
}

.avatar-theme-4 {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}

.avatar-theme-5 {
    background: linear-gradient(135deg, #F7971E 0%, #FFD200 100%);
}

.avatar-theme-6 {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.avatar-theme-7 {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
}

.avatar-theme-8 {
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
}

.team-social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 30, 62, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    backdrop-filter: blur(2px);
    transition: var(--transition);
}

.team-item:hover .team-social-overlay {
    opacity: 1;
}

.team-info {
    padding: 20px;
    background: #FFFFFF;
}

.team-info h4 {
    margin-bottom: 4px;
    font-size: 19px;
}

.team-info span {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Testimonials */
.testimonial-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 10px;
    position: relative;
}

.testimonial-client {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testimonial-client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

/* Blog Cards */
.blog-item {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(6, 163, 218, 0.15);
}

.blog-img-wrap {
    position: relative;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-item:hover .blog-img-wrap img {
    transform: scale(1.08);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.blog-content h4 {
    font-size: 19px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h4 a {
    color: var(--dark);
}

.blog-content h4 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}


/* Footer */
.footer {
    background: #06142a;
    color: #a0aec0;
    padding-top: 80px;
    font-size: 15px;
}

.footer h1 {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer h4 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.footer a {
    color: #a0aec0;
    display: inline-block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF !important;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-bottom: 0 !important;
}

.footer-social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    margin-top: 60px;
    font-size: 14px;
}

/* Back to top */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.4);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--dark);
    transform: translateY(-4px);
}

/* Search Modal */
.search-modal .modal-content {
    background: rgba(9, 30, 62, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.search-modal .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 15px 25px;
    font-size: 18px;
}

.search-modal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-modal .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .carousel-item {
        min-height: 450px;
    }

    .carousel-caption h1 {
        font-size: 32px;
    }

    .pricing-plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 575.98px) {
    .brand-logo-img {
        width: 70px;
        height: 70px;
        max-width: 70px;
        max-height: 70px;
    }
}