﻿@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');


/* ============== Default Element Style ================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #4B4B4B;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Instrument Sans", sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #4b4b4b;
}

h1, .h1 {
    font-size: 64px;
    font-weight: 800;
}

h2, .h2 {
    font-size: 42px;
    font-weight: 800;
}

h3, .h3 {
    font-size: 32px;
    font-weight: 600;
}

h4, .h4 {
    font-size: 25px;
    font-weight: 500;
}

h5, .h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px
}

h6, .h6 {
    font-size: 18px;
    font-weight: 500;
}

p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #444;
}

a {
    color: #336699;
    text-decoration: none;
    transition: color .3s ease-in-out;
}

    a:hover, a:focus {
        color: #03478a;
    }

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.padding-tb {
    padding: 100px 0;
}

.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}

.text-blue {
    color: #003A9E;
}

.text-blue-light {
    color: #D8EFFF;
}

.bg-blue {
    background: #003A9E;
}

.bg-light-blue {
    background: #D8EFFF;
}

.btn-theme {
    background-color: #064cb5;
    color: #fff;
    padding: 12px 22px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 400;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s;
}

    .btn-theme:hover, .btn-theme:focus {
        background-color: #053a8d;
        color: #fff;
        outline: none;
    }

.btn-theme-light {
    background-color: #e6f2ff;
    color: #333;
    padding: 8px 10px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 400;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s,color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-theme-light:hover, .btn-theme-light:focus {
        background-color: #cce6ff;
        color: #064cb5;
        outline: none;
    }

.btn-theme-white {
    background-color: #fff;
    color: #000;
    padding: 12px 22px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 400;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s;
}

    .btn-theme-white:hover, .btn-theme:focus {
        background-color: #053a8d;
        color: #fff;
        outline: none;
    }

@media(max-width:1200px) {
    h1, .h1 {
        font-size: 50px;
    }
}



/* Tablet (≤1024px) */
@media(max-width:1024px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }
}

/* Mobile (≤768px) */
@media(max-width:768px) {
    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .padding-tb {
        padding: 50px 0;
    }

    .padding-top {
        padding-top: 50px;
    }

    .padding-bottom {
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 186px;
    }
}

@media (max-width: 992px) {
    .navbar-nav .nav-link {
        border-bottom: 1px solid #dbdbdb;
    }
}


#footer {
    background: #2E2E2E;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #064cb5;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s;
    background-color: #fff;
}

    .social-icon:hover {
        transform: scale(1.1);
    }

.bg-footer {
    background-image: url('../images/bg-footer.png'); /* replace with your actual image path */
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

footer .logo {
    width: 280px;
}

#hero-section {
    background: url("../images/coding-the-future-together.png") no-repeat center center;
    background-size: cover;
    position: relative;
    margin-top: 93px;
    min-height: 100vh; /* better than fixed height */
    padding-top: 96px;
}

    #hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.4); /* dark overlay */
        z-index: 1;
    }

    #hero-section .container-lg {
        position: relative;
        z-index: 2; /* keep content above overlay */
    }

.badge-blue {
    background: #D8EFFF;
    color: #003A9E;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
}

@media (max-width: 768px) {
    #hero-section {
        background: #222222;
        padding-top: 50px;
        margin-top: 65px;
        min-height: auto;
    }

        #hero-section::before {
            display: none; /* no overlay on mobile */
        }
}

@media (max-width: 415px) {

    .badge-blue {
        font-size: 14px;
        padding: 10px 7px;
        text-align: center;
    }
}

@media (max-width: 320px) {

    .badge-blue {
        display: block;
        font-size: 14px;
        padding: 10px 7px;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .mw_80 {
        max-width: 75vw;
        margin: auto;
    }

        .mw_80.row {
            margin-left: auto !important;
            margin-right: auto !important;
        }
}

#client img {
    height: 80px;
    object-fit: contain
}

.bg_grey {
    background: #2E2E2E;
}

.bg_blue_image {
    background: url("../images/bg_blue_image.png") no-repeat bottom left;
    background-size: cover;
}

.mt_neg_contact {
    margin-top: -140px;
}

.me_5 {
    margin-right: 60px;
}

@media (max-width: 992px) {
    .me_5 {
        margin-right: 10px;
        margin-left: 10px;
    }

    .mt_neg_contact {
        margin-top: 0px;
    }
}

#career {
    background: url("../images/growing-team-at-the-peacock-online.png") no-repeat 65%;
    background-size: cover;
}

.custom-underline {
    text-decoration: none; /* reset default */
}

    .custom-underline span {
        text-decoration: underline;
        text-decoration-thickness: 1.5px;
        text-underline-offset: 3px;
        display: inline; /* keeps arrow underlined */
    }

#career {
    padding-bottom: 160px
}

#career-box {
    margin-top: -150px;
}

@media (max-width: 992px) {
    #career {
        background: #D8EFFF;
    }
}

@media (max-width: 768px) {
    .contact-section .list-unstyled img {
        width: 30px;
        height: 30px;
    }
}

#core-services {
    background: url("../images/bg-core-services.png") no-repeat center;
    background-size: cover;
}

#services-lists {
    background: url("../images/patterns-servicess.png") no-repeat left top;
    background-size: 60% auto;
}

.card-services {
    background: #4B4B4B;
    height: 100%;
    padding: 30px 15px;
    border-radius: 10px;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
    height: auto !important; /* prevent inline height conflicts */
    justify-content: center;
}

.owl-carousel .item {
    flex: 1 0 auto;
    display: flex;
    align-items: stretch;
}

.icon_circle {
    width: 25px !important;
    height: 25px;
}

#core-services .btn_service {
    background: #4B4B4B;
    padding: 10px 80px;
    width: fit-content;
    text-align: center;
    margin: auto;
}



.lines_top {
    position: relative;
    padding-top: 50px; /* create space for V + line */
}

    .lines_top::before {
        content: "";
        position: absolute;
        top: 10px; /* push line down a bit */
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 40px;
        background-color: #4B4B4B; /* make sure visible */
        z-index: 2;
    }

    .lines_top::after {
        content: "";
        position: absolute;
        top: 8px; /* sits above the line */
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 16px solid #4B4B4B;
        z-index: 3;
    }

.core-services-1 .lines_top::after {
    top: -1px;
}

.core-services-1 .lines_top::before {
    top: 8px;
    height: 45px;
}

.btn_service {
    position: relative;
}

    .btn_service::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        height: 10px;
        background-color: #4b4b4b;
        width: calc(99vw - var(--scrollbar-width, 0px));
        left: 50%;
        transform: translateX(-50%);
    }

.owl-prev, .owl-next {
    background: unset;
    border: unset;
}

    .owl-prev img, .owl-next img {
        width: 40px;
        height: 40px;
    }

#custom-nav .owl-prev {
    position: absolute;
    left: 15px;
}

#custom-nav .owl-next {
    position: absolute;
    right: 15px;
}

#inner-banner {
    margin-top: 140px;
    margin-bottom: 45px;
}

#inner-banner-services {
    background: url("../images/the-peacock-online-website-development-services.png") no-repeat right bottom;
    padding-top: 140px;
    padding-bottom: 45px;
    background-size: 50% auto;
    background-color: #2E2E2E;
}

#cta .container {
    background: #2E2E2E;
}


@media (max-width: 768px) {
    #custom-nav {
        display: none
    }

    #core-services .btn_service {
        padding: 10px 20px;
    }

    #inner-banner-services {
        background-size: 0% auto;
    }
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #4A1586 !important;
    font-weight: 600 !important;
}

#footer ul li a.active {
    color: #25C8F6 !important;
    font-weight: 600 !important;
}


.text-custom {
    color: #000;
}

    .text-custom:hover {
        color: #4A1586 !important;
    }
