/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================= ROBOTO LOCAL ================= */

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}



body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background: #f2f4f7;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}


h2 {
    font-size: 30px;
    margin-bottom: 40px;
    text-align: center;
    color: #1f4a7c;
}
/* ================= TOP BAR FIX ================= */

.top-bar {
    background: #1f4a7c;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}


/* HEADER FLEX STRUCTURE */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 0 0 auto;
}

.header-flex {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 45px;
}

.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;   /* sabit ÃƒÆ’Ã‚Â¶lÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â¼ */
}

.brand img {
    height: 70px;
}

.site-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.search-icon {
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}


/* ================= DESKTOP NAV ================= */

.desktop-nav {
    background: #1f4a7c;
    display: flex;
    justify-content: center;
}

.desktop-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    white-space: nowrap;  
}

.desktop-menu li {
    position: relative;
}

/* Ãƒâ€°Ã¢â€žÂ¢sas link */
.desktop-menu > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    display: inline-block;
    transition: 0.3s ease;
}

/* alt xÃƒâ€°Ã¢â€žÂ¢tt animasiya */
.desktop-menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
}

.desktop-menu > li:hover > a::after {
    width: 100%;
}

.desktop-menu > li > a:hover {
    color: #cfe4ff;
}

/* ===== SUBMENU ===== */

.desktop-dropdown {
    padding-bottom: 6px; /* hover gap fix */
}

.desktop-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f4a7c;
    min-width: 220px;
    list-style: none;
    padding: 20px 0 0 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
    z-index: 99999;
}

/* smooth aÃƒÆ’Ã‚Â§Ãƒâ€žÃ‚Â±lma */
.desktop-dropdown:hover > .desktop-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* submenu link */
.desktop-submenu li a {
    display: block;
    padding: 10px 18px 7px 18px;
    color: #fff;
    text-decoration: none;
    transition: 0.25s ease;
    font-size: 14px;
}

ul.desktop-submenu .in {
    padding-bottom: 0px !important;
}
.desktop-submenu li a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 24px;
}

/* ================= MOBILE MENU ================= */

.mobile-close{
position:absolute;
top:15px;
right:20px;
font-size:22px;
color:#fff;
cursor:pointer;
}

.mobile-dropdown > a{
display:flex;
justify-content:space-between;
align-items:center;
}

.mobile-dropdown > a::after{content:"▾";font-size: 18px;transition:0.3s;}

/* açıq olanda ox dönsün */
.mobile-dropdown.open > a::after{
transform:rotate(180deg);
}

.mobile-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.mobile-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: 0.3s ease;
}

.mobile-panel {
    position: absolute;
    right: -320px;
    top: 0;
    width: 280px;
    height: 100%;
    background: #1f4a7c;
    padding: 50px 20px 30px 20px;
    transition: 0.3s ease;
    overflow-y: auto;
}

/* aktiv */
.mobile-nav.active {
    pointer-events: auto;
}

.mobile-nav.active .mobile-overlay {
    opacity: 1;
}

.mobile-nav.active .mobile-panel {
    right: 0;
}

/* menu */
.mobile-menu {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.mobile-menu a:hover {
    color: #cfe4ff;
}

/* mobile submenu */
.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 8px;
}

.mobile-submenu li a {
    font-size: 14px;
    opacity: 0.85;
}


/* SEARCH */

.search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1f4a7c;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    z-index: 2000;
}

.search-panel.active {
    max-height: 120px;
    padding: 25px 0;
}

.search-box {
    width: 600px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    outline: none;
}

.search-close {
    padding: 0 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
}


/* ================= LANGUAGE SWITCH ================= */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.lang-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: 0.3s ease;
}

.lang-item:hover {
    opacity: 1;
}

.lang-item.active {
    opacity: 1;
    font-weight: 600;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
}

.lang-separator {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* ================= HERO SLIDER ================= */

.hero-section{
    position:relative;
    padding: 103px 0px 100px 0px;
    background:url('../img/manshet_bg.avif') center/cover no-repeat;
    overflow:hidden;
    color:#fff;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(10,25,45,0.75);
}

/* container padding fix */
.hero-slider.container{
    padding-left:0 !important;
    padding-right:0 !important;
}

.hero-slider{
    position:relative;
    z-index:2;
    overflow:hidden;
}

/* TRACK */
.hero-track{
    display:flex;
    transition:transform 0.6s ease;
}

/* SLIDE */
.hero-slide{
    min-width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 40px;
    padding: 0 30px;
    box-sizing:border-box;
    text-decoration:none;
    color:#fff;
}

.hero-slide img{
    width: 35%;
    height: 350px;
    object-fit:cover;
    border-radius:14px;
    border: 5px solid;
}

.hero-slide-content{
    width: 65%;
    text-align:left !important;
    margin-bottom: 85px;
}

span.mansht_text {
    line-height: 25px;
    font-size: 18px;
    color: #e5e5e5;
    font-weight: 400;
}

.hero-slide h2{
    text-align:left !important;
    font-size: 36px;
    margin:18px 0;
    line-height: 45px;
    color: #fff;
}

.hero-arrows{
    position:absolute;
    bottom: 0px;
    left: 41.2%;
    transform:translateX(-50%);
    display:flex;
    gap: 10px;
    z-index:5;
}

.hero-prev,
.hero-next{
    width: 40px;
    height: 40px;
    border-radius:50%;
    border:none;
    background:#1f4a7c;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

/* DOTS */
.hero-dots{
    position:absolute;
    bottom: 0px;
    right: 20px;
    transform:translateX(-50%);
    display:flex;
    gap: 7px;
}

.hero-dot{
    width: 10px;
    height: 10px;
    border-radius:50%;
    background:rgba(255,255,255,0.4);
    cursor:pointer;
}

.hero-dot.active{
    background:#fff;
}

/* ================= REVIEWS FINAL ================= */

.reviews-section {
    background: #ffffff;
    padding: 60px 0 90px 0;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1f4a7c;
}

/* Slider wrapper */
.reviews-slider {
    position: relative;
    overflow: hidden; 
}

/* Track */
.review-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* Slide */
.review-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 80px;
    box-sizing: border-box;
}

/* Kart */
.review-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #f4f6f9;
    border-radius: 30px;
    padding: 45px 80px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    position: relative;
}


.review-card::before {
    content: "\201C";
    position: absolute;
    top: 85px;
    left: 50px;
    font-size: 140px;
    color: rgba(31, 74, 124, 0.07);
    font-weight: 700;
}


.review-card img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #1f4a7c;
}


.review-content {
    max-width: 800px;
}

.review-content h3 {
    font-size: 20px;
    color: #1f4a7c;
    margin-bottom: 6px;
}

.review-position p {
    display: block;
    font-size: 13px !important;
    color: #7b8aa0 !important;
    margin-bottom: 10px;
    line-height: 20px !important;
}

.review-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #3c4b5f;
}

/* Oxlar */
.review-prev,
.review-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1f4a7c;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

.review-prev:hover,
.review-next:hover {
    background: #16375c;
}

.review-prev { left: 15px; }
.review-next { right: 15px; }



/* ================= SERVICES 6 GRID ================= */

.services-section {
    padding: 70px 0 90px 0;
    background: #eef2f7;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1f4a7c;
}

/* 3x2 grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

/* Kart */
.service-box {
    background: linear-gradient(145deg, #1f4a7c, #173a66);
    border-radius: 26px;
    padding: 35px 35px 17px 35px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 25px 60px rgba(31,74,124,0.25);
    position: relative;
    overflow: hidden;
}

/* Hover qalxma */
.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(16,43,78,0.35);
}

/* AÃƒâ€žÃ…Â¾ ALT XÃƒâ€ Ã‚ÂTT (dediyin effekt qalÃƒâ€žÃ‚Â±r) */
.service-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 4px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: 0.4s ease;
}

.service-box:hover::after {
    width: 70%;
}

/* Ãƒâ€žÃ‚Â°Ãƒâ€¦Ã…Â¸Ãƒâ€žÃ‚Â±q effekti */
.service-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
}

/* Icon */
.service-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.service-icon i {
    font-size: 28px;
    color: #ffffff;
}

.service-box:hover .service-icon {
    background: rgba(255,255,255,0.25);
}

/* Title */
.service-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Text */
.service-box p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}


/* ================= PRODUCTS PREMIUM ================= */

.products-section {
    padding: 70px 0 90px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f4f6f9 100%);
}

.products-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1f4a7c;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Kart */
.product-card {
    display: block;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.5s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

/* Ãƒâ€¦Ã…Â¾Ãƒâ€°Ã¢â€žÂ¢kil wrapper */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.7s ease;
}

.product-card:hover img {
    transform: scale(1.12);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #1f4a7c;
    color: #fff;
    padding: 11px 16px 8px 16px;
    border-radius: 15px;
    font-size: 12px;
    z-index: 2;
}

/* Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,43,78,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.product-overlay span {
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Content */
.product-content {
    padding: 30px 30px 35px;
}

.product-content h3 {
    color: #1f4a7c;
    font-size: 16px;
    line-height: 1.6;
}


/* ================= PROTOTYPE ================= */

.prototype-section {
    background: #1f4a7c;
    padding: 80px 0;
    color: #ffffff;
}

.prototype-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.prototype-text h2 {
    color: #ffffff;
    text-align: left;
}

.prototype-text h3 {
    margin: 20px 0;
}

.prototype-image img {
    width: 100%;
    border-radius: 6px;
}




/* ================= NEWS PREMIUM ================= */

.news-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    position: relative;
    z-index: 2;
}

/* Kart */
.news-card {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.5s ease;
}

/* Hover qalxma */
.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* Ãƒâ€¦Ã…Â¾Ãƒâ€°Ã¢â€žÂ¢kil wrapper */
.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Zoom */
.news-card:hover img {
    transform: scale(1.12);
}

/* Gradient overlay */
.news-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

/* Date badge */
.news-date {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #1f4a7c;
    color: #fff;
    padding: 9px 24px 6px 24px;
    font-size: 13px;
    border-radius: 15px;
    z-index: 2;
}

/* Content */
.news-content {
    padding: 25px;
}

.news-content h4 {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* More link */
.news-more {
    font-size: 14px;
    color: #1f4a7c;
    font-weight: 600;
    transition: 0.3s;
}

.news-card:hover .news-more {
    letter-spacing: 1px;
}


/* ================= ADVANTAGES ================= */

.advantages-section {
    padding: 70px 0 90px 0;
    background: #f3f5f9;
}

.advantages-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1f4a7c;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.adv-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.3s ease;
}

.adv-card:hover {
    transform: translateY(-8px);
}

.adv-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.adv-icon {
    position: absolute;
    top: 200px;
    left: 40px;
    width: 70px;
    height: 70px;
    background: #f3f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.adv-icon i {
    font-size: 26px;
    color: #1f4a7c;
}

.adv-content {
    padding: 60px 30px 35px 30px;
}

.adv-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f4a7c;
    margin-bottom: 15px;
}

.adv-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6b7f;
}



/* ================= FOOTER PREMIUM ================= */


.main-footer {
    position: relative;
    background: linear-gradient(180deg, #173a66 0%, #102b4e 100%);
    color: #ffffff;
    overflow: hidden;
}

/* zÃƒâ€°Ã¢â€žÂ¢if radial iÃƒâ€¦Ã…Â¸Ãƒâ€žÃ‚Â±q effekti */
.main-footer::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 60%);
    pointer-events: none;
}

/* ÃƒÆ’Ã…â€œst parlaq xÃƒâ€°Ã¢â€žÂ¢tt */
.footer-top-line {
    height: 4px;
    background: linear-gradient(90deg, #1f4a7c, #2e6fb2, #1f4a7c);
}


.footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:15px;width: 65%;}

.footer-brand img{height: 85px;}

.footer-brand h4{margin-bottom: 0px !important;font-size: 25px;line-height:1.3;color:#fff;font-size: 21px !important;}


/* Grid */
.footer-grid {
    padding: 60px 20px 50px 20px;
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 57px;
}

.main-footer h4 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
}

.main-footer p,
.main-footer li {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

/* Link animasiyasÃƒâ€žÃ‚Â± */
.main-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.main-footer ul li a:hover {
    opacity: 0.7;
    padding-left: 5px;
}

/* Sosial ikon */
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #1f4a7c;
}

.footer_contact a {
    margin-left: 8px;
}

/* ================= FOOTER MAP ================= */

.footer-map h4 {
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-working p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 4px;
}

/* Bottom */
.footer-bottom {
    background: #0d223f;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    margin-left: 20px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}


/* ================= BACK TO TOP ================= */

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #1f4a7c;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
}


#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: #16375c;
    transform: translateY(-4px);
}


/* ================= PARTNERS CLEAN ================= */

.partners-section {
    padding: 70px 0 90px 0;
    background: #ffffff; /* istÃƒâ€°Ã¢â€žÂ¢diyin kimi aÃƒâ€žÃ…Â¸ */
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1f4a7c;
}

/* Slider */
.partners-slider {
    position: relative;
    padding: 0;
}

/* Wrapper */
.partners-wrapper {
    overflow: hidden;
    width: 100%;
}

/* Track */
.partners-track {
    display: flex;
    align-items: center;
    transition: transform 0.6s ease;
}

/* banners */
.banners_partner {
  position: relative;
  padding: 0;
}

.banners_partner .owl-nav,
.banners_partner .owl-dots {
  display: none !important;
}

.banner_img img {
  display: block;
  width: auto;
  margin: 0 auto;
  max-width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px -8px #000000;
  box-shadow: 0 0 12px -8px #000000;
  transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
}

.banner_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.banner_img:hover img {
  -webkit-box-shadow: 0 0 0 0 #000000;
  box-shadow: 0 0 0 0 #000000;
}

/* banners */


/* ================= NEWS VIDEO VERSION ================= */

.news-section {
    position: relative;
    padding: 70px 0 90px 0;
    overflow: hidden;
    background: none; /* kÃƒÆ’Ã‚Â¶hnÃƒâ€°Ã¢â€žÂ¢ aÃƒâ€žÃ…Â¸ fonu deaktiv edir */
}

/* video */
.news-section .news-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* tÃƒÆ’Ã‚Â¼nd overlay */
.news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15,35,60,0.75);
    z-index: 1;
}

/* content ÃƒÆ’Ã‚Â¼stdÃƒâ€°Ã¢â€žÂ¢ qalsÃƒâ€žÃ‚Â±n */
.news-section .container {
    position: relative;
    z-index: 2;
}

/* baÃƒâ€¦Ã…Â¸lÃƒâ€žÃ‚Â±q aÃƒâ€žÃ…Â¸ */
.news-section h2 {
    color: #fff;
}

/* kartlar Ãƒâ€¦Ã…Â¸ÃƒÆ’Ã‚Â¼Ãƒâ€¦Ã…Â¸Ãƒâ€°Ã¢â€žÂ¢ effekti */
.news-section .news-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    color: #fff;
    transition: 0.35s ease;
}

.news-section .news-card h4 {
    color: #fff;
}

/* hover */
.news-section .news-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.18);
}

/* image zoom */
.news-section .news-card img {
    transition: 0.4s ease;
}

.news-section .news-card:hover img {
    transform: scale(1.05);
}



/* ================= SCROLL ANIMATION ================= */

.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.footer-social {
    margin-top: 20px;
}

.footer_contact p {
    padding: 0px 0px 10px 0;
    transition: 0.3s;
}

.footer_contact p:hover {
    opacity: 0.7;
    padding-left: 5px;
}

/* about page*/

.inner-hero {
    position: relative;
    padding: 120px 0 90px;
    background: url('../img/manshet_bg.avif') center/cover no-repeat;
    color: #fff;
}

.inner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,25,45,0.8);
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-size: 42px;
    margin-top: 15px;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-text {
    margin: 0 auto 60px;
    text-align: justify;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5c70;
    margin-bottom: 20px;
}

/* ===== GALLERY ===== */

.about-gallery {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 30px; */
}

.about-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.4s;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

/* ===== REVIEW ADAPT ===== */

.about-review {
    display: flex;
    gap: 40px;
    background: #f4f6f9;
    padding: 60px;
    border-radius: 30px;
    align-items: center;
}






/* ===== SCIENTISTS ===== */

.scientists-section {
    padding: 80px 0;
    background: #f3f5f9;
}

.scientists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.scientist-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.4s ease;
    border: 1px solid #e2e6ee;
}

.scientist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.scientist-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.scientist-content {
    padding: 25px;
}

.scientist-date {
    font-size: 13px;
    color: #1f4a7c;
    display: block;
    margin-bottom: 12px;
}

.scientist-content h3 {
    font-size: 18px;
    color: #1f4a7c;
    margin-bottom: 10px;
    line-height: 1.5;
}

.scientist-content h4 {
    font-size: 15px;
    font-weight: 500;
    color: #5b6b7f;
}



/* ===== DETAIL PAGE ===== */

.scientist-detail {
    padding: 90px 0;
    background: #ffffff;
}

.scientist-detail-flex {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.scientist-detail-image img {
    width: 350px;
    border-radius: 18px;
}

.scientist-detail-content h2 {
    margin-bottom: 25px;
    color: #1f4a7c;
    text-align: left;
    border-bottom: 1px solid #e2e6ee;
    margin-bottom: 30px;
    padding-bottom: 15px
}

.scientist-name {
    font-size: 32px;
    font-weight: 700;
    color: #1f4a7c;
    margin-bottom: 10px;
}

/*.scientist-article {
    font-size: 20px;
    font-weight: 500;
    color: #5b6b7f;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e6ee;
}*/

.scientist-detail-content {
    text-align: justify;
}

.scientist-detail-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #3c4b5f;
    margin-bottom: 20px;
}




/* ================= NEW SEARCH DESIGN ================= */

.search-section {
    padding: 70px 0 100px;
    background: #f4f6f9;
}

/* BOX */
.search-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

/* CONTROLS */
.search-controls {
    display: flex;
    gap: 18px;
    align-items: center;
}

/* INPUT */
.search-controls input {
    flex: 1;
    height: 55px;
    border-radius: 14px;
    border: 1px solid #e3e8f0;
    padding: 0 18px;
    font-size: 15px;
    transition: 0.3s;
    background: #f9fbfd;
}

.search-controls input:focus {
    border-color: #1f4a7c;
    background: #ffffff;
}

/* SELECT */
.search-controls select {
    width: 230px;
    height: 55px;
    border-radius: 14px;
    border: 1px solid #e3e8f0;
    padding: 0 15px;
    font-size: 14px;
    background: #f9fbfd;
    cursor: pointer;
}

/* BUTTON */
.search-btn {
    height: 55px;
    padding: 0 30px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg,#1f4a7c,#2f6db0);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31,74,124,0.35);
}

/* RESULT TITLE */
.search-result-title {
    font-size: 18px;
    color: #1f4a7c;
    margin-bottom: 25px;
}

/* RESULTS GRID */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* RESULT CARD */
.result-item {
    display: block;
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 18px;
    border: 1px solid #edf1f6;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* LEFT BORDER ACCENT */
.result-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #1f4a7c;
    border-radius: 18px 0 0 18px;
}

/* TITLE */
.result-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1f4a7c;
}

/* DESCRIPTION */
.result-item p {
    font-size: 14px;
    color: #5b6b7f;
    line-height: 1.6;
}


/* ================= OLD SEARCH RESULTS â†’ NEW DESIGN ================= */

.search-block {
    display: block;
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 18px;
    border: 1px solid #edf1f6;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.search-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* LEFT BORDER ACCENT */
.search-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #1f4a7c;
    border-radius: 18px 0 0 18px;
}

/* LINK BLOCK */
.search-block .s_res {
    display: block;
    text-decoration: none;
}

/* TITLE */
.search-block .s_res {
    font-size: 17px;
    font-weight: 600;
    color: #1f4a7c;
    margin-bottom: 6px;
}

/* TEXT */
.search-block .text {
    display: block;
    font-size: 14px;
    color: #5b6b7f;
    line-height: 1.6;
    margin-top: 6px;
}

/* DATE / TYPE LABEL */
.search-block .date {
    display: inline-block;
    font-size: 12px;
    color: #7a8ca3;
    margin-right: 8px;
    margin-bottom: 6px;
}

/* NEWS LABEL */
.searchnewtitle {
    background: #eef3f9;
    color: #1f4a7c;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}


/* ===== ERROR PAGE ===== */

.error-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../img/manshet_bg.avif') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.error-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,25,45,0.85);
}

.error-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 8px;
    color: #ffffff;
    margin-bottom: 10px;
}

.error-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.error-text {
    font-size: 16px;
    line-height: 1.8;
    color: #cfe4ff;
    margin-bottom: 35px;
}

.error-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.error-btn {
    padding: 15px 28px 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-primary {
    background: #1f4a7c;
    color: #fff;
}

.btn-primary:hover {
    background: #16375c;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #1f4a7c;
}








/* ================= GALLERY PAGE ================= */

.gallery-section {
    padding: 80px 0 110px;
    background: #f4f6f9;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

/* CARD (a tag) */
.gallery-card {
    display: block;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.45s ease;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

/* IMAGE WRAPPER */
.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

/* DARK OVERLAY */
.gallery-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15,35,60,0.25);
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-card:hover .gallery-image::after {
    opacity: 1;
}

/* TITLE AREA */
.gallery-info {
    padding: 25px 28px 30px;
}

.gallery-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1f4a7c;
    line-height: 1.5;
    transition: 0.3s ease;
}

.gallery-card:hover .gallery-info h3 {
    color: #16375c;
}

/* VIDEO PLAY ICON */
.video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,#1f4a7c,#2f6db0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 15px 35px rgba(31,74,124,0.4);
    transition: 0.35s ease;
    z-index: 2;
}

.gallery-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15);
}



/* ================= PAGINATION ================= */

.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: #ebebeb;
  transition: background-color .3s;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.pagination a.active {
  background-color: #005780;
  color: #fff;
}

.pagination a:hover:not(.active) {
  background-color: #005780;
  color: #fff;
}





/* ================= DETAIL PAGE ================= */

.detail-section {
    padding: 80px 0 110px;
    background: #f4f6f9;
}

.detail-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #1f4a7c;
    margin-bottom: 60px;
}

/* PHOTO GRID */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.photo-item {
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.photo-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

/* VIDEO DETAIL */

.video-detail-wrapper{
    max-width:900px;
    margin:auto;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    aspect-ratio:16/9;
    box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

.video-detail-wrapper iframe,
.video-detail-wrapper video{
    width:100%;
    height:100%;
    display:block;
    border:0;
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ================= PRODUCT FILTER ================= */

.product-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.product-filter h3 {
    font-size: 16px;
    color: #1f4a7c;
    font-weight: 600;
}

.product-filter select {
    height: 45px;
    padding: 0 15px;
    border-radius: 12px;
    border: 1px solid #e4e9f2;
    background: #f9fbfd;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-filter select:focus {
    border-color: #1f4a7c;
    background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .product-filter {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .product-filter select {
        width: 100%;
    }
}


/* ================= NEWS FILTER ================= */

.news-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.news-filter h3 {
    font-size: 16px;
    color: #1f4a7c;
    font-weight: 600;
}

.news-filter select {
    height: 45px;
    padding: 0 15px;
    border-radius: 12px;
    border: 1px solid #e4e9f2;
    background: #f9fbfd;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.news-filter select:focus {
    border-color: #1f4a7c;
    background: #ffffff;
}

.all_news .news-card {
    background: #ffffff !important;
    border: none;
}

.all_news h4 {
    color: #000000 !important;
    
}

.container.all_news {
    padding: 0;
}

.news-section_in::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .news-filter {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .news-filter select {
        width: 100%;
    }
}


/* ================= NEWS DETAIL ================= */

.news-detail-section {
    padding: 80px 0 110px;
    background: #f4f6f9;
}

.news-detail-header {
    margin-bottom: 40px;
}

.news-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Kateqoriya */
.news-category {
    background: #1f4a7c;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

/* Tarix */
.news-date-in {
    color: #5b6b7f;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* BaxÃ„Â±Ã…Å¸ */
.news-views {
    color: #5b6b7f;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-detail-title {
    font-size: 32px;
    color: #1f4a7c;
    font-weight: 600;
    line-height: 1.4;
}

/* ================= NEWS COVER IMAGE ================= */

.news-cover-image {
    margin: 40px auto 50px;
    max-width: 850px;   /* full deyil */
}

.news-cover-image img {
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,0.07);
}


.news-detail-content {
    padding: 10px;
    margin-bottom: 60px;
}

.news-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3c4b5f;
    text-align: justify;
}

.news-detail-content img{
    display:block;
    margin:20px auto;
    max-width:100%;
    height:auto;
}

/* GALLERY */

.news-detail-gallery h3,
.news-detail-video h3 {
    margin-bottom: 25px;
    color: #1f4a7c;
}

.detail-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-photo-item {
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.detail-photo-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s ease;
}

.detail-photo-item:hover img {
    transform: scale(1.1);
}

/* VIDEO */

.news-detail-video {
    margin-top: 60px;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .detail-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-detail-title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .detail-photo-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-content {
        padding: 25px;
    }
}







/* ================= PRODUCT DETAIL CLEAN V3 ================= */

.product-detail-section {
    padding: 90px 0 120px;
    background: #f4f6f9;
}

.product-detail-header {
    margin-bottom: 40px;
}

.product-detail-title {
    font-size: 38px;
    color: #1f4a7c;
    line-height: 1.4;
    margin-bottom: 15px;
}

.product-status {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    background: #d4edda;
    color: #155724;
}

/* MAIN GRID */
.product-detail-main {
    display: grid;
    grid-template-columns: 1.15fr 2fr;
    gap: 35px; /* Ã‰â„¢vvÃ‰â„¢l 60 idi */
    align-items: start;
}

.product-detail-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* TEXT */
.product-detail-text {
    font-size: 17px; /* bÃƒÂ¶yÃƒÂ¼tdÃƒÂ¼k */
    line-height: 1.95;
    color: #3c4b5f;
    text-align: justify; /* JUSTIFY */
}

/*.product-detail-text p {
    margin-bottom: 24px;
}*/

/* GALLERY */
.product-detail-gallery {
    margin-top: 80px;
}

.product-detail-gallery h3 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #1f4a7c;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-gallery-item {
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.product-gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-gallery-item:hover img {
    transform: scale(1.07);
}

/* VIDEO */
.product-detail-video {
    margin-top: 80px;
}

.product-detail-video h3 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #1f4a7c;
}

/* Video artÃ„Â±q uzun deyil */
.video-wrapper {
    width: 100%;
    max-width: 900px;
    height: 420px; /* sabit hÃƒÂ¼ndÃƒÂ¼rlÃƒÂ¼k */
    border-radius: 18px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .product-detail-main {
        grid-template-columns: 1fr;
    }

    .product-detail-title {
        font-size: 28px;
    }

    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-wrapper {
        height: 350px;
    }
}

@media (max-width: 600px) {

    .product-gallery-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-section {
        padding: 60px 0 90px;
    }

    .video-wrapper {
        height: 250px;
    }
}





/* Light gallery */
.news_in_gallery {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 0px 0px 25px 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);
}

.news_in_gallery .prosmotr_ul::after {
  content: "";
  display: block;
  clear: both;
}

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--- */


/* ================= PDF DOWNLOAD BUTTON ================= */

.pdf-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #1f4a7c;
    color: #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(31,74,124,0.25);
    margin-top: 30px;
}

.pdf-download-btn i {
    font-size: 16px;
}

.pdf-download-btn:hover {
    background: #16375c;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(31,74,124,0.35);
}



span.photohgalleryindate {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.breadcrumb span {
    display: inline-block;
}

/* ================= CONTACT GRID ================= */

/* CONTACT GRID */

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:50px;
}

/* CARD */

.contact_link{display:block;background: #f3f6fb;padding:35px 25px;border-radius:18px;text-align:center;text-decoration:none;transition:0.35s;border: 1px solid #eef1f5;}

.contact_link:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */

.cnt_icon{width:65px;height:65px;margin:0 auto 15px;background: #ffffff;border-radius:50%;display:flex;align-items:center;justify-content:center;}

.cnt_icon i{
font-size:26px;
color:#1f4a7c;
}

/* NAME */

.cnt_name{
display:block;
font-weight:600;
font-size:16px;
color:#1f4a7c;
margin-bottom:6px;
}

/* INFO */

.cnt_info{
display:block;
font-size:14px;
color:#6c7a8c;
line-height:1.5;
}

.contact-map{
    width:100%;height:420px;
}

.contact-map iframe{width:100%;height:100%;border:0;}

/* RESPONSIVE */

@media (max-width:992px){

.contact-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.contact-grid{
grid-template-columns:1fr;
}
}



/* ===== SITEMAP ===== */

.sitemap{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
list-style:none;
margin:40px 0;
padding:0;
align-items:start;
}

/* cards */

.sitemap > li{
background:#fff;
padding:22px 25px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
height:auto;
}

/* titles */

.sitemap > li > a{
display:block;
font-size:18px;
font-weight:600;
color:#1f4a7c;
margin-bottom:12px;
text-decoration:none;
}

/* sub list */

.sub_map{
list-style:none;
padding:0;
margin:0;
}

/* second level */

.sub_map > li{
margin-bottom:6px;
}

.sub_map > li > a{
font-size:14px;
color:#4a5b70;
text-decoration:none;
display:block;
padding:4px 0;
transition:0.2s;
}

.sub_map > li > a:hover{
color:#1f4a7c;
padding-left:4px;
}

/* third level */

.sub_map .sub_map{
margin-top:5px;
padding-left:12px;
border-left:2px solid #e6ecf2;
}

.sub_map .sub_map li a{
font-size:13px;
color:#7a8899;
}

/* responsive */

@media (max-width:992px){

.sitemap{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.sitemap{
grid-template-columns:1fr;
}

}

.pdf-wrapper{
    max-width:1100px;
    margin:auto;
}

.pdf-wrapper iframe{
    width:100%;
    height:90vh;
    border:none;
}


.newsinvideo {
  position: relative;
  width: 100%;
  max-width: 800px; /* istəyə görə dəyişə bilərsən */
  margin: auto;
}

.newsinvideo::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.newsinvideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}