img {object-fit: cover !important;}

/* Marquee start */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Marquee Track */
.marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

/* Hover zamanı animasiyanı dayandır */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Hər bir item */
.marquee-item {
    flex-shrink: 0;
    min-width: 168px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Şəkillər */
.marquee-item img {
    max-width: 168px;
    height: 112px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover zamanı şəkil böyüsün */
.marquee-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Linklər */
.partner-link {
    display: block;
    text-decoration: none;
}

/* Animasiya */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobil üçün responsive */
@media (max-width: 640px) {
    .marquee-track {
        gap: 20px;
        animation-duration: 15s;
    }
    
    .marquee-item {
        min-width: 120px;
    }
    
    .marquee-item img {
        max-width: 120px;
        height: 80px;
    }
}
/*marquee end*/

.activecolor {
	color: red !important;
	font-weight: bold !important;
}

/*gallery start*/
/* ===== Qalereya ===== */
.gallery-section {
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: #f0f2f5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    color: #fff;
    font-size: 32px;
}

/* ===== Lightbox ===== */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox .lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    position: relative;
}

.gallery-lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Bagla duymesi */
.gallery-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.gallery-lightbox .lightbox-close:hover {
    transform: rotate(90deg);
}

/* Naviqasiya duymeleri */
.gallery-lightbox .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox .lightbox-prev {
    left: 20px;
}

.gallery-lightbox .lightbox-next {
    right: 20px;
}


/*start*/
.auto-container h1 {
	font-size: 28px !important;
    font-weight: 500 !important;
    color: #333 !important;
}
.title-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    vertical-align: middle;
    object-fit: contain;
}

@media (max-width: 767px) {
    .title-icon {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
}
.text-image {
    float: left;
    margin: 0 20px 15px 0;
    max-width: 300px;
	max-height: 250px;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .text-image {
        float: none;
        display: block;
        margin: 0 auto 15px;
        max-width: 100%;
    }
}
.clients-section .image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin-right: 10px;
    background: #ffffff;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
}

.clients-section .image-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.clients-section .image-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
/*end*/

/*** 
====================================================================
	Styled Pagination
====================================================================
***/

/* Pagination Container */
.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
}

/* Pagination List */
.pagination {
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

/* Page Items */
.page-item {
    display: inline-block;
}

/* Page Links */
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--bg-secondary, #f5f5f5);
    color: var(--text-primary, #333);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    user-select: none;
}

/* Hover effect */
.page-link:hover {
    background: var(--blue, #007bff);
    color: var(--white, #ffffff);
    border-color: var(--blue, #007bff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Active page */
.page-item.active .page-link {
    background: var(--blue, #007bff);
    color: var(--white, #ffffff);
    border-color: var(--blue, #007bff);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    font-weight: 600;
}

/* Disabled (dots and non-clickable) */
.page-item.disabled .page-link {
    background: transparent;
    color: var(--text-muted, #999);
    cursor: default;
    border-color: transparent;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

/* Disabled hover - no effect */
.page-item.disabled .page-link:hover {
    background: transparent;
    color: var(--text-muted, #999);
    transform: none;
    box-shadow: none;
}

/* Arrow icons */
.page-link .fa-angle-left,
.page-link .fa-angle-right {
    font-size: 18px;
    font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
    
    .pagination {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .page-link {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }
    
    .pagination {
        gap: 4px;
    }
    
    .pagination-wrap {
        margin-top: 30px;
        padding: 15px 0;
    }
}

/* Dark mode support (əgər varsa) */
@media (prefers-color-scheme: dark) {
    .page-link {
        background: var(--bg-secondary-dark, #2d2d2d);
        color: var(--text-primary-dark, #e0e0e0);
    }
    
    .page-link:hover {
        background: var(--blue, #007bff);
        color: var(--white, #ffffff);
    }
    
    .page-item.disabled .page-link {
        background: transparent;
        color: var(--text-muted-dark, #666);
    }
}

/*** 
====================================================================
	Project Single Section
====================================================================
***/

/* ===== LANGUAGE DROPDOWN ===== */
#languageContainer {
    position: relative;
}

/* Toggle Button */
#langToggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#langToggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#langToggle:active {
    transform: scale(0.95);
}

#langToggle svg:first-child {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

#langToggle:hover svg:first-child {
    transform: rotate(10deg);
}

#langToggle .lang-text {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

#langToggle:hover .lang-text {
    color: #60a5fa;
}

#arrowIcon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 18px;
    height: 10px;
    opacity: 0.8;
}

#arrowIcon.rotated {
    transform: rotate(180deg);
}

/* Dropdown Menu */
#langDropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top right;
    z-index: 1000;
}

#langDropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown items */
#langDropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

#langDropdown a:not(:last-child) {
    border-bottom: 1px solid #f3f4f6;
}

/* Hover effekti */
#langDropdown a:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    transform: translateX(4px);
}

#langDropdown a:hover .lang-code-badge {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Dil badge (AZ, RU, EN) */
.lang-code-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 11px;
    font-weight: 800;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Dil adı */
.lang-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: color 0.3s ease;
}

#langDropdown a:hover .lang-name {
    color: #2563eb;
}

/* Aktiv dil işarəsi (hover-da göstər) */
#langDropdown a::after {
    content: '→';
    position: absolute;
    right: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #2563eb;
    font-size: 18px;
}

#langDropdown a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Dropdown-a açılış animasiyası */
@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#langDropdown.show {
    animation: dropdownSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
/* Mobil cihazlar üçün (768px və daha kiçik) */
@media (max-width: 768px) {
    #langDropdown.show {
        right: 30px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #langToggle {
        padding: 12px 10px;
        gap: 6px;
        border-radius: 8px;
		margin-right: 30px;
    }
    
    #langToggle .lang-text {
        font-size: 13px;
    }
    
    #langToggle svg:first-child {
        width: 16px;
        height: 16px;
    }
    
    #arrowIcon {
        width: 14px;
        height: 8px;
    }
    
    #langDropdown {
        min-width: 150px;
        right: -10px;
        padding: 4px;
    }
    
    #langDropdown a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .lang-code-badge {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    #langToggle {
        padding: 12px 8px;
        gap: 4px;
        border-radius: 6px;
		margin-right: 30px;
    }
    
    #langToggle .lang-text {
        font-size: 12px;
    }
    
    #langToggle svg:first-child {
        width: 14px;
        height: 14px;
    }
    
    #arrowIcon {
        width: 12px;
        height: 6px;
    }
    
    #langDropdown {
        min-width: 130px;
        right: -5px;
        padding: 4px;
    }
    
    #langDropdown a {
        padding: 6px 10px;
        font-size: 12px;
        gap: 8px;
    }
    
    .lang-code-badge {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 9px;
    }
}

:root{
  --white: #fff;
  --black: #000;
  --blue: #0087CA;
  --yellow: #F5C714;
  --red: #BC5828;
  --gray: #708088;


  --white2: #EDEDED;
  --reserv: #00ca437e;
}

html{
  scroll-behavior: smooth;
}

.container{
  margin: auto;
  max-width: 1168px;
 }
.map-cont iframe{
  width: 100%;
  height: 290px !important;
  border-radius: 8px;
}

.bg-img{
  background-image: url("./images/historyhead.png");
  border-radius: 8px;
  background-repeat: no-repeat;
}

.s-bg-img{
  background-image:url("./images/s-bg-1.png");
}
a,
button{
  outline: none;
}


#onclick{
  display: none;
}

.lbl-resp{
  position: relative;
  float: right;
  color: white;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1208px) {
  .container{
    padding-left: 16px;
    padding-right: 16px;
  }
}



@media screen and (max-width: 1000px) { 
  .lbl-resp{
    display: block;
  }

  .rsp-header{
    margin-top: 100px;
  }
 

  .rsp-nav{
    position: fixed;
    top: 0px;
  }
  .menu{
    position: fixed;
    margin: 0px;
    padding: 0px;
    width: 100%;
  }

  .menu label{
    right: 30px;
  }
  .menu ul{
    position: absolute;
    right: 0px;
    margin-top: 60px ;
    margin-left: 0px;
    width: 50%;
    flex-direction: column;
    background-color: var(--blue);
    display: none;
    height: 100vh;
    display: none;

  }

  .menu ul li{
    display: block;
    width: 100%;
    padding: 20px;  
    
  }

  .menu ul li a{
    width: 100%;
  }

  #onclick:checked~ul{
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .rsp-footer{
    flex-direction: column;
    width: 100%;
    gap: 52px;
    justify-content: space-between;
  }

  .footer-rsp-1{
    width: 100%;
  }

  .footer-rsp-2{
    gap:32px;
    width: 100%;
  }
}

@media screen and (max-width: 490px) {
   .footer-rsp-1{
    flex-direction: column;
    width: 100%;
   } 
   .footer-rsp-2{
    flex-direction: column;
    width: 100%;
    align-items: center;
   } 
}

.navlinks li{
  position: relative;
}
.active::after,
.navlinks li::after{
  content: "";
  position: absolute;
  background-color: white;
  height: 4px;
  width: 0%;
  left: 0;
  bottom: -38px;
  transition: 0.2s;
}
.active::after,
.navlinks li:hover::after{
  width: 100%;
}
@media screen and (max-width:1000px) {
  .navlinks li:hover::after{
    width: 0%;
  }
  .active::after,
.navlinks li::after{
  content: "";
  position: absolute;
  background-color: white;
  height: 4px;
  width: 0%;
  left: 0;
  bottom: -38px;
  transition: 0.2s;
}
.active::after,
.navlinks li:hover::after{
  width: 0%;
}
}


.hover-btn img{
  filter: invert(100%) brightness(200%);
}

.hover-btn:hover img{
  filter: invert(100%) brightness(0%);
}
.brownImg img{
  filter: invert(38%) sepia(87%) saturate(399%) hue-rotate(335deg) brightness(94%) contrast(107%);
}
.react-multi-carousel-list{
  padding-bottom: 35px !important;
}
.custom-dot-list-style{
  margin-bottom: 10px !important;
  gap: 10px;
}
.react-multi-carousel-dot button,
.react-multi-carousel-dot{
  width: 16px !important;
  height: 16px !important;
}
.carousel-container2 ul{
  gap:30px !important;
}
.react-multi-carousel-dot--active button{
  background-color: #747474 !important;
}

.carousel-container2 .react-multiple-carousel__arrow--left,
.carousel-container2 .react-multiple-carousel__arrow--right{
  display: none !important;
}

.list li{
  list-style: disc !important;
  margin-left: 25px !important;
}

.carousel-container .react-multi-carousel-item--active h1{
  animation: inOut 0.6s linear;
}
@keyframes inOut{
  from {margin-top: 100px;}
  to {margin-top: 0px;}
}

.react-multiple-carousel__arrow{
  background-color:  none !important;
  background:  none !important;
}
.react-multiple-carousel__arrow::before{
  font-size: 50px !important;
}

.grid-full-168{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}

/* Mobil cihazlar üçün (eni 768px-dən kiçik) */
/* Yalnız mobil üçün */
@media only screen and (max-width: 767px) {
  #mm {
    margin-left: 0 !important;
  }
  
  #mm h1 {
    font-size: 20px !important;
	line-height: 25px;
    word-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    max-width: 90vw !important;
    display: block !important;
    padding: 0 10px !important;
  }
  
  #mm p {
    font-size: 15px !important;
	line-height: 20px;
	margin-top: 10px;
    word-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    max-width: 90vw !important;
    display: block !important;
    padding: 0 10px !important;
  }
  
  /* Sliderdəki bütün mətnlərə tətbiq et */
  .react-multi-carousel-item * {
    max-width: 100% !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }
  
  /* mobilde manshet - Düymələri gizlət */
  .react-multiple-carousel__arrow--left,
  .react-multiple-carousel__arrow--right {
    display: none !important;
  }

}

@font-face{font-family:"revicons";fallback:fallback;src:url("./revicons.woff") format('woff'),url("./revicons.ttf") format('ttf'),url("./revicons.eot") format('ttf')}.react-multi-carousel-list{display:flex;align-items:center;overflow:hidden;position:relative}.react-multi-carousel-track{list-style:none;padding:0;margin:0;display:flex;flex-direction:row;position:relative;transform-style:preserve-3d;backface-visibility:hidden;will-change:transform,transition}.react-multiple-carousel__arrow{position:absolute;outline:0;transition:all .5s;border-radius:35px;z-index:1000;border:0;background:rgba(0,0,0,0.5);min-width:43px;min-height:43px;opacity:1;cursor:pointer}.react-multiple-carousel__arrow:hover{background:rgba(0,0,0,0.8)}.react-multiple-carousel__arrow::before{font-size:20px;color:#fff;display:block;font-family:revicons;text-align:center;z-index:2;position:relative}.react-multiple-carousel__arrow:disabled{cursor:default;background:rgba(0,0,0,0.5)}.react-multiple-carousel__arrow--left{left:calc(4% + 1px)}.react-multiple-carousel__arrow--left::before{content:"\e824"}.react-multiple-carousel__arrow--right{right:calc(4% + 1px)}.react-multiple-carousel__arrow--right::before{content:"\e825"}.react-multi-carousel-dot-list{position:absolute;bottom:0;display:flex;left:0;right:0;justify-content:center;margin:auto;padding:0;margin:0;list-style:none;text-align:center}.react-multi-carousel-dot button{display:inline-block;width:12px;height:12px;border-radius:50%;opacity:1;padding:5px 5px 5px 5px;box-shadow:none;transition:background .5s;border-width:2px;border-style:solid;border-color:grey;padding:0;margin:0;margin-right:6px;outline:0;cursor:pointer}.react-multi-carousel-dot button:hover:active{background:#080808}.react-multi-carousel-dot--active button{background:#080808}.react-multi-carousel-item{transform-style:preserve-3d;backface-visibility:hidden}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.react-multi-carousel-item{flex-shrink:0 !important}.react-multi-carousel-track{overflow:visible !important}}[dir='rtl'].react-multi-carousel-list{direction:rtl}.rtl.react-multiple-carousel__arrow--right{right:auto;left:calc(4% + 1px)}.rtl.react-multiple-carousel__arrow--right::before{content:"\e824"}.rtl.react-multiple-carousel__arrow--left{left:auto;right:calc(4% + 1px)}.rtl.react-multiple-carousel__arrow--left::before{content:"\e825"}