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

/* Import a font similar to Rotunda */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

html, body, button, input, select, textarea,
h1, h2, h3, h4, h5, h6, p, a, span, div, li, ul, ol, label, small, strong, blockquote {
    font-family: 'Inter', Arial, sans-serif;
}

/* Corporate Banner */
.corporate-banner {
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-text {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #009fe3;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    max-height: 70px;
}

.header__topbar {
    background-color: #fff;
    padding: 15px 0;
}

.contact__list {
    display: flex;
    align-items: center;
    margin: 0;
}

.contact__list li {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.contact__list li:last-child {
    margin-right: 0;
}

.contact__list li div {
    display: flex;
    flex-direction: column;
}

.contact__list li span {
    font-size: 12px;
    color: #666;
}

.contact__list li strong a {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.contact__list li strong a:hover {
    color: #009fe3;
}

.randevu-talebi {
    display: inline-block;
    background-color: #009fe3;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.randevu-talebi:hover {
    background-color: #0080b7;
    color: white;
    text-decoration: none;
}

.btn-primary {
    background-color: #009fe3;
    border-color: #009fe3;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-primary:hover {
    background-color: #0080b7;
    border-color: #0080b7;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.navbar-toggler {
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px;
    display: none;
    /* Hidden by default on desktop */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.navbar-toggler.active .menu-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.active .menu-lines span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .menu-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-lines {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.menu-lines span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.sticky-navbar {
    background-color: #009fe3;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    position: relative;
}

.nav__item-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav__item-link:hover {
    background-color: white;
    color: #009fe3;
}

.with-dropdown .nav__item-link {
    padding-right: 35px;
}

.with-dropdown .fa-angle-down {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    transition: transform 0.3s ease;
}

.with-dropdown:hover .fa-angle-down {
    transform: translateY(-50%) rotate(180deg);
}

/* ================= MOBILE DROPDOWN ================= */
@media (max-width: 991px) {

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.1);
    min-width: 100%;
    border-radius: 0;
    padding: 0;
    margin: 10px 0 0 0;
  }

  .dropdown-menu.show {
    display: block !important;
  }

}
/* ================= DESKTOP DROPDOWN ================= */
@media (min-width: 992px) {

  .dropdown-menu {
    position: absolute;
    display: none;
    background-color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
    margin-top: 0;
  }

  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}


.dropdown-menu.show {
    display: block !important;
}

.with-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu .nav__item-link {
    color: #333;
    padding: 10px 20px;
    font-weight: normal;
    transition: all 0.3s ease;
}

.dropdown-menu .nav__item-link:hover {
    background-color: #f8f9fa;
    color: #009fe3;
}

.module__btn-search {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module__btn-search:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: #009fe3;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: #0080b7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #009fe3;
}

header .container {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: relative;
    /* Needed for absolute positioning of hamburger */
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 10px 5px;
    position: relative;
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    color: #009fe3;
}

nav ul li a.active {
    color: #009fe3;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #009fe3;
}

/* Contact Info in Navbar */
.contact-info a {
    display: flex;
    align-items: center;
    color: #009fe3;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #009fe3;
    border-radius: 20px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    background-color: #009fe3;
    color: white;
}

.contact-info a i {
    margin-right: 5px;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #e0e0e0;
    /* Light gray background to make it visible */
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    max-width: 500px;
    border-radius: 5px;
}

.slide-content h2 {
    color: #009fe3;
    margin-bottom: 10px;
}

.slide-content p {
    margin-bottom: 15px;
    color: #333;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-btn,
.next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Company Info Styles */
.company-info {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.company-info h2 {
    color: #009fe3;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.company-info p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.achievements {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
}

.achievement {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 15px;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.achievement:hover {
    transform: translateY(-5px);
}

.achievement h3 {
    color: #009fe3;
    margin-bottom: 15px;
    font-size: 22px;
}

.achievement p {
    color: #666;
    font-size: 16px;
}

/* Services Styles */
.services {
    padding: 60px 0;
    background-color: white;
}

.services h2 {
    text-align: center;
    color: #009fe3;
    margin-bottom: 40px;
    font-size: 28px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #333;
    margin-bottom: 20px;
}

/* News Styles */
.news {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.news h2 {
    text-align: center;
    color: #009fe3;
    margin-bottom: 40px;
    font-size: 28px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.date {
    color: #009fe3;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.news-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.news-item p {
    margin-bottom: 20px;
    color: #666;
}

/* Price Lists Styles */
/* Blog Styles */
.blog {
    padding: 60px 0;
    background-color: white;
}

.blog h2 {
    text-align: center;
    color: #009fe3;
    margin-bottom: 40px;
    font-size: 28px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-item {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 5px;
}

.blog-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.blog-item p {
    margin-bottom: 20px;
    color: #666;
}

/* References Styles */
.references {
    padding: 60px 0;
    background-color: #009fe3;
    color: white;
    text-align: center;
}

.references h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.reference-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.references .btn {
    background-color: white;
    color: #009fe3;
}

.references .btn:hover {
    background-color: #f5f5f5;
}

.reference-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.logo-item {
    text-align: center;
    color: white;
}

.logo-item i {
    font-size: 40px;
    margin-bottom: 15px;
}

.logo-item span {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

/* Services Section Styles */
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #009fe3;
    border-color: #009fe3;
}

.service-card:hover h3 {
    color: white;
}

.service-card:hover .service-icon {
    color: white;
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-card:hover .service-link {
    color: white;
}

.service-link i {
    transition: color 0.3s ease;
}

.service-card:hover .service-link i {
    color: white;
}

.service-icon {
    font-size: 40px;
    color: #009fe3;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
    width: 100%;
    text-align: right;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: #009fe3;
    ;
    /* K覺rm覺z覺 ok rengi */
}

.service-card:hover .service-link i {
    color: white;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #009fe3;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-logo {
    max-width: 120px;
    height: auto;
}

.footer-email {
    color: #ccc;
    text-decoration: none;
}

.footer-email:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Page Header Styles */
.page-header {
    background-color: #009fe3;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.news-date {
    font-size: 18px;
    font-weight: bold;
}

/* About Content Styles */
.about-content {
    padding: 60px 0;
}

.about-content .container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    color: #009fe3;
    margin: 30px 0 15px 0;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Service/Product Content Styles */
.service-content,
.product-content {
    padding: 60px 0;
}

.service-intro,
.product-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.service-image,
.product-image {
    flex: 1;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-text,
.product-text {
    flex: 2;
}

.service-text h2,
.product-text h2 {
    color: #009fe3;
    margin-bottom: 20px;
}

.service-details h2,
.product-details h2 {
    color: #009fe3;
    margin: 40px 0 20px 0;
}

.product-grid,
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card,
.service-item {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 5px;
}

.product-card h3,
.service-item h3 {
    color: #333;
    margin-bottom: 15px;
}

/* News Content Styles */
.news-content {
    padding: 60px 0;
}

.news-image {
    margin-bottom: 30px;
    text-align: center;
}

.news-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-text h2 {
    color: #009fe3;
    margin: 30px 0 15px 0;
}

.news-text h3 {
    color: #333;
    margin: 25px 0 10px 0;
}

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

.contact-info {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.contact-info p {
    margin: 10px 0;
}

/* Blog Content Styles */
.blog-content {
    padding: 60px 0;
}

.blog-text h2 {
    color: #009fe3;
    margin: 30px 0 15px 0;
}

.blog-text h3 {
    color: #333;
    margin: 25px 0 10px 0;
}

/* Contact CTA Styles */
.contact-cta {
    padding: 60px 0;
    background-color: #009fe3;
    color: white;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-cta .btn {
    background-color: white;
    color: #009fe3;
}

.contact-cta .btn:hover {
    background-color: #f5f5f5;
}

/* Contact Content Styles */
.contact-content {
    padding: 60px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Contact Cards - Left Side */
.contact-cards {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #f0f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 24px;
    color: #009fe3;
}

.card-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.card-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    background-color: #009fe3;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #009fe3;
}

.contact-btn:hover {
    background-color: transparent;
    color: #009fe3;
    transform: translateY(-2px);
}

/* Contact Form - Right Side */
.contact-form-section {
    flex: 2;
    min-width: 300px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.form-header h2 {
    color: #009fe3;
    margin-bottom: 10px;
    font-size: 32px;
}

.form-header p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.modern-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.modern-contact-form .form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #009fe3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
    background-color: #fff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    color: #555;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    background-color: #009fe3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #0080c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.3);
}

/* Map Section */
.map-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-top: 20px;
}

.map-section h3 {
    color: #009fe3;
    margin-bottom: 20px;
    font-size: 24px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    position: relative;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Related Sections */
.related-news,
.related-posts {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.related-news h2,
.related-posts h2 {
    text-align: center;
    color: #009fe3;
    margin-bottom: 40px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.step {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
}

.step h3 {
    color: #009fe3;
    margin-bottom: 15px;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 5px;
}

.feature-item h3 {
    color: #009fe3;
    margin-bottom: 15px;
}

/* About Section Styles */
.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    color: #009fe3;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
    color: #555;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.value-item {
    text-align: center;
    padding: 25px 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 36px;
    color: #009fe3;
    margin-bottom: 15px;
}

.value-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.value-item p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Active Navigation */
nav ul li a.active {
    color: #009fe3;
    font-weight: bold;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #009fe3;
    font-size: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #009fe3;
}

/* Products Content Styles */
.products-content {
    padding: 60px 0;
}

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

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.product-card p {
    margin-bottom: 15px;
    color: #666;
}

/* Services Content Styles */
.services-content {
    padding: 60px 0;
}

.services-content .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.services-content .service-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-content .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-content .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* References Content Styles */
.references-content {
    padding: 60px 0;
    text-align: center;
}

.references-content h2 {
    color: #009fe3;
    margin-bottom: 20px;
    font-size: 32px;
}

.reference-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reference-category {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.reference-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reference-category i {
    font-size: 40px;
    color: #009fe3;
    margin-bottom: 15px;
}

.reference-category h3 {
    color: #333;
    margin-bottom: 10px;
}

.reference-category p {
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content .container {
        flex-direction: column;
    }

    .contact-content .container {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 30px;
    }

    .contact-cards {
        width: 100%;
    }

    .contact-form-section {
        width: 100%;
        padding: 25px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .card-icon {
        margin-bottom: 15px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    /* Header Responsive */
    .header__topbar {
        display: none !important;
    }

    .navbar-toggler {
        display: block;
        /* Show hamburger menu on mobile */
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .navbar__bottom {
        position: relative;
    }
    @media (min-width: 992px) {
  .navbar-collapse {
    position: static;
    background: rgba(15, 23, 42, 0.68) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: none;
  }
  .header-bottom {
    background: rgba(15, 23, 42, 0.68) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .header-bottom .navbar {
    background-color: transparent !important;
  }

  .navbar-collapse {
    border-radius: 0;
  }
}
@media (max-width: 991px) {

    .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    /* 🔥 Transparan + cam efekti */
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 15px 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    display: none; /* JS ile açılıyor */
    z-index: 1000;
  }
}
  /* Menü linkleri okunaklı kalsın */
  .navbar-collapse a {
    color: #fff;
  }

}

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-nav {
        flex-direction: column;
        padding: 0 15px;
    }

    .nav__item {
        width: 100%;
        margin: 5px 0;
    }

    .nav__item-link {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
        color: white;
    }

    .nav__item-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .sticky-navbar {
        padding: 10px 0;
    }

    .navbar-modules {
        display: none !important;
    }

    .with-dropdown .nav__item-link {
        padding-right: 20px;
    }

    .with-dropdown .fa-angle-down {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        transition: transform 0.3s ease;
    }

    .with-dropdown .fa-angle-down.rotated {
        transform: translateY(-50%) rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
        min-width: 100%;
        border-radius: 0;
        padding: 0;
        margin: 10px 0 0 0;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .with-dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu .nav__item {
        margin: 0;
    }

    .dropdown-menu .nav__item-link {
        color: white;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        text-align: center;
    }

    .dropdown-menu .nav__item-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .dropdown-menu .nav__item:last-child .nav__item-link {
        border-bottom: none;
    }

    /* Certificates Page */
    .certificates-page .page-header {
        padding: 60px 0;
    }

    .certificates-page .page-header h1 {
        font-size: 32px;
    }

    .certificates-page .content-card {
        padding: 25px;
    }

    .certificates-page .content-card h2 {
        font-size: 28px;
    }

    .certificates {
        grid-template-columns: 1fr;
    }

    .certificate-item {
        padding: 25px;
    }

    .certificate-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .certificates-page .sidebar {
        margin-top: 40px;
    }

    /* Services Page */
    .services-page .page-header {
        padding: 60px 0;
    }

    .services-page .page-header h1 {
        font-size: 32px;
    }

    .services-page .content-card {
        padding: 25px;
    }

    .services-page .content-card h2 {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .standards-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .services-page .sidebar {
        margin-top: 40px;
    }

    .services-index-page .page-header {
        padding: 60px 0;
    }

    .services-index-page .page-header h1 {
        font-size: 32px;
    }

    .services-index-page .services-grid {
        grid-template-columns: 1fr;
    }

    /* Additional Service Page Styles */
    .app-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .tech-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .process .step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    /* Technical Documents Page */
    .technical-documents-page .page-header {
        padding: 60px 0;
    }

    .technical-documents-page .page-header h1 {
        font-size: 32px;
    }

    .technical-documents-page .content-card {
        padding: 25px;
    }

    .technical-documents-page .content-card h2 {
        font-size: 28px;
    }

    .document-list {
        grid-template-columns: 1fr;
    }

    .document-item {
        flex-direction: column;
        text-align: center;
    }

    .document-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .technical-documents-page .sidebar {
        margin-top: 40px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #009fe3;
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }

    .slide-content {
        padding: 15px;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .company-info,
    .services,
    .news,
    .blog,
    .references,
    .about-content,
    .service-content,
    .product-content,
    .news-content,
    .blog-content,
    .contact-content,
    .related-news,
    .related-posts,
    .contact-cta {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    /* Contact Form Mobile */
    .modern-contact-form .form-group {
        min-width: 100%;
    }

    .card-content p {
        font-size: 14px;
    }

    /* Header Mobile */
    .nav__item-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .randevu-talebi {
        padding: 6px 10px;
        font-size: 10px;
    }
}

/* Back to Top Button */
#backToTop {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 30px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: #009fe3;
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Rounded corners */
    font-size: 20px;
    /* Increase font size */
    box-shadow: 0 4px 12px rgba(0, 159, 227, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop:hover {
    background-color: #0080b7;
    /* Add a dark-grey background on hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 159, 227, 0.4);
}

#backToTop:active {
    transform: translateY(-2px);
}

/* Medium screen styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-info a {
        font-size: 12px;
        padding: 4px 6px;
        margin-left: 8px;
    }

    /* Header Medium Screen */
    .contact__list li {
        margin-right: 10px;
    }

    .nav__item-link {
        padding: 12px 15px;
        font-size: 14px;
        transition: all 0.3s ease;
    }
}

/* Additional styles can be added here */

/* Certificates Page Styles */
.certificates-page .page-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.certificates-page .page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,100 0,100" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.certificates-page .page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.certificates-page .breadcrumb {
    background-color: transparent;
    justify-content: center;
    margin-top: 20px;
}

.certificates-page .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.certificates-page .breadcrumb-item a:hover {
    color: white;
    text-decoration: none;
}

.certificates-page .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.certificates-page .page-content {
    padding: 60px 0;
}

.certificates-page .content-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.certificates-page .content-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.certificates-page .content-card h2 {
    color: #009fe3;
    margin-bottom: 25px;
    font-size: 32px;
    position: relative;
    padding-bottom: 15px;
}

.certificates-page .content-card h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.certificates-page .content-card>p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.certificates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.certificate-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.certificate-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.certificate-item:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.certificate-item:hover::before {
    transform: scaleX(1);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.certificate-item:hover .certificate-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.3);
}

.certificate-info h3 {
    color: #333;
    margin-bottom: 12px;
    font-size: 22px;
}

.certificate-info p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.certificate-info p:first-of-type {
    font-weight: 600;
    color: #009fe3;
    margin-bottom: 8px;
}

/* Sidebar Styles */
.certificates-page .sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 35px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: #009fe3;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
    font-size: 22px;
}

.sidebar-widget h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.related-pages {
    list-style: none;
    padding: 0;
}

.related-pages li {
    margin-bottom: 15px;
}

.related-pages li:last-child {
    margin-bottom: 0;
}

.related-pages li a {
    display: flex;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.related-pages li a:hover {
    background: #f0f8ff;
    color: #009fe3;
    border-color: #009fe3;
    transform: translateX(5px);
}

.related-pages li a i {
    margin-right: 10px;
    color: #009fe3;
}

.sidebar-widget>p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-widget .btn {
    display: block;
    text-align: center;
    width: 100%;
}

/* Responsive Improvements */
@media (max-width: 992px) {
    .certificates {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .certificates-page .content-card {
        padding: 30px;
    }
}


/* Services Page Styles */
.services-page .page-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-page .page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,100 0,100" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.services-page .page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.services-page .breadcrumb {
    background-color: transparent;
    justify-content: center;
    margin-top: 20px;
}

.services-page .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.services-page .breadcrumb-item a:hover {
    color: white;
    text-decoration: none;
}

.services-page .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.services-page .page-content {
    padding: 60px 0;
}

.services-page .content-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.services-page .content-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.services-page .content-card h2 {
    color: #009fe3;
    margin-bottom: 25px;
    font-size: 32px;
    position: relative;
    padding-bottom: 15px;
}

.services-page .content-card h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.services-page .content-card>p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Service Details Styles */
.service-details h3 {
    color: #009fe3;
    margin: 40px 0 25px 0;
    font-size: 26px;
    position: relative;
    padding-bottom: 12px;
}

.service-details h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.product-series,
.panel-type {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.product-series:hover,
.panel-type:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #009fe3;
}

.product-series h4,
.panel-type h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.product-series h4 i,
.panel-type h4 i {
    margin-right: 10px;
    color: #009fe3;
}

.product-series p,
.panel-type p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-series ul,
.panel-type ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.product-series ul li,
.panel-type ul li {
    margin-bottom: 8px;
    color: #555;
}

.product-series ul li:last-child,
.panel-type ul li:last-child {
    margin-bottom: 0;
}

/* Benefits Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    background: #fff;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #009fe3;
}

.benefit-item i {
    font-size: 36px;
    color: #009fe3;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Manufacturing Process Styles */
.manufacturing-process h3 {
    color: #009fe3;
    margin: 50px 0 30px 0;
    font-size: 26px;
    position: relative;
    padding-bottom: 12px;
}

.manufacturing-process h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.step:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #009fe3;
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Standards Styles */
.standards h3 {
    color: #009fe3;
    margin: 50px 0 30px 0;
    font-size: 26px;
    position: relative;
    padding-bottom: 12px;
}

.standards h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.standard {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.standard:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #009fe3;
}

.standard i {
    font-size: 32px;
    color: #009fe3;
    margin-bottom: 15px;
}

.standard h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.standard p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Sidebar Styles for Services */
.services-page .sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.services-page .sidebar-widget {
    margin-bottom: 35px;
}

.services-page .sidebar-widget:last-child {
    margin-bottom: 0;
}

.services-page .sidebar-widget h3 {
    color: #009fe3;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
    font-size: 22px;
}

.services-page .sidebar-widget h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 15px;
}

.related-services li:last-child {
    margin-bottom: 0;
}

.related-services li a {
    display: flex;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.related-services li a:hover {
    background: #f0f8ff;
    color: #009fe3;
    border-color: #009fe3;
    transform: translateX(5px);
}

.related-services li a i {
    margin-right: 10px;
    color: #009fe3;
}

.services-page .sidebar-widget>p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-page .sidebar-widget .btn {
    display: block;
    text-align: center;
    width: 100%;
}

/* Services Index Page Styles */
.services-index-page .page-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-index-page .page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,100 0,100" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.services-index-page .page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.services-index-page .services-content {
    padding: 60px 0;
}

.services-index-page .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.services-index-page .service-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.services-index-page .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.services-index-page .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.services-index-page .service-card:hover::before {
    transform: scaleX(1);
}

.services-index-page .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.services-index-page .service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.3);
}

.services-index-page .service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
}

.services-index-page .service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.services-index-page .service-card .btn {
    display: inline-block;
    background-color: #009fe3;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.services-index-page .service-card .btn:hover {
    background-color: #0080b7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Improvements */
@media (max-width: 992px) {
    .services-page .content-card {
        padding: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .standards-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .services-index-page .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-index-page .service-card {
        padding: 25px 20px;
    }
}

/* Additional Service Page Styles */

/* Service Item Styles */
.service-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #009fe3;
}

.service-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.service-item h4 i {
    margin-right: 10px;
    color: #009fe3;
}

.service-item p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-item ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.service-item ul li {
    margin-bottom: 8px;
    color: #555;
}

.service-item ul li:last-child {
    margin-bottom: 0;
}

/* Solution Category Styles */
.solution-category,
.product-category {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.solution-category:hover,
.product-category:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #009fe3;
}

.solution-category h4,
.product-category h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.solution-category h4 i,
.product-category h4 i {
    margin-right: 10px;
    color: #009fe3;
}

.solution-category p,
.product-category p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.solution-category ul,
.product-category ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.solution-category ul li,
.product-category ul li {
    margin-bottom: 8px;
    color: #555;
}

.solution-category ul li:last-child,
.product-category ul li:last-child {
    margin-bottom: 0;
}

/* Application Grid Styles */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.app-item {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.app-item:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #009fe3;
}

.app-item i {
    font-size: 32px;
    color: #009fe3;
    margin-bottom: 15px;
}

.app-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.app-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Technology Features Styles */
.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #009fe3;
}

.feature i {
    font-size: 32px;
    color: #009fe3;
    margin-bottom: 15px;
}

.feature h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Solution Area Styles */
.solution-area {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.solution-area:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #009fe3;
}

.solution-area h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.solution-area h4 i {
    margin-right: 10px;
    color: #009fe3;
}

.solution-area p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.solution-area ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.solution-area ul li {
    margin-bottom: 8px;
    color: #555;
}

.solution-area ul li:last-child {
    margin-bottom: 0;
}

/* Process with Icons Styles */
.process .step {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.process .step:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #009fe3;
    transform: translateY(-5px);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Process Styles */
.service-process h3 {
    color: #009fe3;
    margin: 50px 0 30px 0;
    font-size: 26px;
    position: relative;
    padding-bottom: 12px;
}

.service-process h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

/* Applications Section Styles */
.applications h3 {
    color: #009fe3;
    margin: 50px 0 30px 0;
    font-size: 26px;
    position: relative;
    padding-bottom: 12px;
}

.applications h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

/* Technology Section Styles */
.technology h3 {
    color: #009fe3;
    margin: 50px 0 30px 0;
    font-size: 26px;
    position: relative;
    padding-bottom: 12px;
}

.technology h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

/* Technical Documents Styles */
.technical-documents-page .page-header {
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.technical-documents-page .page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,100 0,100" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.technical-documents-page .page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.technical-documents-page .breadcrumb {
    background-color: transparent;
    justify-content: center;
    margin-top: 20px;
}

.technical-documents-page .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.technical-documents-page .breadcrumb-item a:hover {
    color: white;
    text-decoration: none;
}

.technical-documents-page .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.technical-documents-page .page-content {
    padding: 60px 0;
}

.technical-documents-page .content-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.technical-documents-page .content-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.technical-documents-page .content-card h2 {
    color: #009fe3;
    margin-bottom: 25px;
    font-size: 32px;
    position: relative;
    padding-bottom: 15px;
}

.technical-documents-page .content-card h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.technical-documents-page .content-card>p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.document-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.document-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #009fe3;
    transform: translateY(-5px);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #009fe3 0%, #0077b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.document-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.document-info .btn {
    display: inline-block;
    background-color: #009fe3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.document-info .btn:hover {
    background-color: #0080b7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Sidebar Styles for Technical Documents */
.technical-documents-page .sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.technical-documents-page .sidebar-widget {
    margin-bottom: 35px;
}

.technical-documents-page .sidebar-widget:last-child {
    margin-bottom: 0;
}

.technical-documents-page .sidebar-widget h3 {
    color: #009fe3;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
    font-size: 22px;
}

.technical-documents-page .sidebar-widget h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #009fe3, #0077b6);
    border-radius: 2px;
}

.related-docs {
    list-style: none;
    padding: 0;
}

.related-docs li {
    margin-bottom: 15px;
}

.related-docs li:last-child {
    margin-bottom: 0;
}

.related-docs li a {
    display: flex;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.related-docs li a:hover {
    background: #f0f8ff;
    color: #009fe3;
    border-color: #009fe3;
    transform: translateX(5px);
}

.related-docs li a i {
    margin-right: 10px;
    color: #009fe3;
}

.technical-documents-page .sidebar-widget>p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.technical-documents-page .sidebar-widget .btn {
    display: block;
    text-align: center;
    width: 100%;
}

/* Responsive Improvements for Technical Documents */
@media (max-width: 992px) {
    .technical-documents-page .content-card {
        padding: 30px;
    }

    .document-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .technical-documents-page .page-header {
        padding: 60px 0;
    }

    .technical-documents-page .page-header h1 {
        font-size: 32px;
    }

    .technical-documents-page .content-card {
        padding: 25px;
    }

    .technical-documents-page .content-card h2 {
        font-size: 28px;
    }

    .document-list {
        grid-template-columns: 1fr;
    }

    .document-item {
        flex-direction: column;
        text-align: center;
    }

    .document-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .technical-documents-page .sidebar {
        margin-top: 40px;
    }
}

/* Quick Links Section */
.quick-links {
    padding: 40px 0;
    background-color: #f8f9fa;
}

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

.btn-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: #fff;
    color: #009fe3;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #009fe3;
    color: white;
}

.btn-large i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.btn-large span {
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .buttons-grid {
        grid-template-columns: 1fr;
    }
}

/* News Section Cards (from index.php) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
}

.news-content .date {
    color: #009fe3;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.news-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.news-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

/* --- New Header 3-Layer Design --- */

/* 1. Top Bar */
.top-bar {
    background-color: #cc0000;
    /* Red attention color */
    color: white;
    padding: 8px 0;
    font-size: 14px;
    background: linear-gradient(90deg, #cc0000 0%, #ff3333 100%);
}

.top-bar-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    font-size: 11px;
    padding: 2px 10px;
    font-weight: bold;
}

.top-bar .btn-outline-light:hover {
    background-color: white;
    color: #009fe3;
}


/* 2. Middle Section */
.header-middle {
    background-color: white;
    border-bottom: 1px solid #eee;
}

.info-item i {
    font-size: 16px;
    /* Reduced from 20px */
    color: #009fe3 !important;
    /* Mekosan Red/Primary */
}

.info-item span.small {
    font-size: 10px;
    /* Reduced from 11px */
    text-transform: uppercase;
    color: #999;
    line-height: 1;
    margin-bottom: 0;
}

.info-item a {
    text-decoration: none;
    font-size: 13px;
    /* Reduced from 15px */
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.info-actions {
    display: flex;
    align-items: center;
    /* justify-content handled by Bootstrap classes or media query */
    flex-wrap: wrap;
    /* Allow wrapping on mobile */
    gap: 10px;
    /* Space between wrapped items */
    width: 100%;
}

/* Ensure consistent heights for alignment */
.info-item,
.action-buttons,
.abb-logo {
    display: flex;
    align-items: center;
    height: 100%;
    /* Match container height */
}

/* Desktop: No wrap and proper spacing */
@media (min-width: 992px) {
    .info-actions {
        flex-wrap: nowrap;
        justify-content: flex-end;
        /* Right align on desktop */
        height: 100%;
        /* Ensure it takes full height of parent if needed */
        gap: 20px;
        /* Larger gap for desktop */
    }
}

/* Common styles for header items */
.info-item,
.action-buttons,
.abb-logo {
    display: flex;
    align-items: center;
    height: 100%;
    /* Match container height */
}

/* Specific fix for ABB logo container to ensure image centers */
.abb-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px !important;
    /* Ensure padding for border */
    margin-top: 5px;
    /* Spacing if wrapped on mobile */
}

@media (min-width: 992px) {
    .abb-logo {
        margin-top: 0;
    }
}

.abb-logo img {
    display: block;
    /* Remove inline-block gap */
    max-height: 45px !important;
    /* Force a consistent max-height */
    width: auto;
}

.action-buttons .btn {
    font-size: 11px;
    /* Reduced from 12px */
    font-weight: 600;
    padding: 6px 12px;
    border-width: 1px;
    white-space: nowrap;
    /* Prevent text wrapping in buttons */
}

.action-buttons .btn-outline-primary {
    color: #fff;
    border-color: #009fe3;
}

.action-buttons .btn-outline-primary:hover {
    background-color: #333;
    color: white;
}

.action-buttons .btn-outline-danger {
    color: #333;
    border-color: #333;
}

.action-buttons .btn-outline-danger:hover {
    background-color: #333;
    color: white;
}


/* 3. Bottom Navigation */
.header-bottom {
    background-color: #1a1a1a !important;
    /* Dark black/gray */
    position: relative;
    z-index: 100;
}

.header-bottom .navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    padding: 20px 15px !important;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.3s;
}

.header-bottom .navbar-nav .nav-item.active .nav-link,
.header-bottom .navbar-nav .nav-link:hover {
    color: #fff !important;
    opacity: 1;
}

/* Dropdown Menu Customization */
.header-bottom .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 0;
    padding: 0;
}

.header-bottom .dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    transition: all 0.3s;
}

.header-bottom .dropdown-item:hover {
    background-color: #f8f8f8;
    color: #e30613;
    padding-left: 25px;
}

/* Right Side Special Buttons */
.header-right-btns .btn {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.header-right-btns .btn:hover {
    filter: brightness(1.1);
}

@media (max-width: 991px) {
    .header-middle {
        text-align: center;
    }

    .info-actions {
        justify-content: center !important;
        margin-top: 20px;
    }

    .header-right-btns {
        margin-top: 15px;
        width: 100%;
    }

    .header-right-btns .btn {
        flex: 1;
        justify-content: center;
    }
}

/* --- Flip Card Styles for Contact Page --- */

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 320px;
    /* Fixed height for uniformity */
    perspective: 1000px;
    margin-bottom: 30px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

/* Front Side: White Background, Red Accents */
.flip-card-front {
    background-color: #fff;
    color: #333;
    border: 1px solid #f0f0f0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 32px;
    flex-shrink: 0;
    /* Prevent squashing */
}

.icon-circle i {
    width: 100%;
    /* Ensure icon takes full width of container for centering */
    text-align: center;
    line-height: normal;
    /* Reset line height */
}

/* Back Side: Blue Background, White Accents */
.flip-card-back {
    background-color: #009fe3;
    /* Mekosan Blue */
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back .icon-circle {
    color: #009fe3;
    /* Icon color on white circle */
}

/* Typography adjustments inside cards */
.flip-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.flip-card p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.flip-card .btn-link {
    text-decoration: none;
    font-size: 14px;
}

.flip-card .btn-link:hover {
    color: #009fe3 !important;
}

/* Custom Text Class for #009fe3 */
.text-meko-blue {
    color: #009fe3 !important;
}

.social-links-flip a {
    font-size: 24px;
    transition: opacity 0.3s;
}

.social-links-flip a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flip-card {
        height: 280px;
    }
}
@media (max-width: 991px) {
  .corporate-banner {
    display: none !important;
  }
}
