@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #6a6972;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #4b4b4b;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 36px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 22px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #6a6972;
    margin: 0px;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.main-text {
    font-size: 24px;
    color: #1e1e1e;
}

.main-text-light {
    font-size: 24px;
    color: #fff;
}

.section-title {
    font-size: 24px;
}

.backgound-primary {
    background-color: #2f5597;
}

.backgound-secondary {
    background-color: RGBA(248,249,250,var(--bs-bg-opacity,1));
}

.background-white {
    background-color: #fff;
}

.text-primary{
    color: #2f5597;
}

.text-white{
    color: #fff;
}

/*===== All Button Style =====*/
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 50px;
    font-size: 28px;
    line-height: 40px;
    border-radius: 8px;
    border: 0;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background: -webkit-linear-gradient(
        left,
        #2861c4 0%,
        #3d6fc5 50%,
        #2f5597 100%
    );
    background: -o-linear-gradient(left, #2861c4 0%, #3d6fc5 50%, #2f5597 100%);
    background: linear-gradient(
        to right,
        #2861c4 0%,
        #3d6fc5 50%,
        #2f5597 100%
    );
    background-size: 200%;
}
.main-btn:hover {
    color: #fff;
    background-position: right center;
}

.secondary-btn {
    color: white;
    background-color: #2f5597;
    --bs-btn-hover-border-color: #2f5597;
}

.secondary-btn-outline {
    color: #2f5597;
    --bs-btn-border-color: #2f5597;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #2f5597;
    --bs-btn-hover-border-color: #2f5597;
    background-color: #fff;
}

/* general page text styles */

.page-section p {
    font-size: 24px;
    padding-top: 1rem;
}

.page-section h6 {
    font-size: 30px;
    padding-top: 1rem;
}

/* navbar */
.navbar-area {
    background-color: #fff;
}

.header-logo {
    height: 90px;
}

.nav-link,
.dropdown-item {
    font-size: 20px;
    color: #4b4b4b;
}

.nav-link:hover,
.dropdown-item:hover {
    color: #c55a11 !important;
}

.active {
    color: #c55a11 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
    /* margin-top: 0; remove the gap so it doesn't close */
}

/* == homepage sliders == */
.slider {
    position: relative;
    width: 100%;
}

.items {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 40%;
}

.item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
.item.current {
    opacity: 1;
}
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buttons {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.current {
    background-color: white;
}

.dot:nth-child(n + 2) {
    margin-left: 0; /* removed since we're using gap now */
}

.hero p {
    font-size: 80px;
    line-height: 80px;
    color: #4b4b4b;
}

.hero-subtitle{
    font-size: 40px;
    line-height: 40px;
    color: #6f6f6f;
}

@media only screen and (max-width: 576px) {
    .hero p {
        font-size: 28px;
        line-height: 30px;
        text-align: center;
    }
    .hero-subtitle{
    font-size: 24px;
    line-height: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .hero p {
        font-size: 36px;
        line-height: 40px;
        text-align: center;
    }

    .hero-subtitle{
    font-size: 30px;
    line-height: 32px;
    }
}

@media only screen and (min-width: 767) and (max-width: 1280) {
    .hero p {
        font-size: 48px;
        line-height: 56px;
    }
    .hero-subtitle{
    font-size: 24px;
    line-height: 30px;}
    
}

.hero span {
    font-size: 108px;
}

@media only screen and (max-width: 576px) {
    .hero span {
        font-size: 36px;
        line-height: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .hero span {
        font-size: 42px;
        line-height: 48px;
    }
}

@media only screen and (min-width: 767) and (max-width: 1280) {
    .hero span {
        font-size: 48;
        line-height: 56px;
    }
}

.hero .blue {
    color: #2f5597;
}

.hero .red {
    color: #c55a11;
}



/* brand logo */

@media (max-width: 767px) {
    .brand-logo {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.single-logo {
    padding: 0 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-logo {
        padding: 0 15px;
    }
}
@media (max-width: 767px) {
    .single-logo {
        padding: 0 15px;
    }
}
@media (max-width: 767px) {
    .single-logo {
        width: 50%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-logo {
        width: 33.33%;
    }
}
.single-logo img {
    max-height: 4rem;
    /* opacity: 0.5; */
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

/* footer */

.footer-copyright {
    background-color: #2f5597;
}

.footer-logo {
    height: 90px;
}

.footer-widget {
    background-color: #ebebeb;
}

.footer-copyright a {
    color: #fff;
}

.social-icons i {
    font-size: 2.5rem;
    color: #fff;
}

/* Single page */

.page-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 30%;
}

.page-banner-product {
    padding-bottom: 20%;
}

@media only screen and (max-width: 576px) {
    .page-banner {
        padding-bottom: 40%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-banner {
        padding-bottom: 40%;
    }
}

@media only screen and (min-width: 767) and (max-width: 1280) {
    .page-banner {
        padding-bottom: 40%;
    }
}

.banner {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.page-banner-title {
    height: 100%;
    position: absolute;
    z-index: 1;
    width: 100%;
}

.page-banner-title h1 {
    font-size: 90px;
    font-weight: bolder;
    color: white;
    text-shadow: 2px 2px 5px #262626;
}

.page-banner-title p,
.page-banner-title-right p,
.page-banner-title-left p {
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 5px #262626;
}

/* products pages */

.product-category img {
    height: 25rem;
}

.product-category-img {
    height: 20rem;
}

/* projects pages */

.project-category img {
    height: 25rem;
}

.project-category-img {
    height: 20rem;
}

.project-category-name {
    font-size: 20px;
    font-weight: 100;
}

/* quote page */

/* Highlight style - more prominent */
.highlighted {
  /* stroke: #4285f4 !important;
  stroke-width: 3px !important; */
  fill: rgba(149, 244, 66, 0.3) !important;
  transition: all 0.3s ease;
}

/* services - general */
.services-text-area {
    background-color: #2f5597;
}

.services-text-area p {
    font-size: 24px;
    color: white;
}

.product-details-image {
    background-color: gainsboro;
    text-align: center;
}

/* services - right hand title */

.page-banner-title-right {
    position: absolute;
    top: 30%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: #212121b2;
    padding: 20px 5px;
}

.page-banner-title-right h1 {
    font-size: 40px;
    color: white;
}

@media only screen and (max-width: 576px) {
    .page-banner-title h1 {
        font-size: 28px;
        line-height: 30px;
        text-align: center;
    }
    .page-banner-title p,
    .page-banner-title-right p {
        font-size: 16px;
    }

    .page-banner-title-right h1 {
        font-size: 28px;
    }
    .page-banner-title-right {
        top: 50%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-banner-title h1 {
        font-size: 36px;
        line-height: 40px;
        text-align: center;
    }
    .page-banner-title p,
    .page-banner-title-right p {
        font-size: 16px;
    }
    .page-banner-title-right h1 {
        font-size: 28px;
    }
    .page-banner-title-right {
        top: 50%;
    }
}

@media only screen and (min-width: 767) and (max-width: 1280) {
    .page-banner-title h1 {
        font-size: 48px;
        line-height: 56px;
    }
    .page-banner-title p,
    .page-banner-title-right p {
        font-size: 16px;
    }
    .page-banner-title-right h1 {
        font-size: 28px;
    }
    .page-banner-title-right {
        top: 50%;
    }
}

/* services - left hand title */

.page-banner-title-left {
    position: absolute;
    top: 30%;
    left: 10%;
    transform: translateY(-30%);
    z-index: 1;
    background-color: #2f5597da;
    padding: 20px 5px;
}

.page-banner-title-left h1 {
    font-size: 40px;
    color: white;
}

@media only screen and (max-width: 576px) {
    .page-banner-title-left p {
        font-size: 16px;
    }

    .page-banner-title-left h1 {
        font-size: 28px;
    }
    .page-banner-title-left {
        top: 50%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-banner-title-left p {
        font-size: 16px;
    }
    .page-banner-title-left h1 {
        font-size: 28px;
    }
    .page-banner-title-left {
        top: 50%;
    }
}

@media only screen and (min-width: 767) and (max-width: 1280) {
    .page-banner-title-left p {
        font-size: 16px;
    }
    .page-banner-title-left h1 {
        font-size: 28px;
    }
    .page-banner-title-left {
        top: 50%;
    }
}

.services-arrow {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 25%;
}

.arrow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.arrow image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-arrow-text {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* About Us*/
h2 {
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

img {
  object-fit: cover;
}

img.rounded {
  border-radius: 12px;
}

img.shadow {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.section {
  padding: 4rem 1rem;
}

@media (min-width: 992px) {
  .section {
    padding: 6rem 2rem;
  }
}
/* values */
.feature-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}
.icon-box {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.bg-opacity-10 {
  opacity: 0.1 !important;
}
