:root{
	--white_clr:  #fff;
	--black_clr: #000;
	--text_clr: #242625;
	--text_clr_light: #a1a1a1;
	--primary_clr: #7b0f16;
	--secondary_clr: #c3000d;
	--body_clr: #fcf7f4;
	--yellow_clr: #f9a93e;
	--primary_font_family: "Poppins", sans-serif;
	--secondary_font_family: "Poppins", sans-serif;
	--bdr_clr: #cacaca;
	--bdr-radius-80: 80px;
	--bdr-radius-40: 40px;
	--shadow-1: 0 1px 3px rgba(0,0,07,0.05);
}
/*Slick Slider Css Start*/
.slick-slider{
	position:relative; display:block; -webkit-touch-callout:none;-khtml-user-select:none;
	-ms-touch-action:pan-y; touch-action:pan-y;-webkit-tap-highlight-color:transparent;
}
.slick-list{
	position:relative; display:block; overflow:hidden; margin:0; padding:0; min-width: 100%;
}
.slick-list.dragging{
	cursor: pointer;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
	-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);
}
.slick-track{
	position:relative; top:0; left: 0; min-width: 100%;
	display:flex;display:-webkit-flex;
}
.slick-track:before,
.slick-track:after{display:table; content:"";}
.slick-track:after{clear:both;}
.slick-loading .slick-track{visibility:hidden;}
.slick-slide{
	display:none; min-height:1px; flex-grow: 1; flex: inherit;
}
.slick-initialized .slick-slide{
	display: block; list-style:none;
}
.slick-loading .slick-slide{
	visibility: hidden;
}
.slick-vertical .slick-slide{
	display: block; height: auto; border:1px solid transparent;
}
.slick-arrow{
	display:flex; align-items: center; justify-content: center; position:absolute; top:50%; margin-top:-16px; z-index:2;
	padding:0; width:32px; height:32px; text-align:center; font-size:0; border:0;
	color: var(--white_clr); cursor:pointer; opacity:1; background: var(--primary_clr);
	-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s; box-shadow: 0 0 10px rgba(0,0,0,0);
}
.slick-arrow:before{
	display: block; content: "\f104"; font-family: 'Line Awesome Free'; font-weight: 900; font-size: 14px;
}
.slick-arrow.slick-next:before{
	content: "\f105";
}
.slick-arrow.slick-prev{left:0;}
.slick-arrow.slick-next{right:0;}
.slick-arrow:hover{
	color: var(--white_clr); background: var(--secondary_clr);
}
.slick-arrow.slick-disabled{
	background: var(--bdr_clr); color: var(--secondary_clr); cursor: inherit;
}
.slick-dots{
	display:flex;display:-webkit-flex; align-items: center; justify-content: center;
	position:absolute; left:0; right:0; margin:0 auto; padding:0; bottom:-10px; text-align:center;
}
.slick-dots li{
	margin:0 5px; padding:0; list-style:none; display:inline-block; vertical-align:top;
}
.slick-dots li button{
	display:block; width:7px; height:7px; font-size:0; padding: 0; background: #ddd; border:none;
	cursor:pointer; position: relative; -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
	border-radius:50%; 
}
.slick-dots li.slick-active button{
	background: var(--primary_clr); width: 10px; height: 10px;
}
/*Slick Slider Css End*/
/* ===== RESET ================================================== */
abbr, acronym, address, applet, article, aside, audio,b, blockquote,big, body, button, center, canvas, caption, cite, code, command,datalist, dd, del, details, dfn, dl, div, dt, embed,fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html,i, iframe, img, ins,kbd, keygen,label, legend, li, meter,nav,object, ol, output,p, pre, progress,q, s, samp, section, small, source, strike, sub, sup,table, tbody, tfoot, thead, th, tr, tdvideo, tt, var{background:transparent; border:0 none; margin:0; padding:0; line-height:normal; vertical-align:baseline; outline:none; font-size:100%; font-family:inherit; font-weight:400; font-style:normal;} article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;} blockquote,q{quotes:none;} blockquote:before,q:before{content:'';content:none;} blockquote:after,q:after{content:'';content:none;} ins {text-decoration:none;} abbr[title], dfn[title] {border-bottom:1px dotted; cursor:help;} table {border-collapse:collapse; border-spacing:0;} hr {display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0;}input, select {vertical-align:middle; margin:0;} ol, ul, li {list-style:none;}
html{-webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; scroll-behavior: smooth;}
*, *:before, *:after{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; -webkit-tap-highlight-color:rgba(255,255,255,0);}
/* ===== GLOBAL ================================================== */
body{
	margin:0; padding:0; background:var(--body_clr); font-family:var(--primary_font_family);
	font-size:16px; color: var(--text_clr); line-height:24px; font-weight:400; overflow-x:hidden;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	text-rendering: optimizeLegibility;
}
:focus, button:focus{outline:none;}
a{text-decoration:none; color: var(--text_clr); -moz-transition:all 0.4s ease 0s; -webkit-transition:all 0.4s ease 0s; transition:all 0.4s ease 0s;}
a:hover{text-decoration:none; color:var(--primary_clr);}

::-webkit-input-placeholder{color:var(--text_clr); opacity:0.5;}
:-moz-placeholder{color:var(--text_clr); opacity:0.5;} /* Firefox 18- */
::-moz-placeholder{color:var(--text_clr); opacity:0.5;} /* Firefox 19+ */
:-ms-input-placeholder{color:var(--text_clr); opacity:0.5;}

.clear{width: 100%; clear: both;}
img{max-width:100%; height:auto; border:none; outline:none;}
b, strong{font-weight:700;}

/* Ul Li & Ol Li CSS */
ul, ol{margin:0 0 20px; padding:0;}
ul ul, ol ol, ul ol, ol ul{margin-top:15px;}
ul li, ol li{margin:0; padding:0; font-size: 16px; line-height: 1.4; color:var(--text_clr); font-weight: 400; letter-spacing:0;}
.entry-content ul{padding:0; margin:0 0 20px;}
.entry-content ol{padding:0; margin:0 0 20px; list-style: none; counter-reset: my-awesome-counter;}
.entry-content ul li{position:relative; padding:0 0 0 30px; margin:0 0 10px;}
.entry-content ul li:before{
	content:""; position:absolute; left: 12px; top: 10px; width: 6px; height: 6px;
	background: var(--text_clr); outline-offset: 3px;
	-webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%;
}
.entry-content ul li li{list-style:disc;}
.entry-content ol li{counter-increment: my-awesome-counter; margin:0 0 8px;}
.entry-content ol li::before{content: counter(my-awesome-counter) ". "; font-weight:400;}

/* Heading CSS */
h1, .h1, h2, .h2, h3, h4, h5, h6{color: var(--text_clr); line-height:1.3; font-weight: 700; font-family:var(--secondary_font_family); font-synthesis: none; letter-spacing:0; margin:0 0 15px;}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{color: var(--black_clr);}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover{color:var(--primary_clr);}
h1, .h1{font-size: 48px; line-height:1.2; margin:0 0 20px;}
h2, .h2{font-size: 32px; line-height:1.2; margin:0 0 20px;}
h3{font-size:28px;}
h4{font-size:24px;}
h5{font-size:22px;}
h6{font-size:20px;}
.big-heading{font-size: 5.556vw; font-weight: 400; text-transform: uppercase;}
/* Paragraph CSS */
p{font-size: 16px; line-height: 1.4; color:var(--text_clr); font-weight: 400; letter-spacing:0; margin:0 0 20px;}
hr{border:none; margin:30px 0; background:var(--text_clr); height:1px; width:100%; clear:both; opacity: 0.3;}
body .wp-block-separator{border: 0;}
blockquote{border-left:5px solid #eee;font-size:16px; margin:0 0 20px; padding:10px 20px;}
/*table structure*/
table, .entry-content table{border-right:1px solid #eee; border-top:1px solid #eee;}
table th, table td, .entry-content th, .entry-content table th, .entry-content td, .entry-content table td {background:var(--white_clr); border-left:1px solid #eee; border-bottom: 1px solid #eee; text-align:left; font-size:16px; color:#333; font-weight:400; padding:12px 20px; vertical-align:middle;}
table th{color:#111; font-weight:400; background:#d4d5d6;}
.table-striped th, .table-striped td{position:relative;}
.table-striped tbody tr:nth-of-type(even) td{background:#d4d5d6;}
/*Form Input Field*/
input, textarea, select{
	background:var(--white_clr); border:1px solid var(--bdr_clr); width:100%; padding:4px 20px; margin:0;
	font-size:16px; color:var(--black_clr); font-weight:400; line-height:normal; letter-spacing:0; font-family:var(--primary_font_family); height: 48px; outline:none;
	-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;
}
input[type="button"], input[type="submit"] {cursor:pointer; width:auto; height:auto;}
input[type="checkbox"], input[type="radio"] {border:none; width:auto; height:auto;}
textarea {display: block; height:100px; padding:20px; min-height:140px; resize: none;}
input[type="button"], input[type="submit"], input[type="image"], input[type="file"], input[type="search"]{-webkit-appearance:none;}
input#addressSubmit {-webkit-appearance:none !important ; }
input[type="radio"], input[type="checkbox"]{-webkit-appearance:normal;}
.checkbox, .radiobox{display: inline-block; position: relative; padding-left: 24px; font-size: 14px; line-height: 14px; color: #676767;}
.checkbox input, .radiobox input{position: absolute; left: 0; top: 0; opacity: 0;}
.checkbox .checkmark{display: block; width: 13px; height: 13px; border: 1px solid #111; position: absolute; left: 0; top: 0;}
.checkmark:before{display:block; content:"\f00c"; font-family:'FontAwesome'; position:absolute; left:0; right:0; top:0; text-align:center; font-size:10px; color:var(--white_clr); line-height:10px; padding-left:1px; opacity:0;}
.checkbox input:checked ~ .checkmark{background:#111; border-color:#111;}
.checkbox input:checked ~ .checkmark:before{opacity:1;}
.radiobox .checkmark{display: block; width: 16px; height: 16px; background: var(--white_clr); border: 1px solid #111; -webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%; position: absolute; left: 0; top: 1px;}
.radiobox .checkmark:before{display: none;}
.radiobox .checkmark:after{display: block; content: ""; background: #111; -webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%; position: absolute; left: 2px; right: 2px; top: 2px; bottom: 2px; opacity: 0;}
.radiobox input:checked ~ .checkmark:after{opacity: 1;}
/*Button styling*/
.button, .btn{
    display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex;
    -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
    padding: 16px 20px; background: var(--white_clr); border: 1px solid var(--primary_clr); color: var(--primary_clr); font-size: 16px; line-height: 1; font-weight: 400; cursor: pointer;
    letter-spacing: 0; text-align: center; position: relative; min-width: 140px; font-family: var(--secondary_font_family); text-transform: none;
    -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; overflow: hidden; gap: 10px;
    -webkit-border-radius: 40px;-moz-border-radius: 40px;border-radius: 40px;
}
.button:hover, .btn:hover,
.button:focus, .btn:focus{
    background:var(--primary_clr); border-color:var(--primary_clr); color:var(--white_clr);
    -webkit-box-shadow:0 2px 15px rgba(0,0,0,0.16); box-shadow:0 2px 15px rgba(0,0,0,0.16);
}
.primary,
.primary:hover,
.primary:focus{
    background: var(--primary_clr); border-color: var(--primary_clr); color: var(--white_clr); border: 0;
}
.primary:hover,
.primary:focus{
    background: var(--secondary_clr); border-color: var(--secondary_clr); color: var(--white_clr);
}
.secondary{
    background: var(--secondary_clr); border-color: var(--secondary_clr); color: var(--white_clr);
}
.yellow-btn{
    background: var(--yellow_clr); border-color: var(--yellow_clr); color: var(--white_clr);
}
.secondary:hover,
.secondary:focus{
    background: var(--primary_clr); border-color: var(--primary_clr); color: var(--white_clr);
}
.white-btn,
.white-hover:hover,
.white-hover:focus{
    background: var(--white_clr); border-color: var(--white_clr); color: var(--black_clr);
}
.white-btn:hover,
.white-btn:focus{
    background: var(--white_clr); border-color: var(--white_clr); color: var(--primary_clr);
}
.white-bdr{
    border-color: var(--white_clr); color: var(--white_clr);
}
.white-bdr:hover{
    background: var(--white_clr); border-color: var(--white_clr); color: var(--text_clr);
}
.small.btn{
	padding: 10px 15px;
}
.more-link{
	display: inline-flex; align-items: center;
	font-size: 18px; color: var(--primary_clr); font-weight: 500; position: relative;
}
.more-link i{
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--primary_clr); color: var(--white_clr);
	width: 32px; height: 32px; border-radius: 50%; margin-left: 10px;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.more-link:hover{
	color: var(--secondary_clr);
}
.more-link:hover i{
	color: var(--white_clr); background: var(--secondary_clr);
}
.main-wrapper{position: relative; z-index: 4;}
.container{margin:0 auto; width:100%; max-width:1170px; padding:0 20px;}
.container.relative{z-index: 2;}
.max-container{margin:0 auto; width:100%; max-width: 1540px; padding:0 40px;}
.fluid-container{max-width: 100%;}
section{position: relative;-webkit-transition:all 0.4s ease 0s;-o-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;}
section *:last-child{margin-bottom:0;}
.hide{display:none;}
.v-center{-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.j-center{-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.ptb-80{padding:80px 0;}
.ptb-60{padding:60px 0;}
.ptb-40{padding:40px 0;}
.ptb-30{padding:30px 0;}
.ptb-20{padding:20px 0;}
.ptb-10{padding:10px 0;}
.bg1{background: var(--primary_clr);}
.bg2{background: #1c1c1c;}
.bg3{background: #f4f7fb;}
.grd-bg{
	position: absolute; left: 0; right: 0; top: 0; bottom: 0;
	background: linear-gradient(to bottom, rgba(236,237,245,1) 50%,rgba(50,122,206,0.2) 100%);
}
.glass-style{
    border: 1px solid var(--white_clr);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 20px 18px 7px
	color-mix(in srgb, #93b7ff 0%, transparent), 2px 2px 2px 
	color-mix(in srgb, #93b7ff 6.5%, transparent), 1px 1px 2px 
	color-mix(in srgb, #93b7ff 2%, transparent);
}
.relative{position: relative;}
.row-20{margin-left: -10px; margin-right: -10px;}
.row-20 > div{padding-left: 10px; padding-right: 10px;}
.trans{
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.h-100vh{
	height: 100vh;
}
/*=========== Mobile Menu STYLE Start ========*/
body.mobile-menu-open{
    overflow:hidden;
}
.menu-open-overlay {
    position: fixed; top: 0; left: 0; width: 100%; bottom: 0;
    background: var(--text_clr); display: none; z-index: 12; opacity: 0.5;
}
.mobile-menu-open .menu-open-overlay {
    display: block;
}
.mobile-menu-block{
	background: var(--white_clr); bottom:0; color: var(--text_clr);
	position:fixed; top:0; left:-110%; width:92%; z-index:42; font-size:16px;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.mobile-menu-open .mobile-menu-block{
	left: 0;
}
.mobile-menu-inner{
	height:calc(100% - 100px); overflow:auto; padding:10px 20px; position: relative; z-index: 3;
}
.mobi-logo {
	height: 100px; padding: 0 20px; border-bottom: 1px solid var(--bdr_clr);
}
.mobi-logo a, .mobi-logo img{
	display: block; width: 200px;
}
.mobi-logo .mobi-iconbox{
	right: 0;
}
.mobi-logo .menuicon{
	color: var(--white_clr);
}
.mobile-nav ul{
	margin:0; padding: 0; list-style: none;
}
.mobile-nav li{
	margin: 0; padding: 10px 0; font-size: 18px; line-height:1; color:var(--text_clr);
	font-weight: 600; text-transform:none; position:relative;
}
.mobile-nav ul li a{
	display:block; color:var(--text_clr); font-weight: 600; font-family:var(--primary_font_family); 
	font-size: 18px; line-height:1; text-transform: none; letter-spacing:0; padding:0 40px 0 0;
}
.mobile-nav > ul > li.current_page_item > a,
.mobile-nav > ul > li.current-menu-ancestor > a,
.mobile-nav > ul > li.current-page-ancestor > a{
	color:var(--primary_clr);
}
.mobile-nav li li{border:none; padding:5px 0;}
.mobile-nav li li a{font-size:16px; text-transform:none; font-weight:400; padding:0 40px 0 0;}
.mobile-nav li li.current_page_item a{color:var(--primary_clr);}
.mobile-nav li li li a{padding-left:0;}
.mobile-nav ul.sub-menu{margin:0; padding:10px 10px 0;}
.hitarea{
	display:flex; align-items: center; justify-content: center; width:40px; height:42px;
	text-align:center; position:absolute; right:0; top:0;
}
.hitarea:before{
	display:block; content:"\f107"; font-family:'FontAwesome'; font-size: 18px; font-weight: 400;
	width:15px; height:15px; position:absolute; left:0; right:0; top:10px; z-index:3; margin:0 auto;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.collapsable-hitarea.hitarea:before{transform:rotate(-180deg);}
.mobile-nav .collapsable-hitarea + a{color:var(--primary_clr);}
/*========== Mobile Menu STYLE End==============*/
/*Mobile Menu Css Start*/
.mobi-iconbox{
	display:none; width:38px; height:38px; background: var(--primary_clr);
	position:absolute; right: 0; top:0; bottom: 0; margin: auto; z-index:40; transition:all 0.4s ease;
	-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;
}
.menuicon{display: block; width: 20px; height: 14px; flex-direction: column; align-items: center; justify-content: center; margin: auto;}
.icon-bar{display:flex;display:-webkit-flex; align-items: center; min-width: 100%; height: 14px; position: relative; cursor: pointer;}
.icon-bar:before,
.icon-bar:after{
	display: block; content: ""; width: 80%; height: 2px; background: var(--white_clr); position: absolute; right: 0; top: 0;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s; -webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;
}
.icon-bar:after{
	top: auto; bottom: 0; width: 50%
}
.icon-bar .line{
	display: block; width: 100%; height: 2px; background: var(--white_clr); position: absolute; right: 0; top: 0; bottom: 0; margin: auto 0;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s; -webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;
}
.icon-bar.active .line{width: 1px; opacity: 0;}
.icon-bar.active:before{transform: rotate(45deg); top: 7px; width: 100%;}
.icon-bar.active:after{transform: rotate(-45deg); bottom: 5px; width: 100%}
/*Mobile Menu Css End*/

/*Header & Banner Section*/
.header{
	position: fixed; left: 0; right: 0; top: 0; z-index:40; padding: 0;
}
.header-inner{
	position: relative; height: 110px;
}
.site-logo{
	width: 240px; position:relative; z-index:4; margin:0;
	-webkit-transition:all 0.4s ease 0s;-o-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.site-logo a{
	display: block;
}
.site-logo img,
.site-logo svg{
	display: block; margin: 0; width: 240px;
}
.header-right{
	gap: 20px;
}
/*Sticy header*/
.header-blank{
	height: 90px; -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.header.navbar_fixed{
	background: var(--white_clr); box-shadow: var(--shadow-1);
}
.navbar_fixed .header-inner {
    height: 90px;
}

/*Nav Css*/
.nav-main{
	position:relative; z-index:4; margin-right: 20px;
}
.nav-main ul{
	margin:0; padding:0; display:flex;display:-webkit-flex; gap: 0 30px;
}
.nav-main nav ul > li{
	margin:0; padding:0; list-style:none; position:relative; color:var(--black_clr);
	font-size:16px; font-weight:400; line-height:24px;
}
.nav-main nav ul > li a{
	display:block; color: var(--text_clr); font-size: 18px; font-weight: 600; line-height:24px;
	font-family: var(--primary_font_family); text-transform: none; letter-spacing: -0.01em;
	padding: 8px 10px; position:relative; z-index:2;
}
.nav-main nav ul > li.current_page_item > a, 
.nav-main nav ul > li:hover > a,
.nav-main nav ul > li a:hover,
.nav-main nav ul > li a:focus{
	text-shadow: 0.5px 0 0 currentColor; color: var(--secondary_clr);
}
.nav-main .sub-menu{
	display:block; position:absolute; left:0; top:100%; z-index:1; min-width:240px; padding:0; margin:0; overflow: hidden; opacity: 0;
	-moz-transition: all 0.4s ease 0s;-webkit-transition: all 0.4s ease 0s;transition: all 0.4s ease 0s;
	transform: scaleY(0); transform-origin: top; gap: 0;
	background: var(--white_clr); backdrop-filter: blur(5px);
}
.nav-main nav ul > li:hover > .sub-menu {display: block;opacity: 1;transform: scaleY(1);}
.nav-main .sub-menu li{display:block; text-align:left; position:relative; margin: 0; padding: 0;}
.nav-main .sub-menu li + li {border-top:1px solid rgba(255,255,255,0.1);}
.nav-main .sub-menu li:before{display: none;}
.nav-main .sub-menu li a{
	display:block; text-transform:none; font-size: 16px; color:var(--text_clr) !important;
	line-height:normal; font-weight: 400; padding: 12px 20px;
}
.nav-main .sub-menu li a:hover,
.nav-main .sub-menu li a:focus,
.nav-main .sub-menu li.current_page_item a,
.nav-main .sub-menu li a[aria-current="page"]{
	color:var(--black_clr) !important;
    background: none !important;
}
.nav-main .sub-menu .sub-menu {
	left:100%; top:0;
}
.nav-main .sub-menu li:hover .sub-menu{
	display:block;
}
.cart-nav a i{
	font-size: 22px;
}
/*Front Hero*/
.home-banner{
	position:relative; z-index:1; overflow: hidden; background: #fbf0ea;
}
.home-banner .items{
	padding: 110px 0 0; height: 100vh; min-height: 540px; max-height: 950px; position: relative;
}
.home-banner .bg-img img,
.home-banner .bg-img video{
	width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.home-banner .bg-img:before{
	opacity: 0.4;
}
.banner-inner{
	position: relative; z-index: 2; height: 100%;
	flex-direction: column; align-items: center; justify-content: center;
}
.caption{
	padding: 0; min-width: 430px; max-width: 430px; margin: 0; position: relative;
}
.caption .h1{
	font-size: 52px; font-weight: 700; letter-spacing: 0;
}
.caption .h1 strong{
	color: var(--primary_clr);
}
.small-title .badge {
    font-weight: 400; background: var(--yellow_clr);
}
.hero-slider .slick-dots{
	bottom: 30px;
}

/*Footer Start*/
.footer{
	margin: 0; padding: 0; position: relative; z-index: 2;
	background: #153824; overflow: hidden;
}
.site-footer__shape-1 {
    position: absolute; top: 0; right: -240px; opacity: 0.05; z-index: -1;
}
.footer .max-container{
	max-width: 100%;
}
.f-about{
	max-width: 390px; margin: 0 auto;
}
.f-logo {
    max-width: 204px; margin: 0 auto;
}
.social-media{
	justify-content: center; gap: 15px;
}
.social-media .s-icon{
    display: flex; align-items: center; justify-content: center; color: var(--white_clr);
    background: var(--primary_clr);
    -webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%;
    font-size: 24px; min-width: 40px; height: 40px;
}
.social-media .s-icon:hover{
	background: var(--secondary_clr); border-color: var(--secondary_clr); color: var(--white_clr);
}
.social-media .s-icon i{
	display: flex; width: 100%; height: 100%;
	align-items: center; justify-content: center;
}
.la-twitter:before{
	display: inline-block; font-size: 0; line-height: none; width: 28px; height: 28px;
	background: url('../images/icon_twitter.svg') no-repeat center; background-size: 16px auto;
}
.footer p{
    font-size: 16px; font-weight: 300; color: var(--text_clr_light);
}
.footer p a{
	color: var(--text_clr_light);
}
.footer p a:hover{
    color: var(--white_clr);
}
.f-links h5{
	font-size: 16px; line-height: 20px; color: #e3e3e3;
	font-weight: 400; text-transform: uppercase; letter-spacing: 0; margin: 0 0 20px;
}
.f-links ul{
	margin: 0; padding: 0;
}
.f-links ul li{
	margin: 0 0 16px; padding: 0; list-style: none;
	font-size: 16px; line-height: 20px; color: var(--white_clr);
	font-weight: 400; letter-spacing: -0.32px;
}
.f-links ul li a{
	display: inline-block; color: var(--text_clr_light);
}
.f-links ul li a:hover,
.f-cont .link:hover{
	color: var(--white_clr);
}
.footer-bottom-inn{
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p,
.footer-bottom li{
	font-size: 16px; margin: 0; padding: 0;
}
.footer-bottom ul{
	gap: 20px;
}
.footer-bottom li a{
	color: var(--text_clr_light);
}
.footer-bottom li a:hover{
	color: var(--white_clr);
}
.scrollup{
    display: inline-flex; align-items: center; justify-content: center;
    position: fixed; right: -20px; bottom: 10px; z-index: 4;
    border: 1px solid var(--bdr_clr); backdrop-filter: blur(10px);
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 16px; color: var(--text_clr_light); line-height: normal;
    text-align: center; cursor: pointer; opacity: 0;
    -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.scrollup.active{
	right: 10px; opacity: 1;
}
.scrollup:before {
    content: ''; position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%; z-index: -1;
    background: conic-gradient(
        var(--primary_clr) var(--scroll-percent, 0%), 
        var(--bdr_clr) 0%
    );
}
.scrollup:after {
    content: ''; position: absolute; inset: 0;
    background: var(--white_clr); border-radius: 50%; z-index: -1;
}
body .wpcf7-not-valid-tip {
    font-size: 12px; position: absolute;
}
.footer .wpcf7 form .wpcf7-response-output {
    color: var(--white_clr); font-size: 12px;
}
/*Footer End*/

/*Midlle Section css*/
.middle-section{position:relative;}
img.alignleft{float:left; margin:0 20px 20px 0; -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
img.alignright{float:right; margin:0 0 20px 20px; -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
img.alignnone{margin:0 0 20px; -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
iframe.alignleft{float:left; margin:0 20px 20px 0;}
iframe.alignright{float:right;margin:0 0 20px 20px;}
iframe.iframe-embed.alignright{max-width:500px;height:315px !important;}
.bg-img{position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; background-size: cover !important;}
.bg-img:before{display: block; content: ""; background: var(--black_clr); position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; opacity: 0.5;}
.bg-img img,
.bg-img video,
.bg-img iframe{display: block;width: 100%;height: 100%;object-fit: cover;object-position: center;}
.bg-img.before-none:before{display: none;}
.bg-img.fixed{background-attachment: fixed !important;}
.bg-img.bg-auto{background-size: auto !important;}
.no-img.d-flex{align-items: center;justify-content: center;font-size: 24px;line-height: normal; color: #999; background: #ddd;}
.btnbox{
	padding: 20px 0 0; gap: 20px; flex-wrap: wrap;
}
.btnbox.text-center{
	justify-content: center;
}
.small-title{
	font-size: 16px; line-height: 1.2; color: var(--primary_clr); font-weight: 500; margin-bottom: 15px;
}
.block-title{
	position:relative; margin-bottom: 30px;
}
.block-title.text-white *{
	color: var(--white_clr);
}
.card-link{
	display: block; position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 4;
}
.bdr-top{
	border-top: 1px solid #CACACA; padding-top: 60px;
}
.bdr-tl {
    border-bottom: 1px solid #ddd;
}
.bdr-tl .left-block{
	padding-bottom: 15px;
}
.bdr-tl .right-block{
    padding-left: 40px; padding-bottom: 15px; border-left: 1px solid #ddd;
}

/*Featured Icons Section*/
.icons-block{
	justify-content: center; text-align: center;
}
.icons-block .items{
	border-left: 1px solid var(--bdr_clr);
}
.icons-block .items:first-child{
	border-left: 0;
}
.card-icons {
    max-width: 130px; margin: 0 auto;
}
.card-icons p{
	font-weight: 600;
}
.card-icons .iconbox{
	min-width: 60px; max-width: 60px; height: 60px; margin: 0 auto 20px;
	background: rgb(249 169 62 / 18%); border-radius: 50%;
}
.card-icons .iconbox img{
	max-width: 40px;
}

/*Apartment Section*/
.apartment-list{
	gap: 30px 0; flex-wrap: wrap;
}
.apartment-list .items{
	padding: 0 10px; width: 20%;
}
.card-residential {
    position: relative; display: flex; flex-direction: column; height: 100%; background: var(--white_clr); overflow: hidden;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 10px 10px 0 0;-moz-border-radius: 10px 10px 0 0;border-radius: 10px 10px 0 0;
}
.card-residential .imgbox{
	overflow: hidden;
}
.card-residential .imgbox img{
	display: block; aspect-ratio: 16/12; object-fit: cover;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.card-residential:hover .imgbox img{
    transform: scale(1.05);
}
.card-residential h4 {
    font-size: 20px; font-weight: 600; text-transform: capitalize; margin-bottom: 10px;
}
.card-residential p{
	color: #555;
}
.card-residential .textbox {
  padding: 20px; position: relative; width: 100%; z-index: 99;
}
.card-residential .textbox:before {
	display: block; content: ""; position: absolute; left: 30px; top: -10px; width: 30px; height: 10px;
  	border-bottom: 10px solid var(--white_clr); border-left: 15px solid transparent; border-right: 15px solid transparent;
}

/*Gallery Section*/
.card-gallery {
    position: relative; display: flex; flex-direction: column; height: 100%; background: var(--white_clr); overflow: hidden;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.08); border-radius: 20px; cursor: zoom-in;
}
.card-gallery .imgbox{
	overflow: hidden; border-radius: 20px;
}
.card-gallery .imgbox img{
	display: block; aspect-ratio: 16/12; object-fit: cover;
	-moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.card-gallery:hover .imgbox img{
    transform: scale(1.05);
}
.card-gallery h4 {
    font-size: 18px; font-weight: 600; text-transform: capitalize;
}
.card-gallery .textbox {
  padding: 20px; text-align: center;
}
.arrow-top-right .slick-arrow{
	left: auto; bottom: auto; right: 0; top: -50px; margin: 0;
}
.arrow-top-right .slick-arrow.slick-prev{
	right: 40px;
}
.gallery-slider .items{
	padding-bottom: 15px;
}

/*counter-block*/
.counter-block {
    padding: 40px 30px; margin: 0; background: #153824;
    position: relative; border-radius: 20px; gap: 30px 0;
}
.counter-block:before{
	display: block; content: ""; border: 2px dashed var(--white_clr); opacity: 0.2;
	border-radius: 20px; position: absolute; left: 10px; right: 10px; top: 10px; bottom: 10px;
}
.counter-list {
    gap: 30px 0;
}
.count-info{
	position: relative;
}
.count-info .iconbox{
	display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--primary_clr);
	min-width: 60px; height: 60px; background: var(--white_clr); margin-right: 20px;
	-webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%;
}
.count-info .iconbox img{
	
}
.count-info .textbox strong{
	display: block; font-size: 40px; line-height: 1.2; font-weight: 500; color: var(--white_clr);
}
.count-info p{
	font-size: 16px; line-height: 24px; color: var(--white_clr); margin: 7px 0 0;
}

/*About Section*/
.feater-list{
	margin: 0 -10px; flex-wrap: wrap; gap: 20px 0;
}
.feater-list .sub-items{
	width: 50%; padding: 0 10px;
}
.feat-icon-card{
	padding: 15px; background: var(--white_clr); border-radius: 10px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05); gap: 15px;
}
.feat-icon-card h5 {
    font-size: 18px; font-weight: 600; text-transform: capitalize; margin-bottom: 10px;
}
.feat-icon-card p{
	color: #555;
}
.feat-icon-card .iconbox{
	min-width: 45px; max-width: 45px; height: 45px; background: rgb(249 169 62 / 18%); border-radius: 10px;
}
.feat-icon-card .iconbox img{
	max-width: 28px;
}
.abt-imgbox img{
	display: block; width: 100%; height: auto;
	border-radius: 20px;
}

/*Testimonial Section*/
.testimonial-section{
	overflow: hidden;
}
.testimonial-section .max-container{
	max-width: 100%;
}
.testimonial-list > .items{
	display: none;
}
.testimonial-list > .items:nth-child(1),
.testimonial-list > .items:nth-child(2),
.testimonial-list > .items:nth-child(3){
	display: block;
}
.testimonial-list .items{
	padding: 0;
}
.card-testimonial {
    padding: 30px; background: var(--white_clr); border-radius: 30px; position: relative;
    overflow: hidden; height: 100%; transform: scale(0.8); transform-origin: center;
    -moz-transition:all 0.4s ease 0s;-webkit-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;
}
.slick-active.slick-center .card-testimonial {
	transform: scale(1.0);
}
.card-testimonial .stars{
	font-size: 20px; color: var(--yellow_clr);
	letter-spacing: 0.05em; margin-bottom: 10px;
}
.client-name .name{
	display: block; font-size: 15px; font-weight: 500;
}
.client-name .locate{
	font-size: 14px; font-weight: 300; color: #555;
}

/*CTA Section*/
.cta-innner{
	padding: 40px; border-radius: 30px; position: relative; overflow: hidden;
}
.cta-one__shape-3{
    position: absolute; bottom: 73px; right: -290px; width: 793px; height: 793px;
    background-color: var(--white_clr); opacity: 0.1; border-radius: 50%;
}
.cta-one__shape-1{
    position: absolute; bottom: -140px; left: 0; opacity: 0.2;
}
.cta-one__shape-2{
    position: absolute; bottom: -30px; right: 20px;
    mix-blend-mode: luminosity; max-width: 200px;
}
.cta-block-1 *{
	color: var(--white_clr);
}
.cta-innner p{
	color: rgba(255, 255, 255, 0.7);
}
.cta-block-1 {
    max-width: 390px;
}
.cta-block-2 {
    flex-wrap: wrap; justify-content: center; text-align: center; gap: 30px 40px; max-width: 550px;
}
.cta-call {
    gap: 15px;
}
.cta-call .iconbox {
    min-width: 50px; height: 50px; border: 2px solid #ffffff66; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white_clr);
}
.cta-call .textbox {
    font-size: 18px; color: rgba(255, 255, 255, 0.7); text-align: left;
}
.cta-call label{
	display: block; margin-bottom: 5px;
}
.cta-call a{
	display: inline-block; font-size: 20px; color: var(--white_clr); font-weight: 600;
}

/*contact-page*/
.contact-page{
	min-height: 100vh; overflow: hidden;
}
.form-block{
	min-height: 85vh; height: 100%; background: var(--white_clr); border-radius: 20px;
}
.internal-banner-imgbox img{
	display: block; width: 100%; height: auto; object-fit: cover;
}
.img-block img{
	display: block; width: 100%; height: auto; border-radius: 20px;
}
.repeater-block:nth-child(even){
	background: var(--white_clr);
}
.repeater-block:nth-child(even) .repeater-inn{
	flex-direction: row-reverse;
}
.text-block{
	padding: 0 40px;
}











/*==========================================
===============:: MEDIA CSS ::==============
============================================*/
/* iPad 1024px View */
@media screen and (max-width:1199px){
.container,
.max-container{width:100%; max-width:100%; padding:0 20px;}
.ptb-80{padding:60px 0;}
.ptb-60{padding: 40px 0;}
h1, .h1{font-size: 34px; line-height: 1.2;}
h2, .h2{font-size: 28px; line-height: 1.2;}
h3{font-size: 24px;}
h4{font-size: 22px;}
h5{font-size: 18px;}
blockquote{padding: 10px 20px;}
.content-block p br{
	display: none;
}
/*Header and banner*/
.nav-main{
    display: none !important;
}
.mobi-iconbox {
    display: flex; align-items: center; justify-content: center;
}
.header-inner,
.header-blank{
	height: 100px;
}
.header-right {
    margin-right: 45px;
}
.head-btnbox .btn{
	display: flex; align-items: center; justify-content: center;
    font-size: 0; line-height: normal; min-width: inherit;
    padding: 0; width: 38px; height: 38px; gap: 0;
}
.head-btnbox .btn i{
	font-size: 18px;
}
.caption .h1 {
    font-size: 42px;
}
.card-residential .textbox {
    padding: 15px;
}
.card-residential p{
	font-size: 14px;
}
.cta-one__shape-2 {
    opacity: 0.5;
}
.text-block{
	padding: 0 15px;
}



}
/* iPad 768px view*/
@media screen and (max-width:991px){
.container{padding-left: 20px; padding-right: 20px;}
.ptb-80, .ptb-60{padding:60px 0;}
.block-title p br{display: none;}
img.alignleft, img.alignright, img.alignnone,
iframe, iframe.alignleft, iframe.alignright, iframe.iframe-embed.alignright{
    float: none; max-width: 100%; margin: 0 0 20px; width: 100%;
}
h1, .h1 {
    font-size: 32px;
}
/*Header and banner*/
.card-icons p {
    font-size: 15px;
}
.apartment-list .items {
    width: 33.33%;
}
.abt-inner {
    gap: 40px 0;
}

}
/* iPhone-6 plus 736 (Landscape) view */
@media screen and (max-width:767px){
.ptb-80, .ptb-90, .ptb-60, .ptb-50{
    padding: 40px 0;
}
body{-webkit-text-size-adjust:none;}
.max-container,
.container{padding-left: 20px; padding-right: 20px;}
ul li, ol li, p{
	font-size: 16px; line-height: 1.4; margin:0 0 15px;
}
img.alignleft, img.alignright, img.alignnone,
iframe, iframe.alignleft, iframe.alignright, iframe.iframe-embed.alignright{
    float: none; max-width: 100%; margin: 0 0 20px;
}
h2, .h2 {
    font-size: 24px; line-height: 1.2;
}
.block-title {
    margin-bottom: 20px;
}
/*Header and banner*/
.site-logo img,
.site-logo svg{
    width: 200px;
}
.mobi-iconbox{
	display: flex; align-items: center; justify-content: center;
}
.mobile-menu-block{
	width: 85%;
}
.home-banner .items{
	height: auto;
}
.caption{
	min-width: 100%;
}
.caption .btnbox{
	flex-wrap: wrap; gap: 10px;
}
.caption .btnbox .btn{
	min-width: 210px;
}
.caption-inn {
    padding: 0;
}
.featured-icons-section{
	padding: 0;
}
.featured-icons-section .container{
	padding: 20px;
}
.icons-block{
	margin: 0;
}
.icons-block .items {
	padding: 20px; min-width: 50%;
    border: 1px solid var(--bdr_clr) !important;
    margin: 0 0 -1px -1px;
}
.apartment-list {
    gap: 20px 0;
}
.apartment-list .items {
    width: 50%;
}
.card-residential h4 {
    font-size: 16px;
}
.card-residential p{
	font-size: 13px;
}
.arrow-top-right .slick-arrow{
	left: 50%; top: auto; bottom: -25px; margin-left: 5px;
}
.arrow-top-right .slick-arrow.slick-prev{
	left: auto; right: 50%; margin-right: 5px;
}
.feater-list {
    gap: 10px 0;
}
.feater-list .sub-items{
    width: 100%;
}
.card-testimonial {
    transform: scale(1.0);
}
.cta-innner{
	flex-direction: column;
}
.cta-block-2 {
    justify-content: inherit;
    padding: 30px 0 100px;
}
.f-links {
    text-align: center;
}
.footer-inner {
    gap: 20px 0;
}
.repeater-inn {
    gap: 30px 0;
}
.internal-banner-imgbox img{
	min-height: 280px;
}




}/*767 End*/

/*==================================================
==========:: PREMIUM CONTACT PAGE STYLES ::==========
====================================================*/

:root {
    --gold-primary: #c8952c;
    --gold-dark: #b08123;
    --gold-light: #fdf8ef;
    --gold-border: #f9ebd1;
    --dark-teal-1: #091518;
    --dark-teal-2: #0d2126;
    --dark-teal-bg: #0b1417;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-muted-light: #a5b1b4;
    --font-serif: 'Playfair Display', serif;
}

/* Hide header on contact page */
.premium-contact-section {
    background: radial-gradient(circle at 80% 20%, #10252a 0%, #081114 100%);
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #ffffff;
}

.premium-contact-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 149, 44, 0.07) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
    pointer-events: none;
}

.premium-contact-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 33, 38, 0.6) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
    pointer-events: none;
}

.premium-contact-row {
    display: flex; gap: 60px; justify-content: space-between;
}

.premium-contact-left {
    flex: 0 0 45%; max-width: 45%; flex-direction: column;
}

.premium-contact-right {
    flex: 0 0 51%;
    max-width: 51%;
}

/* Branding Logo */
.contact-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.contact-logo a {
    display: inline-block;
    text-decoration: none;
}

.contact-logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.logo-subtext {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

/* Dusk Villa Card */
.villa-image-card {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16 / 11;
}

.villa-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.villa-image-card:hover img {
    transform: scale(1.04);
}

/* Badge & Pill */
.perfect-property-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.gold-vertical-line {
    width: 3px;
    height: 18px;
    background-color: var(--primary_clr);
    border-radius: 2px;
    display: inline-block;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow_clr);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Headings */
.premium-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: var(--primary_font_family);
}

.serif-gold {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--yellow_clr);
}

.premium-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white_clr);
    margin-bottom: 40px;
    max-width: 480px;
}

/* Trust Circles Grid */
.trust-grid {
    display: flex; gap: 30px; margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary_clr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white_clr);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon-circle {
    border-color: var(--primary_clr);
    background: rgba(200, 149, 44, 0.1);
    transform: translateY(-2px);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.trust-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted-light);
    line-height: 1.2;
    margin-top: 2px;
}

/* Glassmorphic EMI Widget */
.emi-glass-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 18px 24px;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.emi-glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.emi-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.emi-calc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--yellow_clr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white_clr);
}

.emi-details {
    display: flex;
    flex-direction: column;
}

.emi-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.emi-value {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 4px;
    line-height: 1;
}

.emi-value span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted-light);
    margin-left: 4px;
}

.emi-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

.emi-right {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    flex-grow: 1;
    justify-content: flex-end;
    transition: color 0.3s ease;
}

.emi-cta-text {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-align: right;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.emi-arrow {
    font-size: 16px;
    color: var(--primary_clr);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.emi-right:hover .emi-cta-text {
    color: var(--primary_clr);
}

.emi-right:hover .emi-arrow {
    transform: translateX(6px);
}
/* Security Footer Info */
.security-footer {
    display: flex; align-items: center; gap: 10px; font-size: 16px; color: #8c979a;
}
.security-icon {
    font-size: 22px; color: #2ecc71;
}

/* Right Column Form Card */
.inquiry-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
}

/* Form Header */
.inquiry-header {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inquiry-icon-circle {
    width: 58px; height: 58px; border-radius: 50%; background: var(--gold-light); border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center; font-size: 26px;
    color: var(--primary_clr); box-shadow: 0 4px 12px rgba(200, 149, 44, 0.08);
}
.contact-tl{
	gap: 20px; margin: 0 0 15px;
}
.inquiry-subtitle {
    font-size: 14px;
    color: #55625e;
    line-height: 1.5;
    max-width: 380px;
    margin: 0 auto 16px;
}

.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.decorative-divider .dec-line {
    width: 45px;
    height: 1px;
    background: #e4e8e7;
}

.decorative-divider .dec-gold-dot {
    width: 5px;
    height: 5px;
    background: var(--primary_clr);
    border-radius: 50%;
    position: relative;
}

.decorative-divider .dec-gold-dot::before,
.decorative-divider .dec-gold-dot::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary_clr);
    border-radius: 50%;
    top: 1px;
}

.decorative-divider .dec-gold-dot::before {
    left: -8px;
}

.decorative-divider .dec-gold-dot::after {
    right: -8px;
}

/* Custom Inquiry Form Controls */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inquiry-form .form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inquiry-form .input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.inquiry-form .input-group-custom input,
.inquiry-form .input-group-custom select,
.inquiry-form .input-group-custom textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #d4d8d6;
    border-radius: 12px;
    padding: 10px 20px 10px 40px;
    font-size: 15px;
    color: #0b1a13;
    font-weight: 400;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
}
.inquiry-form .input-group-custom input::placeholder,
.inquiry-form .input-group-custom textarea::placeholder {
    color: var(--text_clr); opacity: 1;
}
.inquiry-form .input-group-custom input:focus,
.inquiry-form .input-group-custom select:focus,
.inquiry-form .input-group-custom textarea:focus {
    border-color: var(--primary_clr);
    box-shadow: 0 0 0 4px rgba(200, 149, 44, 0.08);
    background: #ffffff;
}

.inquiry-form .input-group-custom .input-icon {
    position: absolute; left: 12px; z-index: 2;
    font-size: 20px;
    color: #828d8a;
    transition: color 0.3s ease;
    pointer-events: none;
}
.wpcf7-form-control-wrap {
    position: relative; display: block; width: 100%;
}

.inquiry-form .input-group-custom input:focus ~ .input-icon,
.inquiry-form .input-group-custom select:focus ~ .input-icon,
.inquiry-form .input-group-custom textarea:focus ~ .input-icon {
    color: var(--primary_clr);
}

/* Custom Dropdown / Select styling */
.inquiry-form .select-custom {
    position: relative;
    cursor: pointer;
}

.inquiry-form .select-custom select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: none;
    padding-right: 40px;
}

/* For placeholder color in select */
.inquiry-form .select-custom select:invalid,
.inquiry-form .select-custom select option[value=""] {
    color: #8c9794;
}

.inquiry-form .select-custom .select-chevron {
    position: absolute;
    right: 12px;
    font-size: 16px;
    color: #828d8a;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.inquiry-form .select-custom select:focus ~ .select-chevron {
    transform: rotate(180deg);
    color: var(--primary_clr);
}

/* Textarea customization */
.inquiry-form .textarea-group {
    align-items: flex-start;
}

.inquiry-form .textarea-group textarea {
    height: 120px !important;
    min-height: 120px !important;
    padding-top: 16px;
    resize: none;
}

.inquiry-form .textarea-group .textarea-icon {
    top: 18px;
}

/* Looking For Radio Pill group */
.looking-for-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 4px 0;
}

.looking-for-section .section-label {
    font-size: 14px;
    font-weight: 600;
    color: #0b1a13;
    margin: 0;
}
.radio-pill-label {
    cursor: pointer;
    position: relative;
    margin: 0;
}

.radio-pill-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-pill-label .pill-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    border: 1px solid #d4d8d6;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    color: #55625e;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
}

.radio-pill-label .radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #b2b9b7;
    display: inline-block;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.radio-pill-label .radio-circle::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary_clr);
    top: 3.5px;
    left: 3.5px;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.radio-pill-label input[type="radio"]:checked + .pill-btn {
    border-color: var(--primary_clr);
    color: var(--primary_clr);
    background: rgba(200, 149, 44, 0.02);
    box-shadow: 0 0 0 4px rgba(200, 149, 44, 0.06);
}

.radio-pill-label input[type="radio"]:checked + .pill-btn .radio-circle {
    border-color: var(--primary_clr);
}

.radio-pill-label input[type="radio"]:checked + .pill-btn .radio-circle::after {
    transform: scale(1);
}

/* Action Buttons */
.form-actions {
    display: grid;
    gap: 20px;
    margin-top: 10px;
}

.form-actions .action-btn {
    height: 56px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    font-family: var(--primary_font_family);
}

.form-actions .action-btn i {
    font-size: 19px;
}

.form-actions .btn-gold-solid {
    background: var(--primary_clr);
    border: none;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(200, 149, 44, 0.22);
}

.form-actions .btn-gold-solid:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(200, 149, 44, 0.32);
}

.form-actions .btn-gold-solid:active {
    transform: translateY(0);
}

.form-actions .btn-gold-outline {
    background: #ffffff;
    border: 1.5px solid var(--primary_clr);
    color: var(--primary_clr);
}

.form-actions .btn-gold-outline:hover {
    background: rgba(200, 149, 44, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(200, 149, 44, 0.12);
}

.form-actions .btn-gold-outline:active {
    transform: translateY(0);
}
.wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 17px;
}
.radio-pill-group .wpcf7-form-control {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
}
.radio-pill-group .wpcf7-list-item{
	margin: 0;
}
.radio-pill-group .wpcf7-form-control-wrap{
	width: 100%;
}
.radio-pill-group .wpcf7-list-item label {
    display: block; cursor: pointer;
}
.radio-pill-group .wpcf7-list-item label input[type="radio"] {
    position: absolute; opacity: 0; width: 0; height: 0;
}
.radio-pill-group .wpcf7-list-item .wpcf7-list-item-label{
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    border: 1px solid #d4d8d6;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    color: #55625e;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
}
.radio-pill-group .wpcf7-list-item .wpcf7-list-item-label:before{
	display: inline-block; width: 16px; height: 16px;
	background: var(--white_clr); border: 3px solid var(--white_clr);
	outline: 1px solid var(--primary_clr); border-radius: 50%;
}
.radio-pill-group .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before{
	background: var(--primary_clr);
}
.radio-pill-group .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label{
	border-color: var(--primary_clr);
}

/* Benefits Card Footer */
.card-benefits-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    background: #FAF7F2;
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid #F5EAD4;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #f4e8cf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary_clr);
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(200, 149, 44, 0.04);
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 12px;
    font-weight: 700;
    color: #0b1a13;
    line-height: 1.25;
}

.benefit-sub {
    font-size: 10px;
    font-weight: 400;
    color: #6a7471;
    line-height: 1.25;
    margin-top: 1px;
}

/* WhatsApp Sticky Floating Widget */
.whatsapp-floating-widget {
    position: fixed; bottom: 10px; right: 10px; z-index: 999;
    display: flex; align-items: center; gap: 12px; text-decoration: none !important;
}
.whatsapp-label-pill {
    background: #ffffff;
    color: #242625;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #eef1f0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    transform: translateX(8px);
    opacity: 0;
    pointer-events: none;
    font-family: var(--primary_font_family);
}

.whatsapp-floating-widget:hover .whatsapp-label-pill {
    transform: translateX(0);
    opacity: 1;
}

.whatsapp-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.whatsapp-circle::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25d366;
    opacity: 0.45;
    animation: waPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.whatsapp-floating-widget:hover .whatsapp-circle {
    transform: scale(1.08) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* Premium Contact Section Responsive Queries */
@media screen and (max-width: 1199px) {
    .premium-title {
        font-size: 38px;
    }
    .premium-contact-row {
        gap: 40px;
    }
}

@media screen and (max-width: 991px) {
    .premium-contact-row {
        flex-direction: column;
        gap: 50px;
    }
    .premium-contact-left,
    .premium-contact-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .villa-image-card {
        aspect-ratio: 16 / 9;
    }
    .premium-title {
        font-size: 36px;
    }
    .inquiry-card {
        padding: 35px;
    }
}

@media screen and (max-width: 767px) {
    .premium-contact-section {
        padding: 60px 0 80px;
    }
    .premium-title {
        font-size: 32px;
    }
    .trust-grid {
        gap: 15px;
    }
    .emi-glass-card {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .emi-divider {
        display: none;
    }
    .emi-right {
        width: 100%;
        justify-content: flex-start;
    }
    .emi-cta-text {
        text-align: left;
    }
    .inquiry-card {
        padding: 24px;
        border-radius: 20px;
    }
    .inquiry-form .form-row-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .radio-pill-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .form-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .card-benefits-footer {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .whatsapp-floating-widget {
        bottom: 10px; right: 10px;
    }
    .whatsapp-label-pill {
        display: none;
    }
}

/* Gallery Lightbox Modal */
.gallery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal-overlay.active {
    opacity: 1;
    display: flex !important;
}

.gallery-modal-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.gallery-modal-img.loaded {
    transform: scale(1);
    opacity: 1;
}

.gallery-modal-caption {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.gallery-modal-close:hover {
    color: #e0a96d;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.gallery-modal-nav:hover {
    background: #e0a96d;
    color: #000;
}

.gallery-modal-prev {
    left: -70px;
}

.gallery-modal-next {
    right: -70px;
}

@media (max-width: 991px) {
    .gallery-modal-prev {
        left: -30px;
    }

    .gallery-modal-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-close {
        right: 0px;
        top: -45px;
    }
}
@media (max-width: 767px) {
.premium-contact-row{
    gap: 20px;
}
.premium-contact-left > div:not(.site-logo){
    display: none !important;
}
.radio-pill-group .wpcf7-form-control {
    gap: 10px;
}
	.radio-pill-group .wpcf7-list-item .wpcf7-list-item-label{
		padding: 0 12px; font-size:14px; gap:8px;
	}
}