/* Fonts */

@font-face {
    font-family: NokshaFont;
    src: url(ACaslonPro-Regular.ttf);
}

@font-face {
    font-family: NokshaFontSecond;
    src: url(EuclidCircularARegular.ttf);
}

:root {
    --default-font: NokshaFontSecond, sans-serif;
    --heading-font: NokshaFont, sans-serif;
    --nav-font: NokshaFontSecond, sans-serif;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root {
    --background-color: #F1F1F0;
    --default-color: #292a2b;
    --heading-color: #000000;
    --accent-color: #feb900;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */

:root {
    --nav-color: white;
    --nav-hover-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #D5AD36;
}

.light-background {
    --background-color: #f4f7f6;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}


/* Smooth scroll */

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: NokshaFontSecond;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

p {
    line-height: 1.6;
    font-family: NokshaFontSecond;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo img {
    max-height: 70px;
    margin-right: 8px;
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/* Global Header on Scroll
------------------------------*/

.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.95);
    --heading-color: #3c3c3c;
    --nav-color: #3c3c3c;
    --nav-hover-color: #3c3c3c;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }
    .navmenu>ul>li:last-child {
        padding-right: 0;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 16px;
        padding: 0 2px;
        font-family: var(--nav-font);
        letter-spacing: .5px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}


/* Mobile Navigation */

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 24px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navmenu a,
    .navmenu a:focus {
        color: white;
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 22px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgb(33, 37, 41);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
    padding-top: 80px;
}

.footer .container {
    position: relative;
}

.footer:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 20%);
    position: absolute;
    inset: 0;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer-about {
    border-right: 1px solid #979191;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 80px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 22px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
    font-size: 20px;
    font-family: var(--nav-font);
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--default-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

.naksha_pp_floating-phone {
    position: fixed;
    bottom: 15px;
    right: 80px;
    background-color: var(--accent-color);
    color: rgb(0, 0, 0);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
}

.naksha_pp_floating-phone:hover {
    transform: scale(1.1);
    color: white;
}

.naksha_pp_floating-phone i {
    font-size: 18px;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 40%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 100px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 76px;
        padding: 50px 0;
    }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section_top_design {
    margin-bottom: 70px;
}

.section_top_design p {
    font-size: 60px;
    color: #979191;
    line-height: 0;
    padding: 0;
    margin: 0;
    position: relative;
}


/* --- Animation Keyframes --- */

@keyframes expandLine {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


/* --- Default Line CSS (no animation) --- */

.section_top_design p::after {
    content: "";
    position: absolute;
    left: 50px;
    right: 0;
    top: 68%;
    height: 1px;
    width: 100%;
    background: #979191;
    display: block;
}


/* --- Animation Triggered CSS --- */

.section_top_design.is-visible p::after {
    animation: expandLine 1s ease-out forwards;
}

.section-title h1 {
    font-size: 40px;
    font-weight: 900;
    position: relative;
}

.section-title p {
    margin: 0;
    padding: 0;
    font-size: 22px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero .info {
    position: relative;
    inset: 0;
    z-index: 3;
    padding: 140px 0 60px 0;
}

.hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: 0.4s;
}

.hero .carousel-item img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item::before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 35%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

.hero_info {
    position: relative;
    inset: 0;
    z-index: 3;
    height: 90vh;
    margin-top: 10vh;
}

.hero_header {
    position: absolute;
    top: 7%;
    left: 0;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(50, end), blink-caret 1s step-end;
}


/* The typing effect */

@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}


/* The blinking cursor */

@keyframes blink-caret {
    from,
    to {
        border-color: transparent
    }
    50% {
        border-color: orange;
    }
}


/* The blinking cursor animation */

@keyframes blink-caret {
    from,
    to {
        border-color: transparent
    }
    50% {
        border-color: orange;
    }
}

.hero_header h1 {
    font-family: var(--heading-font);
    font-size: 55px;
    font-weight: 500;
    color: white;
    line-height: 1;
    margin-bottom: 25px;
}

.hero_btn_design {
    font-family: var(--heading-font);
    font-size: 25px;
    border: 1px solid #AEAAAA;
    color: white;
    padding: 10px 40px;
    letter-spacing: 4px;
}

.hero_btn_design i {
    margin-left: 10px;
    font-size: 25px;
}

.hero_details {
    position: absolute;
    bottom: 10%;
    right: 1.5%;
}


/* --- Glassmorphism Box CSS --- */

.hero_details .hero_glass {
    position: relative;
    /* Added for pseudo-element positioning */
    overflow: hidden;
    /* This is key to clipping the shine */
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    border: 1px solid rgba(255, 255, 255, 0.51);
    padding: 25px 30px 25px 50px;
    width: 800px;
    transition: all 0.5s ease;
    border-radius: 15px;
}

.hero_details .hero_glass p {
    font-size: 22px;
    line-height: 1.4;
    color: #ffffff;
    text-align: left;
    font-weight: 500;
}


/* --- Shiny Effect CSS --- */

.hero_details .hero_glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 0, 0, 0) 0%, rgba(221, 214, 214, 0.3) 50%, rgba(255, 0, 0, 0) 100%);
    /* Starts off the left side */
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
}

.hero_details .hero_glass:hover::before {
    /* Moves to the right side on hover */
    transform: translateX(100%);
}

.hero_bottom_design {
    position: absolute;
    bottom: -1%;
    left: -1px;
    z-index: 3;
}

.hero_bottom_design .design_img {
    width: 700px !important;
    height: 66px !important;
    position: relative !important;
    object-fit: fill;
}


/* About Us Section */

.about_left_image {
    height: 100%;
    width: 100%;
}

.about_left_image-container {
    height: 650px;
    width: 100%;
}

.about_left_image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
    /* Smooth transition */
    transform: scale(1);
    /* Initial state */
}

.about_left_image-container:hover img {
    transform: scale(1.1);
    /* Zoom state on hover */
}

.naksha_home_about_text_container {
    width: 97%;
    padding-left: 1.5%;
}

.about_right_content {
    width: 100%;
}

.about_text h3 {
    font-size: 24px;
    line-height: 1;
    color: black;
    font-weight: bold;
    padding-bottom: 20px;
    font-family: var(--default-font);
}

.about_text p {
    font-size: 18px;
    line-height: 1.4;
    color: black;
    text-align: justify;
}

.about_text ul li {
    font-size: 28px;
    color: black;
    line-height: 1;
}

.about_right_image {
    margin-top: 40px;
    height: 520px;
}

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

.service_section {
    background-image: url("../img/home/4.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(20, 20, 20, 0.774);
    height: 100%;
    width: 100%;
}

.service_left_box {
    padding: 10px;
    border-right: 1px solid #e6e4e4;
    border-bottom: 1px solid #e6e4e4;
    height: 100%;
}

.service_left_box h1 {
    font-family: var(--heading-font);
    color: rgb(255, 255, 255);
    font-size: 28px;
    text-transform: capitalize;
}

.service_content {
    margin-top: 20px;
}

.service_left_box p {
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    width: 80%;
}

.service_right_box {
    padding: 10px;
    border-bottom: 1px solid #e6e4e4;
    height: 100%;
}

.service_right_box h1 {
    font-family: var(--heading-font);
    color: rgb(221, 218, 218);
    font-size: 30px;
    text-align: right;
}

.service_right_box p {
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    text-align: right;
    width: 80%;
}


/* --- Glassmorphism Box CSS for service_glass --- */

.service_glass {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    border: 1px solid rgba(255, 255, 255, 0.51);
    padding: 25px 30px 25px 50px;
    width: 100%;
    transition: all 0.5s ease;
    border-radius: 15px;
}


/* --- Shiny Effect CSS for service_glass --- */

.service_glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient( to right, rgba(255, 0, 0, 0) 0%, rgba(221, 214, 214, 0.3) 50%, rgba(255, 0, 0, 0) 100%);
    /* Transform to move from left to right without rotation */
    transform: translateX(-150%);
    transition: transform 1s ease-in-out;
}

.service_glass:hover::before {
    /* Final position on hover */
    transform: translateX(50%);
}

.srvice_section_content {
    padding: 40px 30px;
}

.project_left {
    padding-right: 50px;
    text-align: left;
    border-right: 1px solid #979191;
}

.project_details_top {
    padding: 20px;
}

.project_details_top img {
    width: 100%;
    height: 581px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    /* Smooth transition */
    transform: scale(1);
    /* Initial state */
}

.project_details_top:hover img {
    transform: scale(1.06);
    /* Zoom state on hover */
}

.project_details_container {
    margin-top: 10px;
    border: 1px solid rgb(207, 207, 207);
    padding: 20px;
    height: 100%;
    box-shadow: 2px 2px 8px -2px rgba(145, 145, 145, 0.75);
    -webkit-box-shadow: 2px 2px 8px -2px rgba(145, 145, 145, 0.75);
    -moz-box-shadow: 2px 2px 8px -2px rgba(145, 145, 145, 0.75);
}

.project_details_container h1 {
    font-family: var(--heading-font);
    font-size: 30px;
    margin-top: 30px;
    font-weight: bold;
}

.project_details_container h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: normal;
}

.project_details_container p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 15px;
}

.custom_btn_design {
    font-family: var(--heading-font);
    font-size: 20px;
    border: 1px solid #000000;
    color: rgb(0, 0, 0);
    padding: 10px 40px;
    letter-spacing: 4px;
}

.line {
    width: 120%;
    height: 1px;
    background-color: #979191;
    margin-top: 30px;
}

.project_right {
    padding-left: 50px;
    padding-top: 120px;
    text-align: right;
    position: relative;
}

.line2 {
    position: absolute;
    left: -5%;
    width: 105%;
    height: 1px;
    background-color: #979191;
    margin-top: 30px;
}

.c-m-t {
    margin-top: 80px;
}

.box_header {
    font-family: var(--heading-font);
    font-weight: bold;
    font-size: 34px;
    padding-top: 15px;
}

.partner_box {
    padding: 20px 0;
    border-top: 1px solid #979191;
    border-bottom: 1px solid #979191;
}

.partnership_box_content {
    height: 100%;
}

.partnership_box_content img {
    height: 520px;
    width: 100%;
    object-fit: cover;
}

.partnership_box_content p {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    color: #474545;
    margin-top: 20px;
}

.newsletter_section {
    height: 100%;
    background: url(../img/home/15.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    overflow: visible;
    box-shadow: inset 0 0 0 2000px rgba(20, 20, 20, 0.486);
    position: relative;
}

.newsletter_design {
    height: 100%;
    width: 100%;
}

.newsletter_img1 {
    position: absolute;
    top: -10px;
    left: 0;
}

.newsletter_img1 img {
    height: 74px;
    width: 600px;
}

.newsletter_img2 {
    position: absolute;
    bottom: -10px;
    right: 0;
}

.newsletter_img2 img {
    height: 74px;
    width: 600px;
}

.newsletter_content {
    padding: 50px 0;
}

.newsletter_content h1 {
    text-align: center;
    font-weight: bold;
    font-family: var(--heading-font);
    color: white;
    font-size: 34px;
}

.newsletter_content hr {
    background-color: white;
    color: white;
}

.form_submit_box {
    width: 60%;
    margin-left: 20%;
}

.form_submit_box .form-control {
    padding: 15px 10px;
}

.form_box {
    padding-top: 50px;
    text-align: center;
}

.form_box h4 {
    font-size: 54px;
    color: white;
}

.form_box p {
    font-size: 18px;
    width: 80%;
    margin-left: 10%;
    line-height: 1.4;
    color: rgb(240, 240, 240);
}

.why_naksha_left_image {
    height: 100%;
    padding-right: 5%;
    border-right: 1px solid #979191;
}

.why_naksha_left_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    /* Smooth transition */
    transform: scale(1);
    /* Initial state */
}

.why_naksha_left_image:hover img {
    transform: scale(1.05);
    /* Zoom state on hover */
}

.why_naksha_right_text {
    height: 100%;
    padding-left: 5%;
}

.why_naksha_right_text h3 {
    font-size: 30px;
    line-height: 1.4;
    color: black;
    font-weight: bold;
    padding-bottom: 20px;
    font-family: var(--default-font);
}

.why_naksha_right_text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    text-align: justify;
}

.why_naksha_right_text ul li {
    font-size: 28px;
    font-weight: normal;
    line-height: 1;
    text-align: justify;
}

.why_naksha_right_text h4 {
    font-size: 30px;
    line-height: 1;
    color: black;
    font-weight: bold;
    padding-bottom: 20px;
    font-family: var(--default-font);
}

.why_naksha_right_box {
    padding: 6px 0;
    border-bottom: 1px solid #979191;
}

.why_naksha_right_box p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: justify;
}

.why_naksha_right_box:nth-child(1) {
    padding-top: 0px !important;
}

.why_naksha_right_box:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
}

.faq_naksha .accordion {
    --bs-accordion-bg: var(--background-color);
    --bs-accordion-border-width: 0px;
}

.accordion-button {
    font-size: 26px;
    font-family: NokshaFontSecond;
    border-bottom: 1px solid #979191;
    line-height: 1.4;
    padding-left: 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--background-color);
    color: black
}

.accordion-body {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.4;
    padding: 10px 0;
}

.accordion-button:focus {
    box-shadow: none;
}


/*--------------------------------------------------------------
# Privacy Policies
--------------------------------------------------------------*/

.naksha_pp_container {
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
}

.naksha_pp_container h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.naksha_pp_effective-date {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-style: italic;
}

.naksha_pp_container p,
.naksha_pp_container ul {
    font-size: 1em;
    margin-bottom: 20px;
}

.naksha_pp_container h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #bdc3c7;
    padding-bottom: 5px;
}

.naksha_pp_container ul {
    list-style-type: none;
    padding-left: 0;
}

.naksha_pp_container ul li {
    margin-bottom: 10px;
}

.naksha_pp_contact-section p {
    font-weight: 500;
    font-size: 1em;
}

.naksha_pp_contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.naksha_pp_contact-info i {
    font-size: 20px;
    margin-right: 10px;
    color: #3498db;
}

.naksha_pp_contact-info a {
    color: #3498db;
    text-decoration: none;
}

.naksha_pp_contact-info a:hover {
    text-decoration: underline;
}

.naksha_pp_consent {
    font-style: italic;
    margin-top: 30px;
    text-align: center;
    color: #555;
}

.naksha_pp_icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.naksha_pp_icon-text i {
    margin-right: 8px;
    color: #3498db;
}

.slick-prev::before,
.slick-next::before {
    color: black;
}


/*--------------------------------------------------------------
# contact us page design
--------------------------------------------------------------*/

.naksha_header-section {
    height: 400px;
    background-size: cover;
    background-position: bottom;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    padding-top: 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.naksha_header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.527);
}

.naksha_header-content {
    position: relative;
    z-index: 10;
}

.naksha_header-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.naksha_breadcrumb {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

@keyframes drawLineFromLeft {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes drawLineFromRight {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.contact_page_section {
    position: relative;
}


/* Top and bottom horizontal lines with animation */

.contact_page_section::before,
.contact_page_section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #b8b8b8;
}

.story-container::before {
    top: 0;
}

.story-container::after {
    bottom: 0;
}

.contact_content {
    padding: 40px 0;
}

.contact_content h2 {
    font-size: 40px;
    font-weight: 900;
    position: relative;
    text-transform: capitalize;
}

.contact_content_details {
    border-left: 1px solid #b8b8b8;
    padding-left: 30px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.contact_content_details_form {
    border-left: 1px solid #b8b8b8;
    padding-left: 30px;
}

.contact_content p {
    font-size: 18px;
    line-height: 1.4;
    color: black;
    text-align: left;
}

.form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3 {
    font-weight: 700;
    color: #333;
}

.form-section-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-control,
.form-select {
    border: none;
    border-bottom: 2px solid #333;
    background-color: transparent;
    border-radius: 0;
    padding: 10px 0;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: #c49925;
    background-color: transparent;
}

.form-check-label {
    margin-bottom: 5px;
}

.form-check-input {
    background-color: transparent;
    border: 2px solid #c49925;
}

.form-check-input:checked {
    background-color: #c49925;
    border-color: #c49925;
}

.btn-submit {
    background-color: #c49925;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #a07d1e;
}

.form-group-info {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.naksha_send-btn {
    padding: 15px;
    text-transform: none;
    color: #ffffff;
    border-radius: 0px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    background: #3b3214;
    width: 100%;
}

.naksha_send-btn:hover {
    color: #535050;
    background: #e4dddd;
}

.naksha_contact-details h5 {
    font-weight: 600;
    margin-top: 2rem;
}

.naksha_info-card p {
    color: #6c757d;
}

.naksha_social-icons {
    display: flex;
    gap: 1rem;
}

.naksha_social-icons a {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.2s;
}

.naksha_social-icons a:hover {
    color: #c49925;
}


.naksha_map-section {
    height: 500px;
    overflow: hidden;
    position: relative;
    padding: 0 15px;
}

.naksha_map-section iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
    .contact_content {
        padding: 20px 0;
    }
    .contact_content h2 {
        font-size: 26px;
    }
    .contact_content_details {
        border-left: 0px;
        padding-left: 0px;
    }
    .contact_content_details_form {
        border-left: 0;
        padding-left: 0px;
    }
    .contact_content p {
        font-size: 16px;
    }
}


/*--------------------------------------------------------------
# Privacy Policy Design
--------------------------------------------------------------*/

.privacy-policy-container h1 {
    font-size: 40px;
    font-weight: 900;
    position: relative;
}

@media (max-width: 1199px) {
    .header .logo img {
        max-height: 45px;
    }
    .footer .footer-about .logo img {
        max-height: 45px;
    }
    .footer {
        padding-top: 40px;
    }
    .section-title h1 {
        font-size: 26px;
    }
    .hero_header h1 {
        font-size: 28px;
    }
    .about_left_text p {
        font-size: 16px;
    }
    .section_top_design p::after {
        width: 100%;
    }
    .naksha_home_about_text_container {
        padding-left: 0;
    }
    .hero_btn_design {
        font-size: 18px;
        padding: 5px 20px;
    }
    .section-title p {
        font-size: 18px;
    }
    .hero_btn_design i {
        font-size: 18px;
    }
    .custom_btn_design {
        font-size: 18px;
        padding: 5px 20px;
    }
    .hero_details .hero_glass {
        width: 100%;
        padding: 15px 20px;
    }
    .hero_details .hero_glass p {
        font-size: 16px;
        text-align: center;
    }
    .hero_details {
        bottom: 15%;
    }
    .section-title {
        padding-bottom: 30px;
    }
    .about_left_image-container {
        height: 550px;
        margin-top: 15px;
    }
    .about_text p {
        padding-top: 2px;
        text-align: justify;
        font-size: 16px;
    }
    .about_text ul li {
        font-size: 24px;
    }
    .about_left_image {
        height: 250px;
    }
    .about_right_image {
        margin-top: 50px;
        height: 250px
    }
    .about_right_content {
        width: 100%;
        border-left: 0;
        padding-left: 0;
        margin-left: 0;
    }
    .about_text h3 {
        font-size: 26px;
    }
    .service_left_box {
        padding-left: 0;
    }
    .srvice_section_content {
        padding-left: 0px;
    }
    .service_right_box {
        padding-left: 0px;
    }
    .service_right_box h1 {
        font-size: 26px;
        text-align: left;
    }
    .service_glass {
        background: transparent;
        box-shadow: 0;
        border: 0px;
    }
    .project_details_top h1 {
        font-size: 26px;
    }
    .service_left_box h1 {
        font-size: 26px;
    }
    .service_left_box p {
        font-size: 16px;
        text-align: left;
        width: 100%;
    }
    .service_right_box p {
        font-size: 16px;
        text-align: left;
        width: 100%;
    }
    .service_left_box img {
        height: 70px;
        width: 70px;
    }
    .service_right_box img {
        height: 70px;
        width: 70px;
    }
    .service_content {
        margin-top: 30px;
    }
    .project_right {
        padding-left: 0px;
        padding-right: 10px;
        padding-top: 40px;
        text-align: left;
        border-right: 1px solid #979191;
    }
    .project_details_top img {
        height: 380px;
    }
    .project_left {
        padding-right: 10px;
    }
    .line2 {
        display: none;
    }
    .line {
        width: 100%;
    }
    .newsletter_img1 img {
        width: 60%;
        height: 40px;
    }
    .newsletter_img2 img {
        display: none
    }
    .form_submit_box {
        width: 90%;
        margin-left: 5%;
    }
    .box_header {
        font-size: 24px;
        padding-top: 20px;
    }
    .form_box h4 {
        font-size: 26px;
    }
    .form_box p {
        font-size: 16px;
    }
    .newsletter_content h1 {
        font-size: 26px;
    }
    .footer .footer-top {
        padding-top: 10px;
    }
    .partnership_box_content {
        height: 100%;
    }
    .partnership_box_content img {
        height: 420px;
    }
    .why_naksha_left_image {
        padding-right: 0px;
        border-right: 0px;
        padding-bottom: 40px;
    }
    .why_naksha_right_text h3 {
        font-size: 26px;
    }
    .why_naksha_right_text {
        padding-left: 0px;
    }
    .why_naksha_right_text p {
        font-size: 16px;
    }
    .why_naksha_right_box {
        padding: 5px 0;
    }
    .why_naksha_right_text ul li {
        font-size: 24px;
    }
    .accordion-button {
        font-size: 18px;
    }
    .accordion-body {
        font-size: 16px;
    }
    .project_details_top p {
        font-size: 16px;
    }
    .project_left {
        padding-right: 0px;
    }
    .project_details_top {
        padding-right: 0px;
        padding-bottom: 0px;
    }
    .footer .footer-links ul a {
        font-size: 16px;
    }
    .naksha_header-section {
        height: 300px;
    }
    .naksha_header-content h1 {
        font-size: 50px;
    }
}