:root {
    --primaryColor: #419fd2;
}

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

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
}

/* General Styles */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

#mcNumber {
    font-size:14px;
    font-weight: 700;
}


#dotNumber {
        font-size:14px;
        font-weight: 700;
}

body {
    font-family: "Poppins", sans-serif;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


a,
button {
    display: inline-block;
    font: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

section {
    position: relative;
    padding: 75px 0;
}

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

.btn {
    color: #fff;
    font-weight: 500;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    background-color: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    transition: color 0.35s, background-color 0.35s;
    -webkit-transition: color 0.35s, background-color 0.35s;
    -moz-transition: color 0.35s, background-color 0.35s;
    -ms-transition: color 0.35s, background-color 0.35s;
    -o-transition: color 0.35s, background-color 0.35s;
}

.btn svg {
    width: 25px;
    margin-right: 5px;
    vertical-align: middle;
    fill: #fff;
    transition: fill 0.35s;
    -webkit-transition: fill 0.35s;
    -moz-transition: fill 0.35s;
    -ms-transition: fill 0.35s;
    -o-transition: fill 0.35s;
}

.btn:hover {
    background-color: transparent;
    color: var(--primaryColor);
}

.btn:hover svg {
    fill: var(--primaryColor);
}

/* Text Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5em;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1em;
}

h2 {
    font-size: 3rem;
    line-height: 1.25;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.25;
}

p {
    font-weight: 400;
    line-height: 1.75;
}

/* Navigation Bar Styles */

header {
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 999;
}

.nav-container {
    position: relative;
    padding: 10px 3vw;
    background-color: #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bannerTitle {
    text-align: center;
    display: -webkit-box;
}

.bannerTitle h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: .7rem;
}

#navMarg {
    margin: 0;
}

.bannerTitle span {
    font-size: 1.5rem;
    padding-right: 5px;
}

.bannerTitle p {
    margin: 5px;
    margin-top: 1rem;
    font-size: .875rem;
    display: inline-flex;
    padding-left:2rem;
}

.logo {
    font-size: 2rem;
    text-align: center;
}

.logo h3 {
    margin-bottom: 5px;
}

.logo span {
    font-size: 1.5rem;
}

.logo p {
    margin: 5px;
}

.logo-img {
    width: 150px;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    margin-left:40rem;
}

.nav-list li {
    margin: 10px 30px;
    transition: color 0.5s;
    width: 6rem;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -ms-transition: color 0.5s;
    -o-transition: color 0.5s;
}

.nav-list li:hover {
    color: var(--primaryColor);
}

.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 5px;
    background: var(--primaryColor);
    transition: width 0.5s;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
}

.nav-link:hover:after {
    width: 100%;
}

/* Hamburger Styles */

.hamburger {
    display: none;
}

.hamburger {
    width: 32px;
    height: 32px;
    margin-top: 10px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primaryColor);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 10px;
}

.hamburger span:nth-child(4) {
    top: 20px;
}

.hamburger.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* Hero Section Styles */

/*#hero-section {
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    min-height: 920px;
    background-image: url(../images/hero-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: heroBackground 14s infinite;
}*/

.hero-section::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

/*@keyframes heroBackground {
    0% {
        background-image: url(../images/hero-1.jpg);
    }
    25% {
        background-image: url(../images/hero-2.jpg);
    }
    50% {
        background-image: url(../images/hero-3.jpg);
    }
    75% {
        background-image: url(../images/hero-4.jpg);
    }
    100% {
        background-image: url(../images/hero-1.jpg);
    }
}*/

/* About Section Styles */

.about-section {
    background: linear-gradient(90deg, #fff 65%, var(--primaryColor) 35%);
    padding-bottom: 0;
    margin: 0 0 100px;
}

.about-section .container {
    position: relative;
    padding: 100px 0;
    height: 100%;
}

.about-section .container::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 20%;
    background-color: var(--primaryColor);
}

.about-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.about-img.mobile {
    display: none;
}

.about-me,
.about-img {
    flex: 1 1 0;
}

.about-me .para {
    max-width: 450px;
    margin-top: 25px;
}

/* Mission Section Styles */

.mission-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.mission-text {
    width: 60%;
}

.mission-img {
    width: 40%;
}

/* Service Section Styles */

.service-section {
    text-align: center;
    height: 600px;
    margin-top: 100px;
    margin-bottom: 280px;
    /*background-image: url(../images/service.jpg);*/
    background-color: var(--primaryColor);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-section::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.service-section .container {
    position: relative;
    height: 100%;
}

.service-flex {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    position: relative;
    flex: 1 1 0;
    text-align: center;
    min-width: 280px;
    max-width: 410px;
    padding: 60px 40px;
    background-color: #fff;
    box-shadow: 0 3px 5px rgb(0, 0, 0, 0.16);
    z-index: 1;
}

.service-section h2 {
    position: relative;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.service-icon svg {
    fill: #fff;
}

/* Footer Styles */

footer {
    width: 100%;
    text-align: center;
}

.footer-content {
    padding: 4em 0 0;
    background-color: #19191b;
    background-image: url(../images/carbon-bg.png);
}

.footer-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-brand {
    max-width: 400px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.footer-logo {
    max-width: 200px;
    margin: 20px auto;
}

.footer-contact-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.footer-contact {
    font-size: 0.875rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #fff;
    width: 220px;
    margin: 25px;
    word-break: break-word;
}

.contact-icon {
    width: 40px;
    margin: 0 auto 15px;
}

.footer-link {
    display: inline-block;
    transition: all 0.5s;
    width: 16rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.footer-link:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.carrier-pro {
    max-width: 260px;
    margin: 0 auto 100px;
    border-radius: 20px;
    overflow: hidden;
}

.copyright-text {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    padding: 1.5em 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Media Queries */

@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}


@media (max-width: 1725px) {
    .container {
        max-width: 960px;
    }

    /* Navigation Bar Styles */

    .hamburger {
        display: block;

    }
    
    #navMarg {
        margin-left: 20rem;
    }
    
    h3 {
        line-height: 1.5;
    }

    .nav-list {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 30px 0;
        background-color: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        margin:0;
        -o-transform: translateY(-100%);
        transition: transform 0.5s, box-shadow 0.5s;
        -webkit-transition: transform 0.5s, box-shadow 0.5s;
        -moz-transition: transform 0.5s, box-shadow 0.5s;
        -ms-transition: transform 0.5s, box-shadow 0.5s;
        -o-transition: transform 0.5s, box-shadow 0.5s;
        z-index: -1;
    }

    .nav-list.open {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        box-shadow: 0 25px 34px 5px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Text Styles */

    h1 {
        font-size: 2rem;
    }

    #navMarg {
        margin-left: 0;
    }

    /* Service Section Styles */

    .service-section {
        height: auto;
        padding: 100px 0;
        margin-bottom: 0;
    }

    .service-flex {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-card {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Mission Section Styles */

    .mission-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mission-img,
    .mission-text {
        width: 100%;
    }

    /* Footer Styles */

    .footer-contact-flex {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    /* Text Styles */

    h1 {
        font-size: 3rem;
    }

    #navMarg {
    display: flex;
    }
    
    .bannerTitle {
    display: flex;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 2rem;
    }

    /* About Section Style */

    .about-section {
        text-align: center;
        background: var(--primaryColor);
        color: #fff;
    }

    .about-section .heading,
    .about-section .sub-heading {
        color: #fff;
    }

    .about-img.mobile {
        display: block;
        margin: 25px;
    }

    .about-img.desktop {
        display: none;
    }

    .about-me .para {
        max-width: 100%;
    }
}

@media (max-width: 400px) {
     .hamburger {
        width: 7rem;
    }

    html,body{
    overflow-x: hidden;
}
    
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    html, body{
    overflow-x: hidden;
    }

    section {
        padding: 40px 0;
    }
    
    nav {
        max-width:100%;
    }
    /* Text Styles */

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Hero Section Styles */

    .hero-section {
        min-height: 100vh;
    }

    /* Service Section Styles */

    .service-flex .service-card {
        max-width: 100%;
        margin-right: 0 !important;
    }
}
