/*
Theme Name: Luxe And Yant
Theme URI: https://wordpress.org/themes/twentyfourteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.
Version: 4.1
Requires at least: 3.6
Tested up to: 6.7
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, news, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready, block-patterns
Text Domain: twentyfourteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 * 5.0 - Navigation
 * 6.0 - Content
 *   6.1 - Post Thumbnail
 *   6.2 - Entry Header
 *   6.3 - Entry Meta
 *   6.4 - Entry Content
 *   6.5 - Galleries
 *   6.6 - Post Formats
 *   6.7 - Post/Image/Paging Navigation
 *   6.8 - Attachments
 *   6.9 - Archives
 *   6.10 - Contributor Page
 *   6.11 - 404 Page
 *   6.12 - Full-width
 *   6.13 - Singular
 *   6.14 - Comments
 * 7.0 - Sidebar
 *   7.1 - Widgets
 *   7.2 - Content Sidebar Widgets
 * 8.0 - Footer
 * 9.0 - Featured Content
 * 10.0 - Multisite
 * 11.0 - Media Queries
 * 12.0 - Print
 * -----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Resetting and rebuilding styles have been helped along thanks to the fine
 * work of Eric Meyer, Nicolas Gallagher, Jonathan Neal, and Blueprint.
 *
 * -----------------------------------------------------------------------------
 */

/* html {
    scroll-behavior: smooth;
  } */
.title{
	color: #18181a !important;
}
body {
    font-family: Segoe UI;
    background-color: #F9F9F9 !important;
	color: #5D5D5D !important;
}

p{
	font-family: Segoe UI, sans-serif;
	font-size: 14px;
	text-align: left;
}
.font-28{
	font-size: 28px;
}
.fs-28{
	font-size: 28px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    background-color: #fff;
	height: 88px;
}

.logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.logo svg {
    width: 130px;
}

.menu-toggle {
    cursor: pointer;
    font-size: 1.5rem;
}

.menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
	 font-family: "Roboto Serif", serif;
}

.menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
}
.menu-image {
    overflow: hidden;
    max-height: 95%;
}
.menu-image img{
    object-fit: contain;
	height: 100vh;
	width: auto;
}
.fixed-bottom{
	background-color: #f9f9f9;
}
.dropdown ul {
   padding: 0 10px;
	margin-top: 30px !important;
	width: 250px;
	 border: none;
    background: #e6e6e6;
  }

.dropdown ul li {
  padding: 0;
  margin: 0;
}

.dropdown ul li a:link, .dropdown ul li a:visited {
 background: #e6e6e6;
	color: #18181A;
 
}
.dropdown ul li a:hover {
 background: #f5f5f5;
	color: #18181A;
 
}

.top-positiin-border{
	position: absolute;
	top:30px;
	right: 120px;
	font-size: 16px;
}

/* Dropdown triangle */
.dropdown ul::before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e6e6e6 transparent;
/* 	background-image: url('https://luxeandyant.com/wp-content/uploads/2025/02/Polygon1.png');
    background-repeat: no-repeat; */
}

/* Close the dropdown with outside clicks */
.dropdown-toggle::before {
  display: none;
}
.dropdown-item{
	padding: 14px !important;
}

.dropdown[open] > .dropdown-toggle::before {
    content: ' ';
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

@media only screen and (max-width: 600px){
	.menu-image {
		display: none;
	}
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
  }

  .dropdown-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }


.dropdown-toggle::after {
    display: none!important;
   
}
.menu-content a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px; /* Adjust for spacing */
    width: 0;
    height: 2px;
    transition: width 0.6s ease-in-out;
}

.menu-content a:hover::after,.menu-content a.active::after {
    width: 100%;
}


.title {
    text-align: center;
      font-size: 50px;
     
    font-family: "Roboto Serif", serif;
}

.scroll-wrapper {
    width: 100vw;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-container {
    display: flex;
}

.image {
    width: 25vw;
    height: 60vh;
    margin: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 1rem;
	
}

.footer-icons a {
/*     margin: 0 6px; */
	text-decoration: none;
	margin-left: 12px;
	
}
.dropdown-menu.show {
    width: 100%;
}
.main-heading{
	font-size: 16px;
font-family: "Roboto Serif", serif;
}
.font-12{
	font-size: 12px;
}
.font-50{
	font-size: 50px;
}

/* Fullscreen Menu Styling */
.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 222;
    background: #faf8f5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease-in-out;
}

.menu-content{
    text-align: right;
    
    margin-left: auto;
	line-height: 3.5rem;
	display: flex;
	flex-direction: column;
	color: #18181a;
}
.menu-content .menu-items {
    position: relative;
	font-size: 50px;
	line-height: 56px;
    text-decoration: none;
    color: #18181a;
    padding-bottom: 5px; /* Space for underline */
	 font-family: "Roboto Serif", serif;
}

.menu-content a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #212529; /* Adjust color */
/* 	transition: width 0.3s ease-in-out; */
    transition: width 0.3s ease-in-out, right 0.3s ease-in-out;
}

.menu-content a:hover::after {
    width: 100%;
    right: 0;
/*     left: 0; */
}


.menu-content .contact {
  
    margin-top: 5rem;
    color: #18181a;
	position: absolute;
	bottom: 90px;
	right: 40px;
	
}
.menu-content .contact p{
    font-size: 16px;
    margin-bottom: 13px;
    color: #666;
	line-height: 1rem;
	text-align: right
}
.menu-content .contact p:hover::after {
    width: 100%;
    right: 0;
/*     left: 0; */
}

/* Close Button */
.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    cursor: pointer;
    color: #18181a;
}



/* ---------------------------------projects pages----------------------------------- */

.project-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.project-images {
    width: 55%;
    display: flex;
    gap: 20px;
}

.project-images img {
    width: 50%;
    height: auto;
    /* border-radius: 10px; */
}

.project-details {
    width: 45%;
}


.project-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.project-nav a {
    text-decoration: none;
    color: #18181a;
    font-size: 0.9rem;
    font-weight: bold;
}

.project-nav a:hover {
    text-decoration: underline;
}

/* ==================================cursor style000000000000000000000000 */
.outline {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #212529;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 9999;
  }
  
  .cursor {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: #18181a;
    opacity: .5;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 9999;
  }
  
  .hover {
    background-color: #E94549;
    opacity: 0.5;
    z-index: 9999;
  }
  
  /* 00000000000000000000000000000000000000 */
  .coming-soon-container {
    position: relative;
    display: flex;               /* Enable Flexbox */
    flex-direction: column;      /* Stack items vertically */
    justify-content: center;     /* Center vertically */
    align-items: center;         /* Center horizontally */
        text-align: center;
    min-height: 70vh;                /* Set height for vertical centering */
}
.coming-soon-container .background-text {
    position: absolute;
    color: rgba(0, 0, 0, 0.05);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* .coming-soon-container .background-text {
    position: absolute;
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.05);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Noto Serif', serif;
} */

/* .coming-soon {
    font-family: 'Brush Script MT', cursive;
    font-size: 134px;
    color: #333;
} */


/* .owl-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
} */
.paragraph-text{
	max-width: 622px;
}
/* General Carousel Container */
#imageCarousel {
        margin: 50px auto; /* Center the carousel with some spacing from the top */
    position: relative;
}

/* Carousel Items */
#imageCarousel .item {
    position: relative;
    overflow: hidden;
    /* border-radius: 15px;  */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

#imageCarousel .item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensure images cover the container without distortion */
    display: block;
}

/* Hover Effect */
/* #imageCarousel .item:hover {
    transform: scale(1.05);
} */

/* Navigation Buttons */
#projectCarousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    height: 40px;
    color: #fff !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#projectCarousel .owl-nav button.owl-prev {
    left: 0px; /* Position to the left of the carousel */
}

#projectCarousel .owl-nav button.owl-next {
    right: 0px; /* Position to the right of the carousel */
}

#projectCarousel .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
}

/* Dots Navigation */
#projectCarousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

#projectCarousel .owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #333 !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}
#projectCarousel .owl-dots .owl-dot span{
    display: none !important;
   
}

#projectCarousel .owl-dots .owl-dot.active {
    background-color: #333; /* Highlight active dot */
    width: 30px;
       transform: scale(1.2);
    width: 30px;
    border-radius: 6px;
}

#projectCarousel .owl-dots .owl-dot:hover {
    background-color: #555; /* Darker on hover */
}

#projectCarousel.owl-carousel .owl-dots.disabled, #projectCarousel.owl-carousel .owl-nav.disabled {
    display: block;
}
/*  #projectCarousel .item img {
  width: auto;
   height: auto;
     
}
 #projectCarousel .item {
  max-height: 500px; 
} */

/* -----------------------------------------priduct-detais page------------------------ */
/* General Container Styling */
main.container-fluid {
    background-color: #f9f9f9;  /* Soft background for better contrast */
    padding: 50px 20px;
    font-family: 'Roboto', sans-serif;
}

/* Carousel Styling */
.owl-carousel .item {
    position: relative;
    overflow: hidden;
    /* border-radius: 15px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.owl-carousel .item img {
/*     max-width: 100%; */
/*     height: 100%; */
/*     object-fit: cover;
    display: block; */
}

/* .owl-carousel .item:hover {
    transform: scale(1.03);
} */

/* Project Description Section */
h1.display-4 {
    font-family: 'Roboto Serif', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

p.lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Project Details Styling */
.project-details p {
    font-size: 1rem;
    margin: 10px 0;
    color: #444;
}

.project-details strong {
    color: #222;
}

/* Navigation Buttons */
.btn-outline-secondary {
    border-radius: 25px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Responsive Adjustments */

/* ------------------------------------------about css coustomisation---------------------------------- */
.font-roboto{
 font-family: "Roboto Serif", serif;
}
.font-segoe{
	font-family: Segoe UI;
}
.size-16{
	font-size: 16px;
}
.size-12{
	font-size: 12px;
}
.size-24{
	font-size: 24px;
}
.form-control{
	    padding: .7rem !important;
}
.color-email{
	color: #18181A;
}
.color-shadow{
	color: #5D5D5D;
}
.btn-dark{
	width: 135px;
	height: 48px;
	display: flex;
justify-content: center;
	align-items: center;
}
.paragraph-text{
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.coming-soon-container .background-text{
		font-size: 7rem;
	}
	.coming-soon{
		font-size: 44px;
	}
	
	.coming-soon-container {
        min-height: 20vh;
    margin-top: 156px;
}
	.coming-soon svg{
  width: 270px;
}
		.coming-soon-container .background-text svg{
  width: 240px;
}
	.paragraph-text{
		width: 291px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 550px) {

	.header{
		height: 111px;
	}
	.logo svg {
    width: 83px;
}
	.page-template-coming-soon-template footer,
	.page-template-front-page-template footer{
		position: fixed;
		bottom: 0;
		left: 10px;
		right: 10px;
	}
	.page-template-about-page .container,
	.page-template-press-template .container,
	.page-template-contact-template .container{
		padding: 0 30px;
	}
}

/* --------------------style----------------------------- */
.custom-image-container {
    width: 100%;
    height: 100vh;
}

.custom-img {
    object-fit: contain;
}

.custom-overlay {
    background: rgba(0, 0, 0, 0.5);
}


#service-details .owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #333 !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3sease;
}
#service-details .owl-dots .owl-dot.active {
    background-color: #5D5D5D;
    width: 30px;
       transform: scale(1.2);
    width: 30px;
    border-radius: 6px;
}

#service-details .owl-dots .owl-dot:hover {
    background-color: #18181A; /* Darker on hover */
}
#service-details .owl-dots .owl-dot span {
    display: none !important;
}


/*--- 060325-----*/
.blockquote-footer {
    margin-top: 5px;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #18181A;
    text-align: left;
	font-family: "Roboto Serif", serif;
}

.h4, h4 {
    font-weight: normal;
}
.single-project h1{
	text-align: left;
    font-family: "Roboto Serif", serif;
	color: #18181a;
	font-weight: normal;
	

}
.project-template-default .my-5{
	margin: 1.5rem 0 !important;
} 