/* poppins-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins-400';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2');
}

/* poppins-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins-500';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v23-latin-500.woff2') format('woff2');
}

/* poppins-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins-600';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v23-latin-600.woff2') format('woff2');
}

/* poppins-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins-700';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v23-latin-700.woff2') format('woff2');
}

/* poppins-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins-800';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v23-latin-800.woff2') format('woff2');
}

/* poppins-900 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins-900';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/poppins-v23-latin-900.woff2') format('woff2');
}


/* ====================================================================Fixed Header==================================================================== */

.sticky {
    position: sticky;
    top: 0;
    width: 100%;
}

.sticky+.content {
    padding-top: 102px;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --black: #2c4c59;
    /* --black: #212529; */
    --text-dark: #999999;
    --bg-grey: #F3F1F1;
    --white: #ffffff;
    --lightcolor: #f9f9f9;
    /* --lightcolor: #fdfdfd; */

    --poppins-400: 'poppins-400';
    --poppins-500: 'poppins-500';
    --poppins-600: 'poppins-600';
    --poppins-700: 'poppins-700';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    user-select: none;
}

.container {
    max-width: 71.5% !important;
}

.fontpoppins-6 {
    font-family: var(--poppins-600);
}

.fontpoppins-7 {
    font-family: var(--poppins-700);
}

.textblack {
    color: var(--black);
}

.bg-color {
    background-color: var(--lightcolor);
}

.textclr {
    color: var(--white);
}

.textdark {
    color: var(--text-dark);
}

.p-t-80 {
    padding: 80px 0;
}

.p-t-100 {
    padding: 100px 0;
}



/* Mouse Effect */

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    z-index: 999;
    pointer-events: none;
}

.cursor div {
    position: absolute;
    display: grid;
    place-items: center;
}

.cursor div div {
    border: 1px solid var(--text-dark);
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
    box-shadow: 0 0 50px 5px #ffabab6e;
}

.cursor div:nth-child(1),
.cursor div:nth-child(2) {
    width: 100%;
    height: 100%;
}

.cursor div:nth-child(1) {
    transition: transform 0.2s ease-out;
}

.cursor div:nth-child(2) {
    transition: transform 0.1s ease-out;
}

.cursor div:nth-child(2) div {
    background: var(--black);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    border: none;
    top: 65%;
    right: 10%;
}

/* =======================================================Header Start======================================================= */

.logo {
    height: auto;
    /* let it expand naturally */
    display: flex;
    /* align-items: center;
  justify-content: center; */
}

.logo img {
    max-height: 95px;
    /* equal to navbar height */
    width: auto;
    object-fit: contain;
}


.header-bg {
    background-color: var(--white);
    z-index: 111;
    box-shadow: 0 0 10px 0 rgba(1, 1, 1, .1);
}

.navbar ul li a {
    position: relative;
}

.navbar>ul>li:hover>a:before,
.navigation-menu>ul>li.active>a:before {
    width: 80%;
    left: 10px;
}

.navbar>ul>li>a:before {
    content: "";
    width: 0;
    height: 1px;
    bottom: 15px;
    position: absolute;
    /* border-radius: 100%; */
    left: 0;
    background-color: var(--black);
    transition: all .3s ease-in-out;
}

.nav-head li a,
.accordion-header button {
    font-family: var(--poppins-500);
    letter-spacing: 1px;
    font-size: 16px;
    padding: 20px;
    display: block;
    color: var(--black);
}

.navbar>ul>li>a.active::before {
    content: "";
    width: 80%;
    height: 1px;
    bottom: 15px;
    position: absolute;
    left: 10px;
    background-color: var(--black);
    transition: all .3s ease-in-out;
}


/* .nav-head li a {
    transform: scale(0.9);
    transition: 0.3s ease-out;
}

.navbar-nav li:hover a {
    transform: scale(1.05);
} */

/* .navbar-nav li a.active,
.accordion-header a.active {
    text-decoration: underline;
} */

.nav-head {
    position: relative;
}

.main-menu {
    position: absolute;
    top: 100%;
    /* left: 10%; */
    width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translatey(5%);
    transition: 0.4s;
    z-index: 111;
}

.nav-head li:hover .main-menu {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
}

.mega-menu h6 {
    position: relative;
    width: 100px;
}

.mega-menu h6::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: var(--text-dark);
    top: 80%;
    left: 0;
}

.mega-menu {
    /* margin: 20px; */
    font-family: var(--poppins-400);
}

.mega-menu li a {
    padding: 3px 0;
    color: var(--black) !important;
    font-size: 15px;
    position: relative;
}

.mega-menu li a:hover {
    color: var(--black) !important;
    padding-left: 20px;
    /* transition: 0.5s ease-out; */
}

.mega-menu li a::before {
    content: "\f30b";
    font-weight: 600;
    font-family: 'font awesome 5 free';
    position: absolute;
    left: 0px;
    top: 5px;
    transform: scale(0);
    transition: 0.3s;
}

.mega-menu li a:hover::before {
    transform: scale(1);
    color: var(--black);
}

.offcanvas-header {
    position: relative;
    border-bottom: 1px solid #e1e1e1;
    background-color: var(--white);
    padding: 0 20px;
}

.offcanvas.hiding,
.offcanvas.show,
.offcanvas.showing {
    visibility: visible !important;
}

/* .offcanvas-header {
    align-items: start;
    display: flex;
} */

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
}


/* ====================================================================Sidebar Start==================================================================== */

.x-mark {
    background-color: var(--white);
}

.menu-iner-1 li a {
    /* color: var(--text-dark); */
    padding: 5px 0;
}

.menu-iner-1 {
    border: 1px solid var(--text-dark);
    border-top: 0;
    font-family: var(--poppins-400);
    padding: 10px 30px;
}

.menu-iner-1 li a:hover {
    color: var(--text-dark) !important;
}

/* .offcanvas {
    background-color: #FDF6F2;
} */

.accordion-header button {
    background-color: transparent;
    border: 0;
}

.accordion-button {
    margin: 10px 0;
}

.menu-iner-1 li:hover a {
    color: var(--yellow);
    transition: .3s;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: inherit;
    color: var(--black);
}

.accordion-item {
    border: 0;
    box-shadow: none;
}

.accordion {
    box-shadow: none;
    outline: none;
    --bs-accordion-btn-focus-box-shadow: none;
    margin-bottom: 10px;
}

/* ====================================================================Slider Start==================================================================== */

.slider-section {
   /*height: 100vh;*/
}

.item .img_box img,
.item .img_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item .img_box {
    position: relative;
    /* height: 100vh; */
}

.item .img_box::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.315);
}

#head .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 35px;
    color: var(--white);
}

/* #head .owl-nav button.owl-prev,
#head .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 50%;
    transition: 0.3s;
} */

#head .owl-nav button.owl-prev:hover,
#head .owl-nav button.owl-next:hover {
    background-color: transparent;
    color: var(--white);
}

/* Make sure arrows don’t block clicks */
.owl-nav,
.owl-dots {
    pointer-events: none;
}

.owl-nav button,
.owl-dots button {
    pointer-events: all;
}

/* ====================================================================About Us Start==================================================================== */

.typed-cursor {
    display: none;
}

.about-section {
    padding: 50px 0;
    background-color: var(--bg-grey);
}

.about-section h6,
.recent-section h6,
.testimonials-section h6,
.Projects-section h6 {
    font-family: var(--poppins-400);
    font-size: 16px;
    color: var(--black);
    margin-bottom: 10px
}

.about-section h2,
.recent-section h2,
.testimonials-section h2,
.Projects-section h2 {
    font-family: var(--poppins-500);
    color: var(--black);
    font-size: 32px;
    margin-bottom: 20px;
}

.about-section p {
    font-family: var(--poppins-400);
    color: var(--text-dark);
    line-height: 1.7;
}

.about-section img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 0 5px #00000030;
}

/* ====================================================================Beautiful Works Start==================================================================== */

/* Default gap (desktop) */
.custom-row {
    --bs-gutter-x: 45px;
    --bs-gutter-y: 45px;
}

/* Tablet gap */
@media (max-width: 1200px) {
    .custom-row {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 30px;
    }
}

/* Mobile gap */
@media (max-width: 576px) {
    .custom-row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 25px;
    }
}

.work-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /* margin-bottom: 20px; */
}

.work-card .work_title {
    font-family: var(--poppins-400);
    font-size: 20px;
    color: var(--black);
}

.work-card small {
    display: block;
    font-family: var(--poppins-400);
    color: var(--text-dark);
    font-size: 14px;
}


/* -------------- */

.work-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.work-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 6px;
}

.work-img img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.work-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Plus lines */
.work-img .overlay::before,
.work-img .overlay::after {
    content: "";
    position: absolute;
    background: var(--white);
    transition: all 0.4s ease;
}

/* Vertical line (top → down) */
.work-img .overlay::before {
    width: 2px;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Horizontal line (left → right) */
.work-img .overlay::after {
    width: 0;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hover effect */
.work-card:hover .overlay {
    opacity: 1;
}

.work-card:hover img {
    transform: scale(1.05);
}

/* Animate lines to grow */
.work-card:hover .overlay::before {
    height: 40px;
}

.work-card:hover .overlay::after {
    width: 40px;
}


/* ====================================================================Testimonials Start==================================================================== */


.testimonials-section {
    background-color: var(--lightcolor);
}

.custom-row {
    --bs-gutter-x: 45px;
    --bs-gutter-y: 45px;
}

@media (max-width: 1200px) {
    .custom-row {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 30px;
    }
}

@media (max-width: 576px) {
    .custom-row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 25px;
    }
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    height: 100%;
    transition: 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--text-dark);
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-header h6 {
    margin: 0;
    font-size: 16px;
    font-family: var(--poppins-500);
    color: var(--black);
}

.testimonial-header small {
    font-family: var(--poppins-400);
    display: block;
    font-size: 13px;
    color: var(--text-dark);
}

.testimonial-text {
    font-family: var(--poppins-400);
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ====================================================================Location Section Start==================================================================== */

.map-section {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.349);
    transition: background 0.5s ease;
    pointer-events: none;
}

.map-section:hover .map-overlay {
    background: rgba(255, 255, 255, 0);
}

/* ====================================================================Footer Start==================================================================== */

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: var(--white);
    color: var(--black);
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-social .fa-facebook-f {
    color: #1877F2;
}

.footer-social .fa-instagram {
    background: radial-gradient(circle at 30% 107%,
            #FFD600 0%,
            #FF7A00 25%,
            #FF0069 50%,
            #D300C5 75%,
            #7638FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social .fa-linkedin-in {
    color: #0A66C2;
}

.footer-about li a {
    /* padding: 0 10px; */
    font-family: var(--poppins-400);
    color: var(--black);
}

.footer-about li i {
    padding-right: 10px;
    color: var(--black);
}

.accordion-header button img {
    width: 25%;
}

.footer-logo h2 {
    font-family: var(--poppins-600);
    font-size: 20px;
    margin-bottom: 0;
}

.footer-about li {
    padding: 5px 0;
}

.footer-about li a {
    color: var(--black);
    font-family: var(--poppins-400);
    font-size: 18px;
    transition: 0.3s ease-out;
}

.footer-detail p {
    font-family: var(--poppins-400);
    font-size: 16px;
    color: var(--black);
    padding: 5px 0;
}

.footer-detail span a {
    font-size: 18px;
}

.footer-border h5 {
    font-family: var(--poppins-500);
    font-size: 16px;
}

.footer-border {
    border-top: 1px solid var(--black);
}

.rotate_icon {
    transform: rotate(-180deg);
    transition: 0.3s;
}

.accordion-button i {
    transition: 0.3s;
}

.accordion-button::after {
    display: none;
}

.accordion-button:not(.collapsed):after {
    display: none;
}

/* ====================================================================Back To Top==================================================================== */

.go-top {
    position: fixed;
    bottom: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0px;
    visibility: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .4);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1002;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top-text {
    font-size: 18px;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Contact menu */
.contact-wrapper {
    position: fixed;
    inset: 0;
    /* full screen */
    pointer-events: none;
    z-index: 111;
}

/* Contact Menu */
.contact-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: auto;
    z-index: 1111;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-family: var(--poppins-500);
    font-size: 14px;
    cursor: pointer;
    display: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.contact-item i {
    font-size: 16px;
}

.contact-item.pink i,
.contact-item.pink span {
    color: #2c4c59;
}

.contact-item.purple i,
.contact-item.purple span {
    color: #8a4fff;
}

.contact-item.green i,
.contact-item.green span {
    color: #25d366;
}

/* Toggle Button */
.contact-toggle {
    background: var(--black);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: rotate(45deg);
    z-index: 1112;
}

/* Overlay */
.contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 111;
}

/* Active States */
.contact-menu.active .contact-toggle {
    transform: rotate(0deg);
}

.contact-menu.active .contact-item {
    display: block;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}