/* iTechie - Professional IT Solutions Theme Overrides */
:root {
    --bg-color: #ffffff;
    --surface-color: #f8f9fa;
    /* Global primary theme color (Sky Blue) */
    --primary-color: #2FA8FF;
    --primary-hover: #1E8FE0;
    --secondary-color: #ff5e14;
    --text-main: #1a1b1e;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 40px rgba(47, 168, 255, 0.22);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;

    --nav-height: 60px;
    --transition: all 0.3s ease-in-out;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #0e1133;
    font-weight: 700;
}

/* --- Header & Navigation --- */
.header-top {
    font-family: var(--font-heading);
}

.icon-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    border: 1px solid rgba(0, 68, 255, 0.2);
    font-size: 1.2rem;
    transition: var(--transition);
}

.info-text h6 {
    font-size: 0.95rem;
    color: #000;
}

.info-text small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-circle:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Top bar social brand colors */
.social-circle.social-facebook { background: #1877F2; }
.social-circle.social-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-circle.social-youtube { background: #FF0000; }
.social-circle.social-whatsapp { background: #25D366; }

.social-circle.social-facebook:hover,
.social-circle.social-instagram:hover,
.social-circle.social-youtube:hover,
.social-circle.social-whatsapp:hover {
    filter: brightness(0.95);
}

/* --- Projects Page --- */
.project-filter-btn {
    background: #fff;
    border: 1px solid #e9edf5;
    color: #0e1133;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px !important;
    margin: 6px;
    transition: var(--transition);
}

.project-filter-btn.active,
.project-filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.project-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    height: 320px;
    box-shadow: var(--card-shadow);
    transition: transform 250ms ease, box-shadow 250ms ease;
    text-decoration: none;
}

.project-thumb {
    position: absolute;
    inset: 0;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 450ms ease;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 9, 30, 0.92), rgba(3, 9, 30, 0.35), rgba(3, 9, 30, 0.15));
    z-index: 1;
}

.project-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    color: #fff;
}

.project-title {
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.project-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    max-width: 330px;
    margin-bottom: 0;
}

.project-cta {
    margin-top: 14px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
}

.project-card:hover .project-thumb img {
    transform: scale(1.10);
}

/* --- Project Details Page --- */
.project-detail-card {
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.project-detail-img {
    height: 420px;
    object-fit: cover;
}

.project-thumb-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 14px 14px;
}

.project-thumb-btn {
    border: 2px solid transparent;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    flex: 0 0 auto;
    width: 92px;
    height: 66px;
    opacity: 0.85;
    transition: var(--transition);
}

.project-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-thumb-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.project-thumb-btn.active,
.project-thumb-btn[aria-current="true"] {
    border-color: var(--primary-color);
    opacity: 1;
}

@media (max-width: 575px) {
    .project-detail-img {
        height: 280px;
    }
    .project-thumb-btn {
        width: 76px;
        height: 56px;
    }
}

.main-navbar {
    background-color: var(--primary-color);
}

.header-logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0e1133;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-navbar .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 15px 20px !important;
    font-family: var(--font-heading);
    font-size: 1rem;
    position: relative;
    opacity: 0.9;
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
    opacity: 1;
    background-color: var(--primary-hover);
}

.btn-get-started {
    background: #0b0f19;
    color: #fff;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 0;
    text-transform: capitalize;
    transition: var(--transition);
    border: none;
    margin-right: -12px;
}

.btn-get-started:hover {
    background: var(--secondary-color);
    color: #fff;
}

body {
    padding-top: 0 !important;
}

/* Hero Slider */
.hero-slide-img {
    height: 85vh;
    min-height: 600px;
    object-fit: cover;
}

.hero-title-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(14, 17, 51, 0.9), rgba(14, 17, 51, 0.4));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 25%;
}

.carousel-indicators button {
    background-color: var(--secondary-color) !important;
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-down {
    animation: fadeDown 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: fadeRight 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

/* Cards & Sections */
.glass-panel {
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

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

.home-about-padding {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.mono-heading {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255, 94, 20, 0.1);
    padding: 5px 15px;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: #fff;
}

/* --- Footer Brand Section (Blue) --- */
.footer-brands {
    background-color: var(--primary-color);
    padding: 50px 0;
    width: 100%;
}

.brand-item {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    opacity: 0.9;
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* --- Main Site Footer (Dark Navy) --- */
.site-footer {
    background: url('../assets/image/footer-bg.png') center/cover no-repeat;
    color: #a0a6bd;
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 9, 30, 0.92), rgba(3, 9, 30, 0.75));
    z-index: 0;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.site-footer h5 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-link-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.footer-link-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
    line-height: 1;
}

.footer-link {
    color: #a0a6bd;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social-link {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #03091e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Footer social brand colors */
.footer-social-link.social-facebook { background: #1877F2; color: #fff; }
.footer-social-link.social-whatsapp { background: #25D366; color: #fff; }
.footer-social-link.social-youtube { background: #FF0000; color: #fff; }
.footer-social-link.social-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }

.footer-social-link.social-facebook:hover,
.footer-social-link.social-whatsapp:hover,
.footer-social-link.social-youtube:hover,
.footer-social-link.social-instagram:hover {
    filter: brightness(0.95);
}

/* Footer Subscription Form */
.subscribe-form {
    position: relative;
    margin-bottom: 20px;
}

.subscribe-form .form-control {
    background: transparent !important;
    border: 1px solid #2a3042;
    color: #fff !important;
    padding: 15px 50px 15px 20px;
    border-radius: 5px;
}

.subscribe-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.subscribe-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Helper Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-white {
    background-color: #ffffff !important;
}

/* Expert Team Section - Index Page */
.expert-team-section {
    background: url('../assets/image/expert-team-bg.png') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.expert-team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 9, 30, 0.92), rgba(3, 9, 30, 0.65));
    z-index: 0;
}

.expert-team-section > .container {
    position: relative;
    z-index: 1;
}

.expert-team-carousel {
    padding-bottom: 60px; /* space for indicators */
}

.expert-team-carousel .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

.expert-team-carousel .carousel-indicators button {
    background-color: #fff !important;
    opacity: 0.45;
}

.expert-team-carousel .carousel-indicators .active {
    opacity: 1;
}

.expert-team-carousel .carousel-control-prev,
.expert-team-carousel .carousel-control-next {
    width: 48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.expert-team-carousel .carousel-control-prev-icon,
.expert-team-carousel .carousel-control-next-icon {
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

/* 5 cards in one row on xl screens */
@media (min-width: 1200px) {
    .expert-team-section .team-col-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1rem;
    padding: 0 15px;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    vertical-align: middle;
}

.section-subtitle::before {
    margin-right: 10px;
}

.section-subtitle::after {
    margin-left: 10px;
}

.team-card-wrapper {
    position: relative;
    margin-top: 60px;
    /* Space for popping image */
    padding-bottom: 20px;
    transition: transform 0.3s;
}

.team-card-wrapper:hover {
    transform: translateY(-10px);
}

/* The Blue Shape Container */
.team-card-shape {
    background-color: var(--primary-color);
    padding: 2px;
    /* Creates the border effect */
    clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
    position: relative;
    border-radius: 5px 5px 0 0;
}

/* The Inner Dark Content Box */
.team-card-inner {
    background-color: #060b15;
    /* Darker than section bg */
    clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
    padding: 70px 20px 50px 20px;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

/* The Popping Image */
.team-img-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    position: absolute;
    top: -55px;
    /* Half height to pop out */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.team-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: #a0a6bd;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Social Icons */
.team-socials {
    margin-top: 15px;
}

.team-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    margin: 0 4px;
    font-size: 0.8rem;
    transition: 0.3s;
    text-decoration: none;
}

/* --- Hero Overlap Cards --- */
.hero-overlap-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    /* Pull up to overlap hero */
    margin-bottom: 80px;
}

.hero-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.hero-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--secondary-color);
}

.hero-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- About Section (Circle Masks) --- */
.shape-image-group {
    position: relative;
    padding-left: 30px;
}

.circle-shape-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: #f4f7fa;
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.img-mask-1 {
    border-radius: 50%;
    overflow: hidden;
    width: 300px;
    height: 300px;
    border: 10px solid #fff;
    box-shadow: var(--card-shadow);
    margin-left: 50px;
}

.img-mask-2 {
    border-radius: 50%;
    overflow: hidden;
    width: 220px;
    height: 220px;
    border: 8px solid #fff;
    box-shadow: var(--card-shadow);
    position: absolute;
    bottom: -30px;
    left: 0;
}

/* About images hover effect */
.img-mask-1,
.img-mask-2 {
    transition: transform 250ms ease, box-shadow 250ms ease;
    will-change: transform;
}

.img-mask-1 img,
.img-mask-2 img {
    transition: transform 450ms ease, filter 450ms ease;
    will-change: transform;
}

.img-mask-1:hover,
.img-mask-2:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(11, 15, 25, 0.18);
}

.img-mask-1:hover img,
.img-mask-2:hover img {
    transform: scale(1.08);
    filter: saturate(1.05) contrast(1.05);
}

/* --- Service Grid --- */
.services-bg-section {
    position: relative;
    background: url('../assets/image/service-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.services-bg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 15, 25, 0.78), rgba(11, 15, 25, 0.55));
    z-index: 0;
}

.services-bg-section > .container {
    position: relative;
    z-index: 1;
}

.services-bg-section .display-5,
.services-bg-section .text-center {
    color: #fff;
}

.services-bg-section .mono-heading {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.services-bg-section .service-box-item {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.08);
}

.services-bg-section .service-box-item:hover {
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.service-box-item {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #f0f0f5;
    text-align: center;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-box-item:hover {
    box-shadow: var(--hover-shadow);
    border-color: transparent;
    transform: translateY(-8px);
}

.sb-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(0, 68, 255, 0.1);
    color: var(--primary-color);
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

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

.sb-read-more {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
}

.sb-read-more i {
    margin-left: 5px;
    transition: 0.3s;
}

.sb-read-more:hover i {
    margin-left: 10px;
    color: var(--secondary-color);
}

/* --- Why Choose Us images --- */
.why-choose-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 250ms ease, box-shadow 250ms ease;
    will-change: transform;
}

.why-choose-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 450ms ease, filter 450ms ease;
    will-change: transform;
}

.why-choose-img-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(11, 15, 25, 0.18);
}

.why-choose-img-wrap:hover .why-choose-img {
    transform: scale(1.07);
    filter: saturate(1.05) contrast(1.05);
}

/* --- Progress / Choose Us --- */
.progress-item {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #0e1133;
}

.progress-bar-custom {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    width: 0;
    transition: width 1.5s ease-in-out;
}

/* --- Stats Counter --- */
.stats-bar {
    position: relative;
    background: url('../assets/image/stats-bg.png') center/cover no-repeat;
    padding: 60px 0;
    color: #fff;
}

.stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 15, 25, 0.78), rgba(11, 15, 25, 0.55));
    z-index: 0;
}

.stats-bar > .container {
    position: relative;
    z-index: 1;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* --- Pricing --- */
.pricing-card {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f5;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.pricing-header {
    background: var(--primary-color);
    color: #fff;
    padding: 30px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.pricing-body {
    padding: 40px 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* --- Blog --- */
.blog-card {
    border: none;
    transition: var(--transition);
    margin-bottom: 30px;
}

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

.blog-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.blog-img img {
    width: 100%;
    transition: 0.5s;
    object-fit: cover;
}

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

.blog-meta span {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 15px;
}

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

.blog-title {
    font-size: 1.25rem;
    margin: 10px 0;
}

.blog-title a {
    color: #0e1133;
    text-decoration: none;
    transition: 0.3s;
}

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

/* --- FAQ & Form Section --- */
.bg-light-blue {
    background-color: #f4f8ff;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.faq-accordion .accordion-button {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    color: #0e1133;
    font-weight: 600;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}

.quote-form-card {
    background: #fff;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border-radius: 10px;
}

/* --- Portfolio Page --- */
.portfolio-filter-btn {
    background: transparent;
    border: 1px solid #e5e5e5;
    color: var(--text-muted);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    margin: 0 5px;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 168, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

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

/* Brands Section Customization for Portfolio Page (Light Theme) */
.brand-section-light {
    padding: 80px 0;
    background: #f9f9f9;
}

.brand-section-light .brand-item {
    color: #999;
    /* Gray icons */
}

.brand-section-light .brand-item:hover {
    color: var(--primary-color);
    transform: none;
    /* remove lift if desired, or keep it */
}

/* Blue CTA Section */
.blue-cta-section {
    background: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.blue-cta-section.team-cta-bg {
    background: url('../assets/image/team-cta-bg.png') center/cover no-repeat;
}

.blue-cta-section.contact-cta-bg {
    background: url('../assets/image/contact-cta-bg.png') center/cover no-repeat;
}

.blue-cta-section.team-cta-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 9, 30, 0.88), rgba(3, 9, 30, 0.55));
    z-index: 0;
}

.blue-cta-section.contact-cta-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 9, 30, 0.88), rgba(3, 9, 30, 0.55));
    z-index: 0;
}

.blue-cta-section.team-cta-bg > .container {
    position: relative;
    z-index: 1;
}

.blue-cta-section.contact-cta-bg > .container {
    position: relative;
    z-index: 1;
}

.blue-cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blue-cta-section .btn-dark {
    background: #0b0f19;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

/* --- Team Page --- */
.team-grid-card {
    background: #f4f7fa;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.team-grid-card:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    /* Ensure shadow-lg or hover-shadow is defined, usually --hover-shadow from root */
    transform: translateY(-5px);
}

.team-grid-img {
    position: relative;
    overflow: hidden;
    height: 300px;
    /* Fixed height for uniformity */
}

.team-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border: 2px solid #ffffff;
}

/* Blue overlay on hover */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 96, 255, 0.9);
    /* Primary color opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.team-grid-card:hover .team-overlay {
    opacity: 1;
}

/* Specific card style for the "blue card" variant if needed, 
   but the image shows hover effect turning it blue or active state.
   Let's assume the hover effect covers the image area. 
*/

.team-social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: var(--transition);
    text-decoration: none;
}

.team-social-links a:hover {
    background: #0b0f19;
    color: #fff;
}

.team-info {
    padding: 25px 15px;
}

.team-info h4 {
    color: #0e1133;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Skills Section */
.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0e1133;
    font-size: 0.9rem;
}

.skill-progress {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

/* --- Contact Page --- */
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f0f5;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    border-color: rgba(0, 96, 255, 0.35);
}

.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 96, 255, 0.2);
}

.contact-callout-card {
    /* Sky-blue rounded rectangle */
    background: #2FA8FF;
    color: #fff;
    border-radius: 16px;
    padding: 26px 24px;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 35px rgba(47, 168, 255, 0.30);
    transition: var(--transition);
}

.contact-callout-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 50px rgba(47, 168, 255, 0.42);
}

@media (max-width: 575px) {
    .contact-callout-card {
        font-size: 22px;
        padding: 20px 16px;
    }
}

.login-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e9edf5;
    overflow: visible; /* avoid inner scrollbar */
}

@media (max-width: 575px) {
    .login-card {
        padding: 28px 20px;
    }
}

/* Contact page map + form layout (stable, no overlay) */
.contact-map-layout .contact-map-box {
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    height: 100%;
}

.contact-map-layout .contact-map-iframe {
    width: 100%;
    height: 520px;
    border: none;
    filter: grayscale(100%);
    display: block;
}

.contact-map-layout .contact-form-card {
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    padding: 32px;
    height: 100%;
}

@media (max-width: 991px) {
    .contact-map-layout .contact-map-iframe {
        height: 360px;
    }

    .contact-map-layout .contact-form-card {
        padding: 26px 20px;
    }
}

/* Contact page map + overlay form (matches modern "map background" layout) */
.contact-map-overlay-section {
    padding: 0;
    background: #fff;
}

.contact-map-overlay {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.contact-map-overlay-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    display: block;
}

.contact-map-overlay-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: min(460px, 92vw);
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    padding: 32px;
    z-index: 2;
}

@media (max-width: 991px) {
    .contact-map-overlay {
        min-height: auto;
    }

    .contact-map-overlay-iframe {
        position: relative;
        height: 360px;
    }

    .contact-map-overlay-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 18px auto 0;
        width: calc(100% - 24px);
        max-width: 620px;
        padding: 26px 20px;
    }
}

.page-header-area {
    background: linear-gradient(rgba(3, 9, 30, 0.85), rgba(3, 9, 30, 0.85)), url('../assets/image/page-header-bg.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    text-align: center;
}

.breadcrumb-custom {
    display: inline-flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    margin-top: 15px;
}

.breadcrumb-custom .breadcrumb-item,
.breadcrumb-custom .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Video / CTA Section --- */
.video-cta-section {
    background: linear-gradient(rgba(3, 9, 30, 0.9), rgba(3, 9, 30, 0.7)), url('../assets/slider-2.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 120px 0;
    color: #fff;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: ripple 1.5s linear infinite;
    transition: 0.3s;
}

.video-play-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

/* --- Testimonials --- */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 20px 10px;
    border: 1px solid #f0f0f5;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.client-rating {
    color: #ffb100;
    margin-bottom: 15px;
}

/* --- Stats Counter Box (New Style) --- */
.counter-box-blue {
    background: var(--primary-color);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

/* =========================
   Admin Dashboard (Custom)
   ========================= */
.admin-body {
    background: #f4f7fb;
}

.admin-shell {
    min-height: 100vh;
    display: flex;
    background: #f4f7fb;
}

.admin-sidebar {
    width: 260px;
    /* Match sample: dark gray sidebar */
    background: #3f454d;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.admin-brand {
    padding: 16px 16px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(47, 168, 255, 0.18);
}

.admin-nav {
    padding: 10px 0;
    display: grid;
    gap: 2px;
}

.admin-nav-link {
    appearance: none;
    border: none;
    width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: none;
}

.admin-nav-link.active {
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    border-left: 4px solid var(--primary-color);
    box-shadow: none;
}

.admin-logout-btn {
    cursor: pointer;
}

.admin-nav-icon {
    width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.admin-nav-link.active .admin-nav-icon,
.admin-nav-link:hover .admin-nav-icon {
    color: #fff;
}

.admin-nav-text {
    flex: 1;
}

.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-topbar {
    height: 62px;
    background: #fff;
    border-bottom: 1px solid #e9edf5;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-page-title {
    font-weight: 800;
    color: #0e1133;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1.1;
}

.admin-topbar-meta {
    font-size: 0.8rem;
    color: #5b6472;
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

.admin-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0b0f19;
    color: #fff;
    border: 0;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.admin-user-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.admin-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.admin-user-text {
    display: grid;
    line-height: 1.05;
    text-align: left;
}

.admin-user-welcome {
    font-size: 0.75rem;
    opacity: 0.85;
}

.admin-user-name {
    font-size: 0.9rem;
    font-weight: 800;
}

.admin-user-menu {
    border-radius: 12px;
    border: 1px solid #e9edf5;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 220px;
}

.admin-user-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
}

.admin-user-menu .dropdown-item:hover {
    background: rgba(47, 168, 255, 0.12);
}

.admin-meta-label {
    opacity: 0.9;
}

.admin-meta-value {
    font-weight: 800;
    color: #0e1133;
}

.admin-content {
    padding: 18px;
}

.admin-footer {
    margin-top: auto;
    background: #0b0f19;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-footer-inner {
    padding: 12px 18px;
    text-align: center;
    font-weight: 700;
    font-size: 10px;
}

.admin-content-inner {
    max-width: 1100px;
}

.admin-card {
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.admin-card-body {
    padding: 18px;
}

.admin-badge {
    background: rgba(47, 168, 255, 0.15);
    color: #0e1133;
    border: 1px solid rgba(47, 168, 255, 0.35);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Admin datatable header bar (sky blue like sample) */
.datatable-card-header {
    background: var(--primary-color);
    padding: 14px 18px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Admin project image upload UI (preview cards) */
.admin-image-card {
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.admin-image-thumb {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 991px) {
    .admin-sidebar {
        width: 220px;
    }
}

@media (max-width: 767px) {
    .admin-shell {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
    }
    .admin-topbar {
        position: relative;
    }
    .admin-topbar-right {
        display: none;
    }
}