:root {
    /* --font-heading: 'Playfair Display', serif; */
    --font-heading: 'Raleway', sans-serif;
    --font-subheading: 'Source Sans Pro', sans-serif;
    --color-primary: hsl(0, 100%, 50%);
    --color-secondary: #1D1616;
    /* --color-primary: #0A66C2;
  --color-secondary: #FFD700;
  --color-dark: #222;
  --color-light: #f5f5f5; */
    --color-text: #767676;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 2rem;
    --heading-xl: 3rem;
    --heading-lg: 2.25rem;
    --heading-md: 1.5rem;
    --heading-sm: 1.2rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --font-size: 16px;
}

body {
    font-family: var(--font-subheading);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../font/PlayfairDisplay-VariableFont_wght.ttf') format('woff2'), url('../font/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


/* Raleway – For Navbar and Subheadings */

@font-face {
    font-family: 'Raleway';
    src: url('../font/Raleway-VariableFont_wght.ttf') format('woff2'), url('../font/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


/* Source Sans Pro – For Body Text */

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../font/SourceSans3-VariableFont_wght.ttf') format('woff2'), url('../font/SourceSans3-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    font-family: var(--font-subheading);
}


/* CSS */

.navbar {
    height: 150px;
}

.btn-quote {
    height: 100%;
    padding: 0 20px;
    border-radius: 0;
}

.navbar-brand {
    width: 120px;
}

.offcanvas{
    z-index: 111333;
}

.navbar>div {
    padding: 0 3rem;
}

.navbar-nav .nav-item .nav-link {
    padding: 0.7rem 1.4rem;
    font-size: var(--fs-base);
    color: #626262;
    /* font-weight: bold; */
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.nav-menu {
    display: flex;
    justify-content: end;
    flex: 1;
    flex-direction: row-reverse;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--color-primary);
}

.contact-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-info>div {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--fs-lg);
    font-family: var(--font-heading);
    line-height: 1;
    color: #000;
}

.contact-info>div span.text-mute {
    font-size: var(--fs-base);
    color: #767676;
    margin-right: 300px;
}

.nav-icons {
    width: 40px;
}

.footer-icons {
    width: 40px;
    object-fit: contain;
}

.btn-main {
    text-decoration: none;
    margin: 0;
    padding: 0.8rem 1.6rem;
    font-size: var(--fs-base);
    color: white;
    background-color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: bold;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

.btn-main-2 {
    background: var(--color-primary);
    color: #fff;
    display: inline-block;
    padding: 21px 45px;
    border: 0;
    text-transform: capitalize;
    -webkit-backface-visibility: hidden;
    z-index: 1;
    position: relative;
    font-size: 15px;
    border-radius: 0px;
    font-weight: 700;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    overflow: hidden;
    text-decoration: none;
}

.btn-main-2::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: var(--color-secondary);
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: -1;
}

.btn-main-2::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 51%;
    height: 0;
    content: "";
    background-color: var(--color-secondary);
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    z-index: -1;
}

.btn-main-2:hover::before,
.btn-main-2:hover::after {
    height: 100%;
}

.btn-main.btn-quote {
    width: 260px;
    position: absolute;
    right: 0;
    background-color: var(--color-primary);
    top: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: calc(var(--fs-lg) + 0.2rem);
}

.btn-main.btn-quote img {
    width: 40px;
    filter: brightness(0);
}

.section-hero {
    display: flex;
    height: calc(100vh - 150px);
}
.section-hero video{
    object-fit: cover;
}

/* .section-hero .hero-left {
    width: 60%;
    background-image: url(../images/home/hero-bg.png);
    display: flex;
    align-items: center;
}

.section-hero .hero-left .hero-content {
    padding: 5rem;
}

.section-hero .hero-right {
    width: 45%;
}

.section-hero .hero-left .text-top {
    font-size: calc(var(--fs-xl) + 2rem);
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1
}

.section-hero .hero-left .hero-head {
    font-size: 60px;
    font-weight: 800;
    color: #000;
}

.section-hero .hero-left .hero-decription {
    font-size: var(--fs-base);
}

.section-hero .hero-left .hero-head span {
    color: var(--color-primary);
} */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-size: var(--fs-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    /* border: none; */
    box-shadow: none;
}

.quote-form {
    background-color: var(--color-primary);
    padding: 2rem;
    color: white;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    border: none;
}

.quote-co {
    position: absolute;
    /*top: -60px;*/
}

.section-content {
    padding: 3rem 2rem;
}

.section-content .description {
    font-size: var(--fs-lg);
    color: #393939;
}

.section-content .section-head {
    color: #000;
    font-size: var(--heading-lg);
}

.section-content .section-head span {
    color: var(--color-primary);
}

.section-content .section-main-heading {
    color: #525252;
    font-weight: 700;
    font-size: calc(var(--fs-lg) + 0.5rem);
    display: flex;
    align-items: center;
    position: relative;
    gap: 1rem;
    line-height: 1;
}

.section-content .section-main-heading::before {
    content: '';
    background-image: url(../images/icons/semi.png);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    /* background-color:#ff00004e; */
    /* z-index: -1; */
    left: 0;
}

.section-service {
    padding: 100px 0;
    margin-top: 0px;
}

.section-heading-outline {
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: #dbdbdb;
    font-size: 130px;
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
    /* position: relative; */
    left: calc(40vh + 40px);
    white-space: nowrap;
    width: fit-content;
    z-index: -1;
    text-align: center;
    font-family: var(--font-subheading);
    width: 100%;
}

.service-content p {
    font-size: var(--fs-lg);
}

.btn-share {
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 60px;
    background: var(--color-primary);
    text-align: center;
    line-height: 106px;
    transform: rotate(-15deg);
    color: #fff;
    padding: 1.3rem;
}

.btn-share::before {
    position: absolute;
    left: 2px;
    bottom: -5px;
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 60px;
    border: 1px solid #000;
    transition: all 0.3s ease-in-out;
}

.btn-share:hover::before {
    left: 0;
    bottom: 0;
}

.section-service .service-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    /* border: 1px solid; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.section-service .service-card:hover {
    box-shadow: rgba(255, 0, 0, 0.2) 0px 7px 29px 0px;
}

.section-service .service-card:hover::before {
    width: 200px;
    height: 200px;
}

.section-service .service-card::before {
    content: '';
    width: 150px;
    height: 150px;
    background-color: #ff00004e;
    right: -50px;
    top: -50px;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.service-card .service-icon {
    width: 50px;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    z-index: 3;
}

.service-card-content h3 {
    color: #000;
}

.service-card .service-card-content .description {
    font-size: var(--fs-lg);
}

.btn-link-arrow {
    text-decoration: none;
    color: #2b2b2b;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease-in-out;
    margin-top: auto;
}

.btn-link-arrow:hover {
    gap: 3rem;
    color: var(--color-primary);
}

.btn-link-arrow::after {
    content: '';
    background-image: url(../images/icons/right-arrow.png);
    width: 30px;
    height: 30px;
    background-size: contain;
}

.scroll-banner {
    white-space: nowrap;
    animation: scrollLeft 30s linear infinite;
}

.wcu-banner {
    position: relative;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.808), rgba(255, 255, 255, 0.95)), url('../images/home/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 100px;
}

.wcu-card {
    background-color: rgba(255, 255, 255, 0.2);
    /* semi-transparent white */
    backdrop-filter: blur(8px);
    /* glassmorphism effect */
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15);
    padding: 2rem;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.wcu-card span {
    font-size: var(--fs-lg);
    color: #2b2b2b;
    font-weight: 600;
    letter-spacing: 1px;
}

.wcu-icon {
    width: 100px;
}

.testimonial-card {
    padding: 3rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.testimonial-card .google-review {
    width: 150px;
}

.testimonial-card .description {
    font-size: var(--fs-lg);
}

.swiper-pagination-bullet-active {
    background-color: var(--color-primary) !important;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 50px;
    border-radius: 12px;
    height: 7px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    top: unset;
    bottom: 5px;
}

.swiper-horizontal {
    padding-bottom: 50px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: unset;
    right: 100px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 2rem;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    line-height: 1;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.footer {
    position: relative;
    background-image: linear-gradient(to right, rgba(11, 11, 12, 0.747), rgb(47 46 49 / 95%)), url(../images/home/footer-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.footer .footer-link {
    border: 1px solid grey;
    padding: 1rem;
    text-align: center;
    font-size: var(--fs-lg);
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.footer-link img {
    width: 30px;
}

.footer-content {
    padding: 1rem 5rem;
}

.footer .logo {
    width: 200px;
}

.footer-content h4 {
    color: white;
    font-size: var(--heading-md);
    font-weight: 600;
}

.footer ul {
    padding: 0;
}

.footer-content ul li {
    font-size: var(--fs-md);
    list-style: none;
    cursor: pointer;
}

.footer-content ul li a {
    text-decoration: none;
    color: #e8e8e8;
}

.footer-content .contact {
    display: flex;
    gap: 1rem;
    color: white;
}


/*---------------------------- about us page --------------------------*/

.hero-banner {
    background: url(../images/home/service-img2.jpg) no-repeat center top / cover;
    min-height: 50vh;
    position: relative;
    display: flex;
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(36deg, rgb(4, 43, 51) 0%, rgba(2, 25, 41, 0.9220063025) 37%, rgba(0, 7, 31, 0.2973564426) 59%);
    content: "";
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .heading {
    font-size: 5rem;
    margin-top: 0.5rem;
    color: white;
}

.breadcrumbs {
    color: #ddd;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: var(--fs-lg);
}

.breadcrumbs a {
    color: #c7c7c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.service-page {
    background-color: #F9F4F2;
}

.service-card-container {
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    background-color: white;
    width: fit-content;
    margin-top: 2rem;
}

.service-card-main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* box-shadow: 0px 7px 28px rgba(0, 0, 0, 0.03); */
    text-align: center;
}

.service-card-main h3 {
    font-size: var(--heading-sm);
    color: black;
}

.service-card-main p {
    font-size: var(--fs-base);
}

.service-card-main img {
    width: 150px;
    margin-bottom: 2rem;
}

.ri-zoom-line {
    background-image: url(../images/icons/zoom.png);
    width: 20px;
    height: 20px;
    background-size: cover;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.gallery-item:hover .overlay {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.icon-btn {
    background: #fff;
    border: none;
    font-size: 24px;
    color: #333;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .icon-btn {
    opacity: 1;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease forwards;
    z-index: 9999;
}

.popup-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #fff;
    border-radius: 8px;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 36px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s ease;
}

.popup-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-nav.prev {
    left: 20px;
}

.popup-nav.next {
    right: 20px;
}

.office-info-item {
    text-align: center;
    padding: 40px;
    margin: 0 10px;
    border-radius: 8px;
    border: 1px solid #FFF;
    box-shadow: 0px 15px 10px 0px rgba(194, 185, 185, 0.18);
    overflow: hidden;
    background: transparent;
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    cursor: pointer;
}

.office-info-item:hover,
.office-info-item.active {
    background-color: rgb(255, 209, 209);
    border: 1px solid red;
}

.icon svg {
    width: 60px;
    color: var(--color-primary);
}

.office-info-item h3 {
    font-size: var(--heading-md);
    color: #000;
}

.office-info-item p {
    font-size: var(--fs-base);
    color: #2b2b2b;
}

.contact-form {
    background: #F8F8F9;
    padding: 60px 40px 80px;
    margin-top: 60px;
}
.contact-section h3{
    font-size: var(--heading-lg);
    color: var(--color-primary);
}

.form-inputs input {
    background-color: #fff;
    width: 100%;
    height: 65px;
    padding: 6px 15px;
    margin-bottom: 33px;
    outline: 0;
    transition: all 0.3s;
    border: 1px solid #E5E5E5;
    background: #FFF;
    box-shadow: 0px 15px 10px 0px rgba(242, 242, 242, 0.18);
}

.form-textarea textarea{
    background-color: #fff;
    width: 100%;
    height: 140px;
    padding: 6px 15px;
    margin-bottom: 33px;
    outline: 0;
    transition: all 0.3s;
    border: 1px solid #E5E5E5;
    background: #FFF;
    box-shadow: 0px 15px 10px 0px rgba(242, 242, 242, 0.18);
}


.blogs-section{
    padding: 50px 0;
}
.blog{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    justify-content: flex-start;
}

.blog .heading{
    font-size: var(--heading-lg);
}

.blog p{
    font-size: var(--fs-lg);
}

.blog .date{
    position: absolute;
    top: 2rem;
    left: 2rem;
    padding: 1rem 2rem;
    font-size: var(--fs-lg);
    color:white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: var(--color-primary);
    border-radius: 1rem;
}
.blog a{
    width: fit-content;
}
.blog-sidebar h3{
    padding: 0.5rem 1rem;
    border-left: 3px solid var(--color-primary);
}

.blog-sidebar{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    

}
.blog-side h4{
    font-size: var(--heading-sm);
}


.blog-side{
    display: flex;
    gap: 1rem;
}

.blog-side img{
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.privacy-btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    color: white !important;
    background-color: #e60000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
    text-align: center;
}


.flot-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99;
    animation: float 3s ease-in-out infinite
}

.flot-btn .web-mail {
    margin-top: 30px
}

.flot-btn a {
    display: flex;
    flex-direction: column;
    align-items: center
}

.flot-btn a span {
    padding: 5px;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 14px
}

.flot-btn img {
    width: 100px;
    filter: drop-shadow(0 0 12px rgba(81, 81, 81, 0.3882352941))
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}
