:root{
--brown:#6b3f1d;
--dark:#4b2a14;
--gold:#b68b3c;
--cream:#f3efe9;
--soft:#e8e3dc;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Georgia, serif;
background:var(--cream);
color:#333;
line-height:1.6;
}

.container{width:1200px;margin:auto;}

/* HEADER */

.top-header{
background:white;
padding:15px 0;
border-bottom:1px solid #eee;
}

.header-flex{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}

.header-flex a{
display:flex;
align-items:center;
gap:15px;
text-decoration:none;
color:inherit;
}

.site-title{
display:flex;
flex-direction:column;
line-height:1.3;
}

/* logo_1 */

.site-title span:first-child{font-size:18px;opacity:0.7;font-weight:500;color: #6b3f1d;}

/* logo_2 */

.site-title span:last-child{
font-size:22px;
font-weight:700;
color:var(--brown);
}
.site-brand{
display:flex;
align-items:center;
gap:15px;
text-decoration:none;
color:inherit;
flex-shrink:0;
}

.logo{
height:60px;
}

.right-panel{
display:flex;
align-items:center;
gap:20px;
flex-shrink:0;
}

.lang{
display:flex;
align-items:center;
gap:4px;
}

.lang a{
text-decoration:none;
color:#00000075;
font-weight:bold;
}
.lang a:hover{
color: #6b3f1d;
}

.lang a.active{
font-weight:700;
color:#6b3f1d;
}

/* SEARCH */

.search-box{
position:relative;
}

.search-box input{
padding:8px 35px 8px 12px;
border:1px solid var(--soft);
border-radius:20px;
}

/* MENU */


.mobile-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
position:absolute;
right:20px;
top:12px;
}

/* MOBILE */




nav{

background:var(--brown);
}
.mobile-header{
display:none;
}
.menu{
list-style:none;
display:flex;
justify-content:center;
}

.menu a{display:block;padding:15px 25px;color:white;text-decoration:none;font-size:16px;position:relative;transition:0.3s;}

/* underline effect */

.menu a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0%;
height:3px;
background:var(--gold);
transition:0.3s;
}

.menu a:hover::after{
width:100%;
}

.menu a:hover{background: rgb(173 95 35);color: #ffffff;}


.menu li{position:relative;text-decoration: none;list-style: none;}

.submenu{position:absolute;top:100%;left:0;background:white;min-width:200px;box-shadow:0 5px 15px rgba(0,0,0,0.1);opacity:0;visibility:hidden;transform:translateY(10px);transition:0.3s;z-index: 9999;}

.submenu li a{
display:block;
padding:12px 15px;
color:#333;
}

.menu li:hover .submenu{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.mobile-menu{
position:fixed;
top:0;
left:-100%;
width:280px;
height:100%;
background:white;
padding:20px;
transition:0.4s;
z-index:999;
}

.mobile-menu.active{
left:0;
}

.mobile-close{
font-size:24px;
margin-bottom:20px;
cursor:pointer;
}

.mobile-menu ul{
list-style:none;
}

.mobile-menu li{
margin-bottom:10px;
}

.mobile-menu a,
.mobile-menu span{
display:block;
padding:10px;
color:#333;
}

.mobile-menu ul ul{
display:none;
padding-left:15px;
}

/* HERO SLIDER */

.hero-slider{position:relative;height: 600px;overflow:hidden;}

.hero-slide{
position:absolute;
width:100%;
opacity:0;
transition:opacity 0.8s ease;
z-index:1;
}

.hero-slide.active{
opacity:1;
z-index:2;
}

.hero-slide img{width:100%;height: 600px;object-fit:cover;}

.hero-text{position:absolute;bottom:40px;left:40px;background:rgba(0,0,0,0.6);color:white;padding:12px 20px;font-size:20px;max-width: 650px;border-radius:4px;}

.hero-text h1{
font-size:22px;
line-height:1.4;
}

/* HERO ARROWS */

.hero-prev,
.hero-next{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:35px;
color:white;
backdrop-filter:blur(5px);
background:rgba(0,0,0,0.5);
padding:12px 16px;
cursor:pointer;
transition:0.3s;
z-index:10;
}

.hero-prev:hover,
.hero-next:hover{
background:var(--gold);
color:black;
}

.hero-prev{left:20px;}
.hero-next{right:20px;}

/* SECTION TITLE */

.section-title{
font-size:26px;
color:var(--brown);
margin-bottom:30px;
}

/* SERVICES */

.services{padding: 120px 0;background:white;}

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.services-grid a{background:var(--brown);color:white;padding: 40px 60px;text-align:center;text-decoration:none;font-size:18px;border-radius:4px;transition:.3s;display:flex;flex-direction:column;align-items:center;justify-content:center;}

.services-grid a:hover{
background:var(--gold);
color:#ffffff;
transform:translateY(-3px);
}

.service-icon{
width:48px;
height:48px;
margin-bottom:15px;
display:block;
}

/* MANSET */

.manset{
padding:60px 0;
}

.manset-item{
display:none;
position:relative;
}

.manset-item.active{
display:block;
}

.manset-item img{
width:100%;
height:350px;
object-fit:cover;
}

.manset-text{
position:absolute;
bottom:20px;
left:20px;
background:rgba(0,0,0,0.6);
color:white;
padding:15px 20px;
}

/* NEWS */

.news{
padding:60px 0;
}

.news-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.news-card{
display:block;
background:white;
padding:25px;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
transition:.3s;
border-radius:4px;
text-decoration:none;
color:#333;
}

.news-card:hover{
transform:translateY(-5px);
}

.news-card h3{
margin:10px 0;
color:#333;
}

.news-date{
font-size:13px;
color:var(--gold);
margin-bottom:10px;
}

/* PAGE TITLE */

.page-title{
background:var(--soft);
padding:40px 0;
margin-bottom:40px;
}

.page-title h1{
color:var(--brown);
font-size:32px;
}

/* NEWS DETAIL */

.news-title{
font-size:32px;
margin-bottom:10px;
}

.news-meta{
display:flex;
gap:20px;
font-size:14px;
color:#777;
margin-bottom:20px;
}

.news-detail img{
width:100%;
margin:20px 0;
}

/* GALLERY */

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}

.gallery-grid img{
width:100%;
height:200px;
object-fit:cover;
border-radius:4px;
}

/* VIDEO */

.video-grid iframe{
width:100%;
height:450px;
}

/* PARTNERS */

.partners{
padding:60px 0;
background:white;
}

.partner-slider{
display:flex;
gap:40px;
overflow:hidden;
align-items:center;
}

.partner-slider img{
height:80px;
opacity:0.8;
transition:.3s;
}

.partner-slider img:hover{
opacity:1;
}

/* FOOTER */

footer{background:var(--dark);color:white;padding:30px 0;text-align:center;}

/* BACK TO TOP */

#backToTop{
position:fixed;
right:30px;
bottom:30px;
background:var(--brown);
color:white;
border:none;
width:45px;
height:45px;
border-radius:50%;
font-size:20px;
display:none;
cursor:pointer;
}

/* ANNOUNCEMENTS */

.announcements{
padding:60px 0;
background:#f8f6f2;
}

.announce-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.announce-card{
display:block;
background:white;
padding:25px;
border-left:5px solid var(--gold);
text-decoration:none;
color:#333;
transition:.3s;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.announce-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.announce-icon{
font-size:30px;
margin-bottom:10px;
}

.announce-card h3{
font-size:18px;
margin-bottom:10px;
color:var(--brown);
}

.announce-card p{
font-size:14px;
margin-bottom:15px;
}

.announce-date{
font-size:13px;
color:var(--gold);
}

.news-image{
margin:-25px -25px 15px -25px;
overflow:hidden;
}

.news-image img{
width:100%;
height:180px;
object-fit:cover;
transition:0.3s;
}

.news-card:hover .news-image img{
transform:scale(1.05);
}

/* NEWS META */

.news-meta{
display:flex;
gap:25px;
margin-bottom:20px;
color:#777;
font-size:14px;
}

/* MAIN IMAGE */

.news-detail img.main-image{
width:100%;
margin:20px 0;
border-radius:6px;
}

/* GALLERY */

.news-gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin-top:30px;
}

.news-gallery img{
width:100%;
height:180px;
object-fit:cover;
cursor:pointer;
border-radius:6px;
transition:0.3s;
}

.news-gallery img:hover{
transform:scale(1.05);
}

/* VIDEO */

.news-video{
margin-top:40px;
}

.news-video iframe{
width:100%;
height:450px;
}

/* LIGHTBOX */

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:999;
}

.lightbox img{
max-width:90%;
max-height:90%;
}

.close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

.prev,
.next{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:50px;
color:white;
cursor:pointer;
padding:20px;
}

.prev{left:20px;}
.next{right:20px;}


ul.head_icons {
  display: block;
  margin: 0 auto;
  list-style: none;
  margin-top: 20px;
}

ul.head_icons li {
  display: block;
  float: left;
  list-style: none;
  padding: 0;
  margin: 0 0px 0 9px;
}

ul.head_icons li a.hdr_icons:hover {
  border-color: #ffffff;
  transform: scale(1.02);
  background-color: #ffffff;
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}

ul.head_icons li a.hdr_icons {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 10px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  border: 1px solid #976c4f;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}

.icon_fb {
  background-image: url("../img/fb.png");
}

.icon_twt {
  background-image: url("../img/twt.png");
}

.icon_insta {
  background-image: url("../img/insta.png");
}

.icon_ytb {
  background-image: url("../img/ytb.png");
}

.icon_wp {
  background-image: url("../img/wp.png");
}

.icon_sitemap {
  background-image: url("../img/sitemap.png");
}


footer ul.head_icons li {
  margin: 0 9px 0px 0;
}

footer .icon_fb {
  background-image: url("../img/fb_ft.png");
}

footer .icon_twt {
  background-image: url("../img/twt_ft.png");
}

footer .icon_insta {
  background-image: url("../img/insta_ft.png");
}

footer .icon_ytb {
  background-image: url("../img/ytb_ft.png");
}

footer .icon_wp {
  background-image: url("../img/wp_ft.png");
}

footer .icon_link {
  background-image: url("../img/link_ft.png");
}

footer .icon_threads {
  background-image: url("../img/threads_ft.png");
}

footer .icon_sitemap {
  /* background-image: none; */
}

.footer_social {
    display: inline-grid;
}

section.page {
    margin-bottom: 40px;
    min-height: 500px;
    text-align: justify;
}
.static_in img{
    display: block;
    /* max-width: 1000px; */
    margin: 0px auto;
    height: auto;
}

/* SECTION */
.contact {
    padding: 60px 0;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.contact-grid .col {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-grid .col:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* LINK */
.contact_link {
    text-decoration: none;
    color: #333;
    display: block;
}

/* ICON */
.cnt_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    border-radius: 50%;
}

.cnt_icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* TITLE */
.cnt_name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

/* TEXT */
.cnt_info {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* MAP */
.map {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
.breadcrumb a {
    color: #6b3f1d;
}

.innn {
    padding-bottom: 50px;
}
.innn img {
    width: 70%;
    margin: 0px auto 30px auto;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
}

.news-title {
    flex: 0 0 100%;    /* baÃƒâ€¦Ã…Â¸lÃƒâ€žÃ‚Â±q tam en tutub alt sÃƒâ€žÃ‚Â±raya keÃƒÆ’Ã‚Â§ir */
    margin-bottom: 4px;
}














/* Light gallery */
.news_in_gallery {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 30px 0px 30px 0px;
}

.demo-gallery {
  width: 100%;
}

.demo-gallery-poster img {
  width: 20px;
  height: 20px;
}



.news_in_gallery .prosmotr_ul {
  display: block;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

#lg-counter span::after {
  display: inline;
}

.news_in_gallery .prosmotr_ul li {
  display: block;
  position: relative;
  float: left;
  list-style: none;
  width: 100%;
  max-width: calc(33.333% - 7px);
  margin: 0px 10px 15px 0px;
  padding: 0;
  overflow: hidden;
}

.news_in_gallery .prosmotr_ul li:nth-child(3n) {
  margin: 0 0px 15px 0;
}

.news_in_gallery .prosmotr_ul li::before {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  padding-top: 74%;
}

.news_in_gallery .prosmotr_ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 15px !important;
}

.demo-gallery > ul > li a:hover > img {
  transform: scale(1.02);
}

/* .product_gallery_images_upload {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: 50%;
  border-radius: 10px;
} */

/* .lg_img {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: red;
}
.lg_img::before {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  padding-top: 68%;
} */

img.product_gallery_images_upload {
  display: block;
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  border-radius: 15px !important;
}



/* !NEWS_ PAGE FINISH--- */

.news_in_gallery .prosmotr_ul::after {
  content: "";
  display: block;
  clear: both;
}









/* =========================
   ADVANCED SEARCH (MODERN)
========================= */

.adv_search{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:30px;
    padding:15px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* INPUT */
.adv_search .search_in{
    flex:1;
    height:42px;
    padding: 20px 15px;
    border:1px solid var(--soft);
    border-radius:25px;
    font-size:14px;
    background:#f9f7f3;
    transition:0.3s;
}

.adv_search .search_in:focus{
    border-color:var(--brown);
    background:#fff;
    outline:none;
}

/* SELECT */
.select-cat_div{
    position:relative;
    min-width:160px;
}

.select-cat{
    width:100%;
    height:42px;
    padding:0 35px 0 15px;
    border:1px solid var(--soft);
    border-radius:25px;
    background:#f9f7f3;
    font-size:14px;
    appearance:none;
    cursor:pointer;
}

/* custom arrow */
.select-cat_div::after{
    content:"\25BC";
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    font-size:12px;
    color:var(--brown);
}

/* BUTTON */
.adv_search .search_btn{
    height:42px;
    padding:0 20px;
    border:none;
    border-radius:25px;
    background:var(--brown);
    color:#fff;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
    white-space:nowrap;
}

.adv_search .search_btn:hover{
    background:var(--gold);
    color:#000;
    transform:translateY(-1px);
}


/* =========================
   SEARCH RESULT BLOCK (MODERN)
========================= */

.search-block{
    background:#fff;
    padding:20px;
    border-radius:10px;
    margin-bottom:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
    transition:0.3s;
}

.search-block:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* DATE */
.search-block .date{
    display:inline-block;
    padding:4px 10px;
    font-size:13px;
    background:var(--brown);
    color:#fff;
    border-radius:6px;
    margin-bottom:10px;
}

/* TITLE */
.search-block .s_res{
    display:block;
    font-size:18px;
    font-weight:600;
    color:var(--brown);
    margin-bottom:8px;
}

/* TEXT */
.search-block .text{
    display: block;
    color: #464646;
    font-family: "Roboto";
    font-size: 17px;
    line-height: 25px;
    font-weight: normal;
    margin: 10px 0px 10px 0px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px){

.adv_search{
    flex-wrap:wrap;
}

/* select full */
.select-cat_div{
    width:100%;
}

/* button full */
.adv_search .search_btn{
    width:100%;
}

}

@media (max-width:480px){

.adv_search{
    flex-direction:column;
    align-items:stretch;
}

.adv_search .search_in,
.select-cat,
.adv_search .search_btn{
    width:100%;
    padding: 10px 15px;
}

}

span.searchnewtitle {
    margin-left: 10px;
}


span.error {
  text-align: center;
  display: block;
  font-size: 30px;
  line-height: 45px;
  font-family: "Roboto Condensed";
  font-weight: bold;
}

img.error_img {
  margin: 40px auto 60px;
  display: block;
  width: 30%;
}

a.error-content__link {
  color: #ffffff !important;
}
.show_all_items {
  display: flex;
  float: none;
  position: relative;
  text-align: left;
  font-family: 'DIN Pro';
  font-size: 18px;
  font-weight: bold;
  /* line-height: 14px; */
  letter-spacing: 0px;
  text-decoration: none;
  opacity: 1;
  margin: 20px auto 0px auto;
  right: 0;
  justify-content: center;
}

.show_all_items a:hover {
  background-color: #4b2a14;
}

.show_all_items a {
  text-align: left;
  font-family: 'DIN Pro';
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0px;
  /* text-decoration: underline; */
  opacity: 1;
  color: #fff;
  background-color: #6b3f1d;
  padding: 14px 35px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}



/* =========================
   404 PAGE
========================= */

.error-page{
    text-align:center;
    padding:80px 20px;
}

/* H1 */
.error-page h1{
    font-size:60px;
    font-weight:700;
    color:var(--brown);
    margin-bottom:15px;
}

/* TEXT */
.error-page p{
    font-size:16px;
    color:#777;
    margin-bottom:30px;
}

/* BUTTON */
.error-content__link{
    display:inline-block;
    padding:12px 25px;
    background:var(--brown);
    color:#fff;
    text-decoration:none;
    border-radius:25px;
    transition:0.3s;
}

.error-content__link:hover{
    background:var(--gold);
    color:#000;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px){

.error-page h1{
    font-size:40px;
}

}

@media (max-width:480px){

.error-page{
    padding:50px 15px;
}

.error-page h1{
    font-size:28px;
}

.error-page p{
    font-size:14px;
}

}


.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.pagination ul {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.pagination ul li {
  display: block;
  list-style: none;
  float: left;
  margin: 5px 7px;
}

.pagination a {
  display: flex;
  width: 35px;
  height: 35px;
  color: #363636;
  float: left;
  font-family: 'DIN Pro';
  font-weight: normal;
  font-size: 16px;
  padding: 8px 16px;
  text-decoration: none;
  background-color: #ffffff;
  transition: background-color .3s;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.pagination a.active {
  background-color: #4b2a14;
  color: #fff;
}

.pagination a:hover:not(.active) {
  background-color: #6b3f1d;
  color: #fff;
}