/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    
    
}

/* Header Styles */
.header {  
    position: relative;
    z-index: 3;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto; /* resim oranı korunarak tam gösterilir */
  z-index: -1; /* içerik görselin üstünde kalır */
  max-height: 120px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 1920px;
    margin: 0 auto;
    border-bottom: 1px solid #C2C2C2;

}

/* Logo Styles */
.logo {
    display: block;
}

.logo img {
    width: 270px;
    height: auto;
}

/* Navigation Styles */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    color: #005286;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    text-transform: lowercase;
}

.nav-item:not(.home-item):hover {
    color: #45B7B1;
    transform: translateX(5px);
}

/* Home Item Styles */
.home-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.home-item img {
    width: 20px;
    height: 20px;
    filter: invert(0.2) sepia(1) saturate(5) hue-rotate(180deg) brightness(0.8);
}

.home-line {
    display: none;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
    border-left: 1px solid #C2C2C2;
    padding-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.lang-btn img {
    width: 20px;
    height: 20px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: -22px;
    background: white;
    border: 1px solid #C2C2C2;
    border-radius: 5px;
    padding: 10px;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 3;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    padding: 5px 15px;
    cursor: pointer;
    font-weight: 600;
    color: #005286;
    text-decoration: none!important;
}

.lang-option:hover {
    color: #45B7B1;
}

.lang-option.active {
    color: #45B7B1;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-left: 1px solid #C2C2C2;
    padding-left: 20px;
}

.menu-btn img {
    width: 24px;
    height: 24px;
}

/* Hamburger Menu Styles */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: #005286;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    transition: left 0.3s ease;
    padding: 100px 20px 20px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #005286;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    color: #45B7B1;
    padding-left: 10px;
}

.mobile-nav-item img {
    width: 24px;
    height: 24px;
    filter: invert(0.2) sepia(1) saturate(5) hue-rotate(180deg) brightness(0.8);
}

.mobile-language-selector {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.mobile-lang-option {
    padding: 15px 30px;
    background: #f8f9fa;
    border-radius: 25px;
    color: #005286;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-lang-option.active {
    background: #45B7B1;
    color: white;
}

.mobile-lang-option:hover:not(.active) {
    background: #e9ecef;
}

/* Responsive Visibility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Side Panel Styles */
.side-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #F5F5F5;
    backdrop-filter: blur(10px);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 40px 40px;
}

.side-panel.active {
    right: 0;
}

.contact-info h3 {
    color: #00A7CD;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-info p {
    color: #394244;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info .phone {
    color: #45B7B1;
    font-size: 25px;
    font-weight: 600;
    margin: 20px 0;
}

.contact-info .email {
    color: #005286;
    font-size: 25px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-direction: column;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.social-links a img {
    filter: grayscale(1);
}

.social-links a:hover img{
    filter: grayscale(0);

}

/* Slider Section */
.slider-section {
    height: 822px;
    position: relative;
    overflow: hidden;
    padding: 0 60px;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 30px;
    z-index: 2;
}

.slider-container {
    display: flex;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

/* Left Panel */
.slider-left-panel {
    width: 435px;
    background-color: rgb(0, 82, 134, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.slider-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-title {
    margin-bottom: 60px;
}

.title-line {
    display: block;
    font-size: 45px;
    font-weight: 700;
    color: #394244;
    background: white;
    padding: 10px 20px;
    margin-bottom: 10px;
    display: inline-block;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

.slider-controls {
    display: flex;
    gap: 20px;
}

.slider-arrow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow img {
    width: 13px;
    height: 13px;
    filter: brightness(0) invert(1);
}

.slider-arrow:hover {
    background-color: #45B7B1;
    border-color: #45B7B1;
}

.prev-arrow:hover {
    transform: rotate(-45deg);
}

.next-arrow:hover {
    transform: rotate(-45deg);
}

/* Social Follow */
.social-follow {
    margin-top: auto;
}

.follow-text {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45B7B1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: white;
}

/* Right Panel */
.slider-right-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-image.active {
    opacity: 1;
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
    font-weight: 600;
    z-index: 3;
}

.pagination-number {
    font-size: 18px;
    opacity: 0.7;
}

.pagination-number.current {
    opacity: 1;
}

.pagination-line {
    width: 2px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.pagination-progress {
    width: 100%;
    background: white;
    height: 33.33%;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
}

/* Contact Button */
.contact-button {
    position: absolute;
    bottom: 80px;
    right: -5px;
    background: #45B7B1;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    overflow: hidden;
}

.contact-button:hover {
    padding-right: 40px;
}

.contact-icon img {
    width: 64px;
    height: 64px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.contact-label {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 5px;
}

.contact-phone {
    font-size: 25px;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .header-container {
        padding: 20px 40px;
    }
    
    .slider-section {
        padding: 0 40px;
    }
    
    .contact-button {
        bottom: 40px;
        right: 40px;
    }
    
    .slider-left-panel {
        width: 380px;
        padding: 60px 30px;
    }
    
    .title-line {
        font-size: 38px;
    }
}

@media screen and (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-item {
        font-size: 14px;
    }
    
    .slider-section {
        padding: 0 20px;
    }
    
    .slider-container {
        flex-direction: column-reverse;
    }
    
    .slider-left-panel {
        width: 100%;
        height: 400px;
        padding: 40px 30px;
    }
    
    .slider-right-panel {
        height: 422px;
    }
    
    .slider-pagination {
        right: 20px;
    }
    
    .title-line {
        font-size: 32px;
        padding: 8px 15px;
    }
    
    .slider-controls {
        margin-top: 30px;
    }
    
    .slider-arrow {
        width: 60px;
        height: 60px;
    }
    
    .contact-button {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .contact-icon img {
        width: 48px;
        height: 48px;
    }
    
    .contact-phone {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .logo img {
        width: 200px;
    }
    
    .nav-links {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: flex;
    }
    
    .nav-controls {
        gap: 15px;
    }
    
    .side-panel {
        width: 100%;
        right: -100%;
    }
    
    .slider-section {
        padding: 0 15px;
    }
    
    .slider-left-panel {
        height: 350px;
        padding: 30px 20px;
    }
    
    .slider-right-panel {
        height: 472px;
    }
    
    .slider-pagination {
        right: 15px;
    }
    
    .title-line {
        font-size: 28px;
        padding: 6px 12px;
    }
    
    .social-follow {
        display: none;
    }
    
    .contact-button {
        position: absolute;
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50px;
    }
    
    .contact-text {
        display: none;
    }
    
    .contact-button:hover .contact-text {
        display: flex;
        animation: slideIn 0.3s ease;
    }
    
    .pagination-line {
        height: 60px;
    }
}

@media screen and (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo img {
        width: 180px;
    }
    
    .slider-section {
        padding: 0 10px;
    }
    
    .slider-left-panel {
        height: 300px;
        padding: 20px 15px;
    }
    
    .slider-right-panel {
        height: 522px;
    }
    
    .slider-pagination {
        right: 10px;
    }
    
    .title-line {
        font-size: 24px;
        padding: 5px 10px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .slider-controls {
        gap: 15px;
        margin-top: 20px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Overlay for side panel */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}
.side-panel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-info {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.side-panel-logo {
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 20px;
    width: 180px;
}
.contact-info p {
    text-align: center;
}

/* Product Categories Section */
.product-categories {
    padding: 100px 0;
    background: white;
}

.container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: #45B7B1;
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #8C8B8B;
    line-height: 1.2;
    margin: 0;
}

.section-title .highlight {
    color: #00A7CD;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-text {
    color: #8C8B8B;
    font-size: 15px;
    font-weight: 700;
}

.view-all-arrow {
    width: 80px;
    height: 80px;
    border: 2px solid #8C8B8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45B7B1;
    transition: all 0.3s ease;
}

.view-all-arrow svg {
    width: 13px;
    height: 13px;
    transition: all 0.3s ease;
}

.view-all-btn:hover .view-all-arrow {
    background-color: #45B7B1;
    border-color: #45B7B1;
    color: white;
    transform: rotate(-45deg);
}
.view-all-btn:hover img {
   filter: brightness(0) invert(1);

}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-item {
    width: 460px;
    height: 540px;
    background-color: #EAEFEF;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.category-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 140px;
    font-weight: 700;
    color: #E0E4E4;
    line-height: 1;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-title {
    position: absolute;
    top: 50px;
    right: 30px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-align: right;
    z-index: 3;
    transition: all 0.3s ease;
}

.category-icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-icon img {
    width: auto;
    height: 80px;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005286;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 4;
    border: 1px solid black;
}

.category-arrow img {
    width: 18px;
    transition: transform 0.3s ease;
}

/* Hover Effects */


.category-item:hover .category-arrow svg {
    transform: rotate(-90deg);
}

.category-item .category-arrow:hover img {
    transform: rotate(-90deg);
}

/* Responsive Design for Categories */
@media screen and (max-width: 1500px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .category-item {
        width: 100%;
        max-width: 400px;
        height: 480px;
    }
    
    .category-number {
        font-size: 120px;
    }
    
    .category-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .product-categories {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 35px;
    }
    
    .category-item {
        height: 420px;
    }
    
    .category-number {
        font-size: 100px;
    }
}

@media screen and (max-width: 992px) {
    .section-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-item {
        height: 380px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .product-categories {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-item {
        width: 100%;
        height: 350px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .category-number {
        font-size: 80px;
        top: 20px;
        right: 20px;
    }
    
    .category-title {
        font-size: 16px;
        top: 35px;
        right: 20px;
    }
    
    .category-icon {
        bottom: 20px;
        left: 20px;
    }
    
    .category-icon img {
        height: 60px;
    }
    
    .view-all-arrow {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .category-item {
        height: 300px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .category-number {
        font-size: 60px;
        top: 15px;
        right: 15px;
    }
    
    .category-title {
        font-size: 14px;
        top: 25px;
        right: 15px;
    }
    
    .category-icon {
        bottom: 15px;
        left: 15px;
    }
    
    .category-icon img {
        height: 50px;
    }
    
    .category-arrow {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Overlay for side panel */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* About Section Styles */
.about-section {
    padding: 100px 0 0;
    background: white;
    position: relative;
    height: 1080px;
}

.about-header {
    margin-bottom: 60px;
}

.about-subtitle {
    color: #45B7B1;
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    text-align: right;
}

.about-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    color: #8C8B8B;
    line-height: 1.2;
    margin: 0;
    text-align: right;
}

.about-title .about-highlight {
    color: #45B7B1;
}

.about-more-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-more-text {
    color: #8C8B8B;
    font-size: 15px;
    font-weight: 700;
}

.about-more-arrow {
    width: 80px;
    height: 80px;
    border: 2px solid #8C8B8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45B7B1;
    transition: all 0.3s ease;
}

.about-more-arrow svg {
    width: 13px;
    height: 13px;
    transition: all 0.3s ease;
}

.about-more-btn:hover .about-more-arrow {
    background-color: #45B7B1;
    border-color: #45B7B1;
    color: white;
    transform: rotate(-45deg);
}

.about-more-btn:hover img {
    filter: brightness(0) invert(1);

}

.about-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.about-image-container {
    position: absolute;
    flex: 0 0 1200px;
}

.factory-image {
    width: 1200px;
    height: auto;
    object-fit: cover;
    display: block;
}

.info-cards {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.info-card {
    background: rgba(0, 82, 134, 0.8);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    min-width: 300px;
}

.info-icon {
    flex-shrink: 0;
}

.info-icon img {
    width: 53px;
    height: auto;
}

.info-text h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.about-stats {
    flex: 1;
    padding: 60px 60px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.stats-year {
    font-size: 216px;
    font-weight: 700;
    color: #394244;
    line-height: 0.8;
    position: relative;
    z-index: 2;
}

.stats-since {
    font-size: 25px;
    font-weight: 700;
    color: #8C8B8B;
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: right;
}

.about-description {
    text-align: right;
    max-width: 300px;
}

.description-title {
    font-size: 17px;
    font-weight: 700;
    color: #2FB5BE;
    margin-bottom: 20px;
    line-height: 1.4;
}

.description-text {
    font-size: 15px;
    font-weight: 400;
    color: #3E3E3E;
    line-height: 1.6;
    margin: 0;
}

/* About Section Responsive */
@media screen and (max-width: 1400px) {
    .about-image-container {
        flex: 0 0 1000px;
    }
    
    .factory-image {
        width: 1000px;
    }
    
    .stats-year {
        font-size: 180px;
    }
    
    .about-stats {
        padding: 40px 40px 0 0;
    }
    
    .info-card {
        min-width: 280px;
        padding: 20px 25px;
    }
}

@media screen and (max-width: 1200px) {
    .about-title-row {
        flex-direction: column;
        align-items: flex-end;
        gap: 30px;
    }
    
    .about-title {
        font-size: 35px;
    }
    
    .about-image-container {
        position: relative;
        padding-bottom: 30px;
        flex: 0 0 800px;
    }
    
    .factory-image {
        width: 800px;
    }
    
    .stats-year {
        font-size: 150px;
    }
    
    .about-stats {
        padding: 30px 30px 0 0;
    }
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image-container {
        flex: none;
        align-self: flex-start;
    }
    
    .factory-image {
        width: 100%;
        max-width: 800px;
    }
    
    .about-stats {
        padding: 0 60px;
        align-items: center;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
        max-width: 600px;
    }
    
    .info-cards {
        position: static;
        flex-direction: row;
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .info-card {
        min-width: 250px;
        flex: 1;
    }
    
    .stats-year {
        font-size: 120px;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        height: 1200px;
        padding: 60px 0 0;
    }
    
    .about-title {
        font-size: 26px;
        text-align: left;
    }
    
    .about-subtitle {
        text-align: left;
    }
    
    .about-title-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .factory-image {
        height: 300px;
    }
    
    .info-cards {
        flex-direction: column;
    }
    
    .info-card {
        min-width: auto;
        width: 100%;
    }
    
    .about-stats {
        padding: 0 20px;
        align-items: flex-start;
        text-align: left;
    }
    
    .about-description {
        text-align: left;
    }
    
    .stats-year {
        font-size: 80px;
    }
    
    .stats-since {
        font-size: 20px;
        text-align: left;
    }
    
    .about-more-arrow {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 480px) {
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .factory-image {
        height: 250px;
    }
    
    .info-card {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .info-icon img {
        width: 40px;
    }
    
    .info-text h4 {
        font-size: 14px;
    }
    
    .stats-year {
        font-size: 60px;
    }
    
    .stats-since {
        font-size: 16px;
    }
    
    .description-title {
        font-size: 15px;
    }
    
    .description-text {
        font-size: 14px;
    }
}

/* Latest Products Section */
.latest-products {
    padding: 100px 0;
    background: white;
}

.latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.latest-title {
    font-size: 40px;
    font-weight: 700;
    color: #8C8B8B;
    margin: 0;
}

.latest-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.latest-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #8C8B8B;
    font-size: 15px;
    font-weight: 700;
}

.page-current {
    color: #45B7B1;
}

.page-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #45B7B1 50%, #E0E0E0 50%);
}

.latest-arrows {
    display: flex;
    gap: 15px;
}

.latest-arrow {
    width: 80px;
    height: 80px;
    border: 2px solid #8C8B8B;
    border-radius: 50%;
    background: transparent;
    color: #45B7B1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.latest-arrow img {
    
    transition: transform 0.3s ease;
}

.latest-arrow:hover {
    background-color: #45B7B1;
    border-color: #45B7B1;
    color: white;
}

.latest-arrow:hover img {
    transform: rotate(-45deg);
}
.latest-arrow:hover img{
    filter: brightness(0) invert(1);

}
.products-slider {
    position: relative;
}

.products-track {
    position: relative;
    width: 100%;
}

.products-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(50px);
}

.products-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image {
    width: 330px;
    height: 330px;
    background-color: #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 113, 171, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-btn {
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    color: #0071AB;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-btn img {
    width: 25px;
    transition: transform 0.3s ease;
}

.product-info {
    text-align: left;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    color: #707070;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.product-category {
    font-size: 12px;
    font-weight: 400;
    color: #707070;
    background-color: #EBEBEB;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
}

/* Hover Effects */
.product-item:hover .product-overlay {
    opacity: 1;
}

.product-item:hover .product-btn img {
    transform: rotate(-45deg);
}

.product-item:hover .product-name {
    color: #0071AB;
    transform: translateX(5px);
}

/* Responsive Design for Latest Products */
@media screen and (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .product-image {
        width: 280px;
        height: 280px;
    }
}

@media screen and (max-width: 1200px) {
    .latest-title {
        font-size: 35px;
    }
    
    .product-image {
        width: 250px;
        height: 250px;
    }
    
    .latest-arrow {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 992px) {
    .latest-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .product-image {
        width: 100%;
        height: 250px;
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .latest-products {
        padding: 60px 0;
    }
    
    .latest-title {
        font-size: 26px;
    }
    .latest-pagination {
        display: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .latest-controls {
        gap: 20px;
    }
    
    .latest-arrows {
        gap: 10px;
    }
    
    .latest-arrow {
        width: 50px;
        height: 50px;
    }
    
    .page-divider {
        width: 40px;
    }
}

@media screen and (max-width: 480px) {
    .latest-header {
        margin-bottom: 40px;
    }
    
    .latest-title {
        font-size: 22px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        width: 100%;
        height: 250px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-category {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .latest-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Responsive Design for Latest Products */
@media screen and (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .product-image {
        width: 280px;
        height: 280px;
    }
}

@media screen and (max-width: 1200px) {
    .latest-title {
        font-size: 35px;
    }
    
    .product-image {
        width: 250px;
        height: 250px;
    }
    
    .latest-arrow {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 992px) {
    .latest-header {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .product-image {
        width: 100%;
        height: 250px;
        max-width: 300px;
    }
}

/* Responsive Design for Latest Products */
/* Responsive Design for Latest Products */
@media screen and (max-width: 768px) {
    .latest-products {
        padding: 60px 0;
    }
    
    .latest-title {
        font-size: 26px;
    }
    
    /* Mobilde tek ürün göster */
    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }
    
    .product-item {
        width: 100%;
        max-width: 300px;
    }
    
    .product-image {
        width: 100%;
        height: 300px;
        max-width: 300px;
    }
    
    .latest-controls {
        gap: 20px;
    }
    
    .latest-arrows {
        gap: 10px;
    }
    
    .latest-arrow {
        width: 50px;
        height: 50px;
    }
    
    .page-divider {
        width: 40px;
    }
}

@media screen and (max-width: 480px) {
    .latest-header {
        margin-bottom: 40px;
    }
    
    .latest-title {
        font-size: 22px;
    }
    
    .product-item {
        max-width: 280px;
    }
    
    .product-image {
        height: 280px;
        max-width: 280px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-category {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .latest-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Discover Section */
.discover-section {
    background-color: #DBE5EA;
    height: 440px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    z-index: 1;
}

.discover-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    height: 100%;
    gap: 60px;
}

.discover-text {
    flex: 0 0 auto;
    z-index: 2;
    position: relative;
}

.discover-title {
    font-size: 60px;
    font-weight: 600;
    color: rgba(198, 207, 212, 0.5);
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

.discover-button {
    position: relative;
 
    z-index: 3;
}

.discover-btn {
    width: 140px;
    height: 140px;
    border: 2px solid #707070;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.discover-btn img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: #005286;
    border-color: #005286;
    transform: rotate(-45deg);
}

.discover-btn:hover img {
    filter: brightness(0) invert(1);
}

.discover-logo {
    flex: 0 0 auto;
    position: relative;
    margin-left: auto;
}

.logo-image {
    width: 400px;
    height: auto;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    filter: drop-shadow(-12px 12px 20px rgba(19, 194, 190, 0.4)) 
            drop-shadow(-6px 6px 12px rgba(24, 157, 211, 0.3))
}

.logo-image:hover {
    filter: drop-shadow(12px -12px 20px rgba(19, 194, 190, 0.4)) 
drop-shadow(6px -6px 12px rgba(24, 157, 211, 0.3))
}

/* Logo positioning to extend beyond section */
.discover-logo {
    position: relative;
    top: -30px;
    margin-bottom: -60px;
}

/* Responsive Design for Discover Section */
@media screen and (max-width: 1400px) {
    .discover-title {
        font-size: 50px;
    }
    
    .logo-image {
        width: 350px;
    }
    
    .discover-btn {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 1200px) {
    .discover-section {
        height: 380px;
    }
    
    .discover-title {
        font-size: 45px;
    }
    
    .logo-image {
        width: 300px;
    }
    
    .discover-btn {
        width: 100px;
        height: 100px;
    }
    
    .discover-btn img {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 992px) {
    .discover-section {
        height: auto;
        padding-top: 60px;
    }
    
    .discover-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 50px;
    }
    
    .discover-button {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .discover-logo {
        margin-left: 0;
        top: -20px;
        margin-bottom: -40px;
    }
    
    .discover-title {
        font-size: 40px;
        text-align: center;
    }
    
    .logo-image {
        width: 250px;
    }
}

@media screen and (max-width: 768px) {
    
    .discover-title {
        font-size: 32px;
    }
    
    .logo-image {
        width: 200px;
    }
    
    .discover-btn {
        width: 80px;
        height: 80px;
    }
    
    .discover-btn img {
        width: 14px;
        height: 14px;
    }
    
   
    
    .discover-logo {
        top: -15px;
        margin-bottom: -30px;
    }
}

@media screen and (max-width: 480px) {
   
    
    .discover-title {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .logo-image {
        width: 160px;
    }
    
    .discover-btn {
        width: 70px;
        height: 70px;
    }
    
    .discover-btn img {
        width: 12px;
        height: 12px;
    }
    
   
    .discover-logo {
        top: -10px;
        margin-bottom: -20px;
    }
}

/* Footer Styles */
.footer {
    background-image: url('../img/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0 40px;
    z-index: 0;
}

.footer-background {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Footer Logo */
.footer-logo {
    align-self: flex-start;
}

.footer-logo img {
    width: 270px;
    height: auto;
}

/* Main Footer Content */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: flex-end;
}

.footer-left {
    display: flex;
    gap: 150px;
    max-width: 850px;
}

.footer-title {
    font-size: 35px;
    font-weight: 600;
    color: #8C8B8B;
    margin-bottom: 30px;
    margin-top: 0;
    text-transform: uppercase;
}

/* Menu Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #8C8B8B;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #535353;
    transform: translateX(-5px);
}

/* Contact Info */
.contact-info2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-address,
.contact-fax {
    color: #8C8B8B;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Right Contact */
.footer-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.contact-phone2,
.contact-email {
    color: #8C8B8B;
    text-decoration: none;
    font-size: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: right;
}

.contact-phone2:hover,
.contact-email:hover {
    color: #535353;
    transform: translateX(-5px);
}

.social-links2 {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: row;

}

.social-link {
    color: #8C8B8B;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-link:hover {
    color: #535353;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #8C8B8B;
    padding-top: 30px;
    margin-top: 40px;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright-text {
    color: #121C22;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.privacy-link {
    color: #121C22;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.fides-logo {
    width: 78px;
    height: auto;
}

.credits-text {
    color: #121C22;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    text-align: right;
}

/* Responsive Design for Footer */
@media screen and (max-width: 1400px) {
    .footer-left {
        gap: 100px;
        max-width: 750px;
    }
    
    .footer-logo img {
        width: 240px;
    }
    
    .footer-title {
        font-size: 30px;
    }
    
    .contact-phone2,
    .contact-email {
        font-size: 22px;
    }
}

@media screen and (max-width: 1200px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        gap: 50px;
    }
    
    .footer-left {
        gap: 80px;
        max-width: 650px;
    }
    
    .footer-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .contact-phone2,
    .contact-email {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-left {
        gap: 60px;
        max-width: 100%;
    }
    
    .footer-right {
        align-self: center;
    }
    
    .footer-logo img {
        width: 200px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    .footer-copyright {
        text-align: center;
    }
    
    .footer-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .contact-address,
    .contact-fax {
        font-size: 14px;
    }
    
    .contact-phone2,
    .contact-email {
        font-size: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding-top: 25px;
        margin-top: 30px;
    }
    
    .footer-credits {
        align-items: center;
        text-align: center;
    }
    
    .credits-text {
        text-align: left;
    }
    .footer-logo {
        margin: 0 auto;
        padding-top: 20px;
    }
    .fides-logo {
        width: 65px;
    }
    
    .social-links2 {
        gap: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        width: 180px;
    }
    
    .footer-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .contact-address,
    .contact-fax {
        font-size: 13px;
    }
    
    .contact-phone2,
    .contact-email {
        font-size: 16px;
    }
    
    .copyright-text,
    .privacy-link,
    .credits-text {
        font-size: 12px;
    }
    
    .fides-logo {
        width: 60px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .contact-details {
        gap: 15px;
        align-items: center;
    }
    
    .social-links2 {
        gap: 10px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
}

/* Page Banner Styles */
.page-banner {
  position: relative;
  display: flex;
  flex-direction: column;
 background-image: linear-gradient(to bottom, transparent 50%, #005286 50%);

}


/* Header Space */
.banner-header-space {
    height: 100px;
    background: transparent;
}

/* Banner Image Container */
.banner-image-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}

.banner-image {
    width: 100%;
    height: 463px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 45px;
    font-weight: 700;
    margin: 0;
    z-index: 2;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Banner Bottom */
.banner-bottom {
    background-color: #005286;
    padding: 30px 0;
    border-bottom: 1px solid #00A7CD;
}

.banner-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #45B7B1;
    padding-bottom: 20px;
}

.page-title h2 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.page-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.prev-page-text {
    color: #45B7B1;
    font-size: 15px;
    font-weight: 700;
}

.back-btn {
    width: 80px;
    height: 80px;
    border: 1px solid white;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: rotate(180deg);
}

.back-btn img {
    width: 13px;
    height: 13px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: #45B7B1;
    border-color: #45B7B1;
    transform: rotate(0deg);
}

.back-btn:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive Design for Page Banner */
@media screen and (max-width: 1400px) {
    .banner-image-container {
        padding: 0 40px;
    }
    
    .banner-image {
        height: 400px;
    }
    
    .banner-title {
        font-size: 40px;
    }
    
    .page-title h2 {
        font-size: 28px;
    }
    
    .back-btn {
        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 1200px) {
    .banner-header-space {
        height: 80px;
    }
    
    .banner-image {
        height: 350px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .page-title h2 {
        font-size: 26px;
    }
    
    .banner-bottom {
        padding: 25px 0;
    }
}

@media screen and (max-width: 992px) {
    .banner-image-container {
        padding: 0 20px;
    }
    
    .banner-image {
        height: 300px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-navigation {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .page-title h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .back-btn {
        width: 60px;
        height: 60px;
    }
    
    .back-btn img {
        width: 11px;
        height: 11px;
    }
}

@media screen and (max-width: 768px) {
    .banner-header-space {
        height: 70px;
    }
    
    .banner-image-container {
        padding: 0 15px;
    }
    
    .banner-image {
        height: 250px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .page-title h2 {
        font-size: 22px;
    }
    
    .banner-bottom {
        padding: 20px 0;
    }
    
    .page-controls {
        gap: 15px;
    }
    
    .prev-page-text {
        font-size: 14px;
    }
    
    .back-btn {
        width: 50px;
        height: 50px;
    }
    
    .back-btn img {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 480px) {
    .banner-header-space {
        height: 60px;
    }
    
    .banner-image-container {
        padding: 0 10px;
    }
    
    .banner-image {
        height: 200px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .page-title h2 {
        font-size: 20px;
    }
    
    .banner-bottom {
        padding: 15px 0;
    }
    
    .banner-navigation {
        gap: 15px;
    }
    
    .page-controls {
        gap: 12px;
    }
    
    .prev-page-text {
        font-size: 13px;
    }
    
    .back-btn {
        width: 45px;
        height: 45px;
    }
    
    .back-btn img {
        width: 9px;
        height: 9px;
    }
}

/* Corporate Content Section */
.corporate-content {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Sidebar */
.content-sidebar {
    flex: 0 0 330px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    display: block;
    padding: 20px 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #D2D2D2;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-link:hover {
    background-color: #D2D2D2;
    transform: translateX(10px);
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

.sidebar-link.active {
    background-color: #D2D2D2;
    transform: translateX(10px);
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
}



/* Right Content */
.content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-image {
    width: 100%;
}

.factory-image2 {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card-about {
    position: relative;
}
.content-title {
    font-size: 40px;
    font-weight: 600;
    color: #005286;
    line-height: 1.3;
    margin: 0;
}

.title-highlight {
    color: #8C8B8B;
}

.content-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: #2FB5BE;
    line-height: 1.4;
    margin: 0;
}

.content-description {
    font-size: 15px;
    font-weight: 400;
    color: #3E3E3E;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Corporate Content */
@media screen and (max-width: 1400px) {
    .content-wrapper {
        gap: 50px;
    }
    
    .content-sidebar {
        flex: 0 0 300px;
    }
    
    .content-title {
        font-size: 36px;
    }
    
    .factory-image2 {
        max-height: 450px;
    }
}

@media screen and (max-width: 1200px) {
    .corporate-content {
        padding: 60px 0;
    }
    
    .content-wrapper {
        gap: 40px;
    }
    
    .content-sidebar {
        flex: 0 0 280px;
    }
    
    .content-title {
        font-size: 32px;
    }
    
    .content-subtitle {
        font-size: 16px;
    }
    
    .factory-image2 {
        max-height: 400px;
    }
}

@media screen and (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .content-sidebar {
        flex: none;
        width: 100%;
    }
    
    .sidebar-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .sidebar-link {
        padding: 15px 20px;
        border-bottom: 1px solid #D2D2D2;
        border-right: 1px solid #D2D2D2;
        text-align: center;
    }
    
    .sidebar-link:nth-child(even) {
        border-right: none;
    }
    
    .sidebar-link:hover {
        transform: translateY(-2px);
        padding-left: 20px;
        margin-left: 0;
        margin-right: 0;
        margin-top: -2px;
        margin-bottom: -2px;
    }
    
    .sidebar-link.active {
        transform: translateY(-2px);
        padding-left: 20px;
        margin-left: 0;
        margin-right: 0;
        margin-top: -2px;
        margin-bottom: -2px;
    }
    
    .content-main {
        gap: 30px;
    }
    
    .content-title {
        font-size: 28px;
    }
    
    .factory-image2 {
        max-height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .corporate-content {
        padding: 50px 0;
    }
    
    .sidebar-nav {
        grid-template-columns: 1fr;
    }
    
    .sidebar-link {
        border-right: none;
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .content-subtitle {
        font-size: 15px;
    }
    
    .content-description {
        font-size: 14px;
    }
    
    .content-text {
        gap: 20px;
    }
    
    .factory-image2 {
        max-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .corporate-content {
        padding: 40px 0;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .sidebar-link {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .content-subtitle {
        font-size: 14px;
    }
    
    .content-description {
        font-size: 13px;
    }
    
    .content-main {
        gap: 25px;
    }
    
    .factory-image2 {
        max-height: 250px;
        border-radius: 6px;
    }
}

/* Gallery Content Section */
.gallery-content {
    padding: 80px 0;
    background: white;
}

/* Gallery Grid */
.gallery-main {
    flex: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.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: all 0.3s ease;
}

.gallery-arrows {
    position: relative;
    width: 60px;
    height: 60px;
}

.arrow-diagonal {
    position: absolute;
    transition: all 0.5s ease;
}

.arrow-tl {
    top: 0;
    left: 0;
    transform: translate(0, 0);
}

.arrow-br {
    bottom: 0;
    right: 0;
    transform: translate(0, 0);
}

/* Hover Effects */
.gallery-item:hover .gallery-image {
    filter: blur(2px);
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .arrow-tl {
    transform: translate(-15px, -15px);
}

.gallery-item:hover .arrow-br {
    transform: translate(15px, 15px);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #45B7B1;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 80px;
    height: 80px;
}

.lightbox-nav:hover {
    background: rgba(69, 183, 177, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -100px;
}

.lightbox-next {
    right: -100px;
}

/* Responsive Design for Gallery */
@media screen and (max-width: 1200px) {
    .gallery-grid {
        gap: 15px;
    }
    
    .lightbox-nav {
        font-size: 25px;
        padding: 15px 12px;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
}

@media screen and (max-width: 992px) {
    .gallery-content {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-arrows {
        width: 50px;
        height: 50px;
    }
    
    .arrow-diagonal {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-prev {
        left: -50px;
    }
    
    .lightbox-next {
        right: -50px;
    }
}

@media screen and (max-width: 768px) {
    .gallery-content {
        padding: 50px 0;
    }
    
    .gallery-grid {
        gap: 12px;
    }
    
    .gallery-arrows {
        width: 40px;
        height: 40px;
    }
    
    .arrow-diagonal {
        width: 16px;
        height: 16px;
    }
    
    .gallery-item:hover .arrow-tl {
        transform: translate(-10px, -10px);
    }
    
    .gallery-item:hover .arrow-br {
        transform: translate(10px, 10px);
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 30px;
    }
    
    .lightbox-nav {
        font-size: 20px;
        padding: 12px 10px;
    }
    
    .lightbox-prev {
        left: -40px;
    }
    
    .lightbox-next {
        right: -40px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-content {
        padding: 40px 0;
    }
    
    .gallery-grid {
        gap: 10px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .gallery-arrows {
        width: 35px;
        height: 35px;
    }
    
    .arrow-diagonal {
        width: 14px;
        height: 14px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-close {
        top: -35px;
        font-size: 25px;
    }
    
    .lightbox-nav {
        font-size: 18px;
        padding: 10px 8px;
        position: fixed;
        top: 20%;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

/* Video Gallery Content Section */
.video-gallery-content {
    padding: 80px 0;
    background: white;
}

/* Video Gallery Grid */
.video-gallery-main {
    flex: 1;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #005286;
    padding: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.play-button-container {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.play-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.play-text {
    color: white;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.video-title {
    color: #005286;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-align: left;
    transition: all 0.3s ease;
}

/* Hover Effects */
.video-item:hover .video-play-overlay {
    width: auto;
    padding-right: 15px;
    min-width: 120px;
}

.video-item:hover .play-text {
    opacity: 1;
    transform: translateX(0);
}

.video-item:hover .video-title {
    transform: translateX(10px);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player {
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    color: #45B7B1;
    transform: scale(1.1);
}

/* Responsive Design for Video Gallery */
@media screen and (max-width: 1400px) {
    .video-gallery-grid {
        gap: 25px;
    }
    
    .video-modal-content {
        width: 1000px;
    }
}

@media screen and (max-width: 1200px) {
    .video-gallery-content {
        padding: 60px 0;
    }
    
    .video-gallery-grid {
        gap: 20px;
    }
    
    .video-modal-content {
        width: 900px;
    }
    
    .play-text {
        font-size: 14px;
    }
    
    .video-item:hover .video-play-overlay {
        min-width: 100px;
    }
}

@media screen and (max-width: 992px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .video-modal-content {
        width: 95vw;
    }
    
    .video-play-overlay {
        padding: 10px;
        width: 44px;
        height: 44px;
    }
    
    .play-icon {
        width: 20px;
        height: 20px;
    }
    
    .video-item:hover .video-play-overlay {
        padding-right: 12px;
        min-width: 90px;
    }
}

@media screen and (max-width: 768px) {
    .video-gallery-content {
        padding: 50px 0;
    }
    
    .video-gallery-grid {
        gap: 15px;
    }
    
    .video-title {
        font-size: 14px;
    }
    
    .play-text {
        font-size: 13px;
    }
    
    .video-modal-close {
        top: -40px;
        font-size: 30px;
    }
    
    .video-play-overlay {
        padding: 8px;
        width: 40px;
        height: 40px;
    }
    
    .play-icon {
        width: 18px;
        height: 18px;
    }
    
    .video-item:hover .video-play-overlay {
        padding-right: 10px;
        min-width: 80px;
    }
}

@media screen and (max-width: 480px) {
    .video-gallery-content {
        padding: 40px 0;
    }
    
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-thumbnail {
        margin-bottom: 12px;
    }
    
    .video-title {
        font-size: 13px;
    }
    
    .play-text {
        font-size: 12px;
    }
    
    .video-modal-content {
        max-width: 95vw;
        max-height: 70vh;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 25px;
    }
    
    .video-play-overlay {
        padding: 6px;
        width: 36px;
        height: 36px;
    }
    
    .play-icon {
        width: 16px;
        height: 16px;
    }
    
    .video-item:hover .video-play-overlay {
        padding-right: 8px;
        min-width: 70px;
    }
    
    .video-item:hover .video-title {
        transform: translateX(5px);
    }
}

/* Downloads Content Section */
.downloads-content {
    padding: 80px 0;
    background: white;
}

/* Downloads Grid */
.downloads-main {
    flex: 1;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    align-items: center;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.download-icon-container {
    flex-shrink: 0;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border: 1px solid #45B7B1;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pdf-icon {
   
    transition: all 0.4s ease;
    z-index: 2;
}

.download-icon {
  
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
    z-index: 3;
}

.download-title {
    color: #707070;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover Effects */
.download-item:hover .icon-wrapper {
    background-color: #45B7B1;
}

.download-item:hover .pdf-icon {
    transform: translateY(30px);
    opacity: 0;
}

.download-item:hover .download-icon {
    top: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0) invert(1);
}

.download-item:hover .download-title {
    color: #45B7B1;
}

/* Active/Downloading State */
.download-item.downloading .icon-wrapper {
    background-color: #45B7B1;
    animation: pulse 1.5s infinite;
}

.download-item.downloading .pdf-icon {
    transform: translateY(30px);
    opacity: 0;
}

.download-item.downloading .download-icon {
    top: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0) invert(1);
    animation: bounce 1s infinite;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(69, 183, 177, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(69, 183, 177, 0); }
    100% { box-shadow: 0 0 0 0 rgba(69, 183, 177, 0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, -50%) translateY(0); }
    40% { transform: translate(-50%, -50%) translateY(-3px); }
    60% { transform: translate(-50%, -50%) translateY(-2px); }
}

/* Responsive Design for Downloads */
@media screen and (max-width: 1400px) {
    .downloads-grid {
        gap: 35px 25px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
  
    
    .download-icon {
        width: 20px;
        height: 20px;
        top: -25px;
    }
}

@media screen and (max-width: 1200px) {
    .downloads-content {
        padding: 60px 0;
    }
    
    .downloads-grid {
        gap: 30px 20px;
    }
    
    .download-item {
        gap: 15px;
    }
    
    .icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
   
    
    .download-icon {
        width: 18px;
        height: 18px;
        top: -22px;
    }
    
    .download-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 992px) {
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
    
    .download-item {
        gap: 12px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
 
    
    .download-icon {
        width: 16px;
        height: 16px;
        top: -20px;
    }
    
    .download-item:hover .pdf-icon {
        transform: translateY(25px);
    }
}

@media screen and (max-width: 768px) {
    .downloads-content {
        padding: 50px 0;
    }
    
    .downloads-grid {
        gap: 20px 12px;
    }
    
    .download-item {
        gap: 10px;
        padding: 8px;
    }
    
    .icon-wrapper {
        width: 55px;
        height: 55px;
    }

    
    .download-icon {
        width: 15px;
        height: 15px;
        top: -18px;
    }
    
    .download-title {
        font-size: 13px;
    }
    
    .download-item:hover .pdf-icon {
        transform: translateY(22px);
    }
}

@media screen and (max-width: 480px) {
    .downloads-content {
        padding: 40px 0;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-item {
        gap: 15px;
        padding: 10px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
   
    
    .download-icon {
        width: 14px;
        height: 14px;
        top: -16px;
    }
    
    .download-title {
        font-size: 14px;
    }
    
    .download-item:hover .pdf-icon {
        transform: translateY(20px);
    }
}

/* Contact Page Content Section */
.contact-page-content {
    padding: 80px 0;
    background: white;
}

.contact-page-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Left Contact Information */
.contact-info-left {
    width: 580px;
    flex-shrink: 0;
}

.company-name-title {
    color: #005286;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.info-block {
    margin-bottom: 30px;
}

.info-label {
    color: #45B7B1;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.info-detail {
    color: #545454;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.social-media-section {
    margin-top: 150px;
}

.social-media-title {
    color: #545454;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.social-media-divider {
    width: 160px;
    height: 2px;
    background-color: #45B7B1;
    margin-bottom: 25px;
}

.social-media-icons {
    display: flex;
    gap: 20px;
}

.social-media-link {
    color: #8C8B8B;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media-link:hover {
    color: #005286;
    transform: translateY(-3px);
}

/* Right Contact Area */
.contact-page-right {
    width: 810px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* Contact Form Area */
.contact-form-area {
    background-color: #E8E8E8;
    padding: 40px;
}

.contact-form-heading {
    color: #545454;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input-row {
    display: flex;
    gap: 20px;
}

.form-field-group {
    flex: 1;
}

.transparent-input,
.transparent-textarea {
    width: 100%;
    padding: 15px;
    border: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: transparent;
    color: #333;
    border-bottom: 1px solid #ccc;
}

.transparent-input::placeholder,
.transparent-textarea::placeholder {
    color: #999;
}

.transparent-input:focus,
.transparent-textarea:focus {
    outline: none;
    border-color: #45B7B1;
    box-shadow: 0 0 5px rgba(69, 183, 177, 0.3);
}

.transparent-textarea {
    resize: vertical;
    min-height: 120px;
}

.transparent-submit-btn {
    background: transparent;
    border-radius: 4px;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    border: none;
    
}

.submit-btn-text {
    color: #005286;
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 900;
    display: inline-block;
    transition: all 0.3s ease;
}



/* Map Area */
.contact-map-area {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-google-map {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Contact Page */
@media screen and (max-width: 1400px) {
    .contact-page-wrapper {
        gap: 40px;
    }
    
    .contact-info-left {
        width: 500px;
    }
    
    .contact-page-right {
        width: 700px;
    }
    
    .company-name-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 1200px) {
    .contact-page-content {
        padding: 60px 0;
    }
    
    .contact-page-wrapper {
        gap: 30px;
    }
    
    .contact-info-left {
        width: 450px;
    }
    
    
    .contact-page-right {
        width: 600px;
    }
    
    .contact-form-area {
        padding: 30px;
    }
    
    .company-name-title {
        font-size: 26px;
    }
    
    .info-label,
    .info-detail {
        font-size: 16px;
    }
    
    .social-media-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .contact-page-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info-left,
    .contact-page-right {
        width: 100%;
    }
    .social-media-section {
        margin-top: 50px;
    }
    
    .form-input-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-media-icons {
        justify-content: center;
    }
    
    .contact-map-area {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .contact-page-content {
        padding: 50px 0;
    }
    
    .contact-form-area {
        padding: 25px;
    }
    
    .company-name-title {
        font-size: 24px;
        text-align: center;
    }
    
    .info-label,
    .info-detail {
        font-size: 15px;
    }
    
    .contact-form-heading {
        font-size: 20px;
    }
    
    .transparent-input,
    .transparent-textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .transparent-submit-btn {
        padding: 12px 30px;
    }
    
    .submit-btn-text {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .social-media-title {
        font-size: 16px;
        text-align: center;
    }
    
    .social-media-divider {
        margin: 0 auto 20px;
    }
    
    .contact-map-area {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .contact-page-content {
        padding: 40px 0;
    }
    
    .contact-form-area {
        padding: 20px;
    }
    
    .company-name-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .info-block {
        margin-bottom: 25px;
    }
    
    .info-label,
    .info-detail {
        font-size: 14px;
    }
    
    .contact-form-heading {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .contact-form-container {
        gap: 15px;
    }
    
    .transparent-input,
    .transparent-textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .transparent-textarea {
        min-height: 100px;
    }
    
    .transparent-submit-btn {
        padding: 10px 25px;
    }
    
    .submit-btn-text {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .social-media-title {
        font-size: 15px;
    }
    
    .social-media-divider {
        width: 120px;
        margin-bottom: 15px;
    }
    
    .social-media-icons {
        gap: 15px;
    }
    
    .social-media-link svg {
        width: 40px;
        height: 40px;
    }
    
    .contact-map-area {
        height: 250px;
    }
}

/* Error States for Transparent Inputs */
.transparent-input.error,
.transparent-textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}


/* Products Page Content Section */
.products-page-content {
    padding: 80px 0;
    background: white;
}

.products-page-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Left Products Sidebar */
.products-sidebar {
    width: 330px;
    flex-shrink: 0;
}

.products-nav {
    display: flex;
    flex-direction: column;
}

.products-nav-item {
    border-bottom: 1px solid #D2D2D2;
    position: relative;
}

.products-nav-item:first-child {
    border-bottom: 1px solid #D2D2D2;
}

.products-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.products-nav-link:hover,
.products-nav-link.active {
    transform: translateX(10px);
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;

}
.products-nav-link.active {
    border-bottom: 1px solid #D2D2D2;

}

.nav-toggle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    transition: all 0.3s ease;
    padding-right: 15px;
}

.products-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
    margin-left: -15px;
    margin-right: -15px;
}

.products-submenu.show {
    max-height: 300px;
}

.products-submenu-link {
    display: block;
    padding: 12px 30px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.products-submenu-link:last-child {
    border-bottom: none;
}

.products-submenu-link:hover,
.products-submenu-link.active {
    transform: translateX(5px);
}

/* Right Products Display Area */
.products-display-area {
    flex: 1;
}

.products-catalog-container {
    width: 100%;
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.catalog-item-card {
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 330px;
}

.catalog-item-thumbnail {
    width: 100%;
    height: 330px;
    background-color: #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.catalog-product-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.catalog-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 113, 171, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.catalog-view-arrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}
.only-product-name {
    font-size: 30px!important;
    margin-bottom: 80px!important;
}
.catalog-item-details {
    text-align: left;
}

.catalog-product-title {
    font-size: 15px;
    font-weight: 700;
    color: #707070;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.catalog-product-tag {
    font-size: 12px;
    font-weight: 400;
    color: #707070;
    background-color: #EBEBEB;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
}

/* Hover Effects */
.catalog-item-card:hover .catalog-item-hover {
    opacity: 1;
}

.catalog-item-card:hover .catalog-view-arrow {
    transform: rotate(-45deg);
}

.catalog-item-card:hover .catalog-product-title {
    color: #0071AB;
    transform: translateX(5px);
}

/* Responsive Design for Products Catalog */
@media screen and (max-width: 1400px) {
    .products-catalog-grid {
        gap: 25px;
    }
    
    .catalog-item-thumbnail {
        height: 280px;
    }
    
    .products-sidebar {
        width: 300px;
    }
}

@media screen and (max-width: 1200px) {
    .products-page-content {
        padding: 60px 0;
    }
    
    .products-page-wrapper {
        gap: 40px;
    }
    
    .products-catalog-grid {
        gap: 20px;
    }
    
    .catalog-item-thumbnail {
        height: 250px;
    }
    
    .products-sidebar {
        width: 280px;
    }
    
    .products-nav-link {
        font-size: 14px;
        padding: 18px 0;
    }
    
    .products-submenu-link {
        font-size: 13px;
        padding: 10px 25px;
    }
}

@media screen and (max-width: 992px) {
    .products-page-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .products-sidebar {
        width: 100%;
    }
    .products-sidebar {
        display: none;
    }
    .products-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        position: relative;
    }
    
    .products-nav-item {
        border-right: 1px solid #D2D2D2;
    }
    
    .products-nav-item:nth-child(even) {
        border-right: none;
    }
    
    .products-nav-link {
        padding: 15px 20px;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }
    
    .products-submenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #D2D2D2;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        margin: 0;
        width: 100%;
    }
    
    .products-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .catalog-item-thumbnail {
        height: 250px;
    }
    .only-product-name {
    font-size: 20px!important;
    margin-bottom: 40px!important;
}
}

@media screen and (max-width: 768px) {
    .products-page-content {
        padding: 50px 0;
    }
    
    .products-nav {
        grid-template-columns: 1fr;
    }
    
    .products-nav-item {
        border-right: none;
    }
    
    .products-nav-link {
        font-size: 14px;
        padding: 12px 15px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .products-submenu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    
    .products-submenu-link {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .products-catalog-grid {
        gap: 15px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .catalog-item-card {
        max-width: 100%;
        width: 100%;
    }
    
    .catalog-item-thumbnail {
        height: auto;
        max-width: 400px;
        margin: 0 auto 20px;
    }
    
    .catalog-product-title {
        font-size: 14px;
    }
    
    .catalog-product-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .catalog-view-arrow {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .products-page-content {
        padding: 40px 0;
    }
    
    .products-page-wrapper {
        gap: 30px;
    }
    
    .products-nav-link {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .products-submenu-link {
        font-size: 11px;
        padding: 6px 15px;
    }
    

    .catalog-product-title {
        font-size: 13px;
    }
    
    .catalog-product-tag {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .catalog-view-arrow {
        width: 18px;
        height: 18px;
    }
}

/* Product Detail Page Styles */

/* Product Detail Top Section */
.product-detail-top {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.product-detail-image {
    flex: 1;
    max-width: 500px;
}

.product-main-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    background-color: #F1F1F1;
    padding: 20px;
}

.product-detail-info {
    flex: 1;
    padding-left: 20px;
}

.product-description-title {
    font-size: 20px;
    font-weight: bold;
    color: #45B7B1;
    margin-bottom: 15px;
    text-align: left;
}

.product-description-text {
    font-size: 15px;
    font-weight: normal;
    color: #3E3E3E;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-documents-title {
    font-size: 20px;
    font-weight: bold;
    color: #00A7CD;
    margin-bottom: 15px;
    text-align: left;
}

.product-documents {
   display: flex;
}

/* Product Tables Section */
.product-tables-section {
    margin-top: 40px;
}

.product-table-container {
    margin-bottom: 40px;
}

.product-table-title {
    font-size: 20px;
    font-weight: bold;
    color: #394244;
    margin-bottom: 20px;
    text-align: left;
}

.product-table-image {
    width: 100%;
}

.table-img {
    width: 100%;
    height: auto;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

/* Responsive Design for Product Detail */
@media screen and (max-width: 1200px) {
    .product-detail-top {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .product-detail-info {
        padding-left: 15px;
    }
}

@media screen and (max-width: 992px) {
    .product-detail-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .product-detail-image {
        max-width: fit-content;
    }
    
    .product-detail-info {
        padding-left: 0;
    }
    
    .product-description-title,
    .product-documents-title,
    .product-table-title {
        font-size: 18px;
    }
    
    .product-description-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .product-detail-top {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .product-description-title,
    .product-documents-title,
    .product-table-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .product-description-text {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .product-table-container {
        margin-bottom: 30px;
    }
    
    .product-tables-section {
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .product-detail-top {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .product-main-img {
        padding: 15px;
        max-height: 100%;
    }
    
    .product-description-title,
    .product-documents-title,
    .product-table-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .product-description-text {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .product-table-container {
        margin-bottom: 25px;
    }
}

/* ===== BASİT VE STABİL TABLO STİLLERİ ===== */

/* Sistem Fontu */
table {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #333 !important;
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Tüm TinyMCE inline stillerini temizle */
table[style] {
    border-collapse: collapse !important;
    width: 100% !important;
}

table * {
    font-family: inherit !important;
}

/* Başlık hücreleri */
table th {
    background: #4a90e2 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-align: center !important;
    padding: 12px 10px !important;
    border: 1px solid #ddd !important;
    vertical-align: middle !important;
}

/* Veri hücreleri */
table td {
    padding: 10px !important;
    border: 1px solid #ddd !important;
    text-align: left !important;
    vertical-align: middle !important;
    background-color: #fff !important;
}

/* Satır hover efekti */
table tbody tr:hover {
    background-color: #f5f8ff !important;
}

table tbody tr:hover td {
    background-color: transparent !important;
}

/* Çift satırlar */
table tbody tr:nth-child(even) {
    background-color: #f9f9f9 !important;
}

table tbody tr:nth-child(even) td {
    background-color: transparent !important;
}

/* İlk sütun özel stil */
table td:first-child {
    font-weight: 600 !important;
    background-color: #f8f9fa !important;
    border-left: 3px solid #4a90e2 !important;
}

/* Sayısal sütunlar için merkez hizalama */
table td:not(:first-child) {
    text-align: center !important;
}

/* Container wrapper */
.table-responsive-wrapper,
.product-table-container {
    overflow-x: auto !important;
    overflow-y: visible !important;
    margin: 20px 0;
    border-radius: 6px;
    background: #fff;
    width: 100% !important;
    max-width: 100% !important;
}

/* Tablo başlığı */
.product-table-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding: 15px 20px 0;
}

/* Excel class'larını override et */
.xl66, .xl68, .xl69, .xl72, .xl73, .xl74, .xl75, .xl76, .xl77,
.xl79, .xl80, .xl81, .xl82, .xl83, .xl84, .xl85, .xl86, .xl87,
.xl88, .xl89, .xl90, .xl92, .xl95, .xl97, .xl99 {
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
    background: inherit !important;
    border: inherit !important;
    padding: inherit !important;
}

/* ===== RESPONSİVE ===== */

/* Tablet */
@media (max-width: 768px) {
    table {
        font-size: 13px !important;
    }
    
    table th,
    table td {
        padding: 8px 6px !important;
        font-size: 12px !important;
    }
    
    .product-table-title {
        font-size: 16px;
        padding: 10px 15px 0;
    }
    
    .table-responsive-wrapper,
    .product-table-container {
        margin: 15px -10px;
        border-radius: 0;
    }
}

/* Mobil - BASIT VE ÇALIŞAN ÇÖZÜM */
@media (max-width: 576px) {
    /* Tüm parent container'ları temizle */
    body {
        overflow-x: hidden !important;
    }
    
    /* Container'ı tamamen responsive yap */
    .table-responsive-wrapper,
    .product-table-container {
        margin: 10px -20px !important;
        padding: 0 !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        width: calc(100vw - 20px) !important;
        max-width: none !important;
        border-radius: 0 !important;
        -webkit-overflow-scrolling: touch !important;
        border-left: none !important;
        border-right: none !important;
        margin: 0 auto!important;
    }
    
    /* Tablo basit ayarlar */
    table {
        font-size: 11px !important;
        min-width: 500px !important;
        width: 500px !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    /* Hücre ayarları */
    table th,
    table td {
        padding: 6px 4px !important;
        font-size: 10px !important;
        white-space: nowrap !important;
        min-width: 45px !important;
    }
    
    /* İlk sütun */
    table th:first-child,
    table td:first-child {
        min-width: 80px !important;
        max-width: 80px !important;
        white-space: normal !important;
        word-break: break-word !important;
        padding: 6px 8px !important;
    }
    
    .product-table-title {
        font-size: 13px;
        padding: 8px 20px 0;
    }
    
    /* Scroll bar - çok belirgin yap */
    .table-responsive-wrapper::-webkit-scrollbar,
    .product-table-container::-webkit-scrollbar {
        height: 12px !important;
        background: #f0f0f0 !important;
    }
    
    .table-responsive-wrapper::-webkit-scrollbar-track,
    .product-table-container::-webkit-scrollbar-track {
        background: #f0f0f0 !important;
        border-radius: 6px !important;
    }
    
    .table-responsive-wrapper::-webkit-scrollbar-thumb,
    .product-table-container::-webkit-scrollbar-thumb {
        background: #4a90e2 !important;
        border-radius: 6px !important;
        border: 2px solid #f0f0f0 !important;
    }
}

/* Ekstra küçük ekranlar için */
@media (max-width: 400px) {
    table {
        font-size: 10px !important;
    }
    
    table th,
    table td {
        padding: 4px 2px !important;
        font-size: 10px !important;
    }
    
    .product-table-title {
        font-size: 12px;
        padding: 6px 5px 0;
    }
}

/* Print */
@media print {
    table {
        box-shadow: none !important;
        border: 1px solid #000 !important;
        font-size: 10px !important;
        margin: 10px 0 !important;
        table-layout: auto !important;
    }
    
    table th {
        background: #f0f0f0 !important;
        color: #000 !important;
        border: 1px solid #000 !important;
    }
    
    table td {
        border: 1px solid #000 !important;
        background: #fff !important;
        color: #000 !important;
    }
    
    .table-responsive-wrapper,
    .product-table-container {
        box-shadow: none;
        margin: 5px 0;
        overflow: visible !important;
    }
}