/* 
==============================================
   STH Team - Master Stylesheet
==============================================
*/

:root {
    --primary-color: #E30613;
    /* STH Red */
    --primary-dark: #c00510;
    --secondary-color: #111111;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ================= Navbar ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background-color: #ffffff !important;
    padding: 10px 0 !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-color {
    display: none;
}

.navbar.scrolled .logo-white {
    display: none !important;
}

.navbar.scrolled .logo-color {
    display: block !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--white);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .nav-links li a {
    color: var(--primary-color) !important;
}

.nav-links li a:hover {
    color: var(--primary-color) !important;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::before {
    width: 100%;
}

.lang-switch {
    font-weight: 700 !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    color: var(--text-color) !important;
    padding: 10px 20px;
    display: block;
    font-size: 0.95rem;
}

.dropdown-menu li a::before {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
    padding-left: 25px;
}

/* Social Nav */
.social-nav {
    display: flex;
    gap: 15px;
}

.social-nav a {
    color: var(--white);
    font-size: 1.1rem;
}

.navbar.scrolled .social-nav a {
    color: var(--primary-color) !important;
}

.social-nav a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--primary-color) !important;
}

/* ================= Hero Banner ================= */
.hero-banner {
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 180px;
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease;
}

.hero-content h1 .divider {
    color: var(--primary-color);
    font-weight: 300;
}

.hero-subtext {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-vision {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
        min-height: 450px;
        background-attachment: scroll;
    }
    .hero-content {
        margin-top: 100px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-subtext {
        font-size: 1.1rem;
    }
    .hero-vision {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

/* ================= Solutions Section ================= */
.solutions-section {
    padding: 100px 20px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solutions-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.solutions-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.solutions-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.solutions-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.solutions-image img:hover {
    transform: translateY(-5px);
}

/* ================= Freedom Section ================= */
.freedom-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.freedom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.freedom-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.freedom-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.freedom-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .freedom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .freedom-image {
        order: 2;
    }

    .freedom-text {
        order: 1;
    }
}

.card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.card-content h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.card:hover .card-img {
    transform: scale(1.1);
}

.card:hover {
    box-shadow: var(--shadow-hover);
}

/* ================= Achievements Section ================= */
.achievements-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.achievements-header {
    text-align: center;
    margin-bottom: 60px;
}

.achievements-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-item {
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.achievement-item:hover {
    background: var(--white);
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.icon-box {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.achievement-item:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.achievement-item h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.achievement-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.achievements-footer {
    text-align: center;
    width: 100%;
}

.highlight-link {
    display: inline-block;
    transition: var(--transition);
}

.highlight-link:hover {
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--white);
    padding: 30px 60px;
    border-radius: 50px;
    margin-bottom: 40px;
    display: inline-block;
    box-shadow: var(--shadow);
}

.highlight-box p {
    font-size: 1.3rem;
    margin: 0;
}

.highlight-box strong {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievements-header h2 {
        font-size: 2.2rem;
    }
}

/* ================= News Section ================= */
.news-section {
    padding: 100px 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.news-card:hover .news-content h3 {
    color: var(--primary-color);
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

.news-actions {
    text-align: center;
}

/* ================= Footer ================= */
.footer {
    background: var(--bg-light);
    padding-top: 80px;
    clear: both;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 50px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.footer-middle h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icons a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons i {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
}

.social-icons a:hover i {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.member-logos {
    display: flex;
    gap: 15px;
}

.badge-logo {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.badge-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.tursab-center {
    text-align: center;
    padding: 40px 0;
}

.tursab-logo-main {
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tursab-logo-main:hover {
    transform: scale(1.05);
}

.footer-bottom {
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px 0;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bottom-container p {
    font-size: 0.9rem;
    color: #999;
}

.policy-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.policy-links a {
    color: #999;
    font-size: 0.9rem;
}

.policy-links a:hover {
    color: var(--white);
}

/* ================= Animations ================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= About Page (STH Team) ================= */
.page-banner {
    padding: 150px 20px 100px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

/* ================= About Page New Styles ================= */
.future-grid,
.values-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.process-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.process-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.process-list .num {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.principle-card {
    background: var(--bg-light);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.principle-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.principle-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    margin-top: 30px;
}

.values-list li {
    position: relative;
    padding-left: 20px;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.cert-list {
    margin-top: 30px;
}

.cert-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.cert-item i {
    font-size: 1.5rem;
}

@media (max-width: 992px) {

    .future-grid,
    .values-grid,
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
}

.page-banner p {
    font-size: 1.2rem;
    font-weight: 300;
}

.section-padding {
    padding: 80px 20px;
}

.sub-heading {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.custom-list {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.custom-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.custom-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlight-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 20px;
}

.highlight-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight-section p {
    font-size: 1.2rem;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--text-light);
}

.bg-light {
    background-color: var(--bg-light);
}

.assurance-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 60px;
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.assurance-icon-wrap {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
    border: 5px solid var(--bg-light);
}

.assurance-body {
    text-align: center;
    margin-top: 20px;
}

.assurance-body h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.assurance-body p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.assurance-body p strong {
    color: var(--secondary-color);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cert-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cert-item span {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.cert-item small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================= Team Page ================= */
.founder-card {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    margin-bottom: 20px;
}

.founder-image {
    flex: 0 0 40%;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content {
    flex: 0 0 60%;
    padding: 60px;
    position: relative;
    background: var(--primary-color);
    color: var(--white);
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 40px;
    left: 40px;
}

.founder-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.founder-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.founder-info .designation {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-message p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.department-block {
    margin-bottom: 60px;
}

.department-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.team-grid {
    display: grid;
    /* CSS Grid auto-fill magically handles dynamic elements without gaps */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(227, 6, 19, 0.9) 0%, rgba(227, 6, 19, 0.7) 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info .team-role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ================= Career Page ================= */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.article-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--text-light);
}

.career-form .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.career-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.career-form input[type="text"],
.career-form input[type="tel"],
.career-form input[type="email"],
.career-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.career-form input:focus,
.career-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.career-form input[type="file"] {
    width: 100%;
    padding: 10px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* ================= Services Page ================= */
.services-layout {
    display: flex;
    gap: 40px;
    position: relative;
    align-items: flex-start;
}

.services-sidebar {
    flex: 0 0 280px;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sticky-menu {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
}

.sticky-menu h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.sticky-menu ul {
    list-style: none;
}

.sticky-menu li {
    margin-bottom: 10px;
}

.sticky-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.sticky-menu a:hover,
.sticky-menu a.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.sticky-menu a i {
    width: 20px;
    text-align: center;
}

.services-content {
    flex: 1;
}

.service-section {
    margin-bottom: 60px;
    scroll-margin-top: 120px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.2);
}

.service-header h2 {
    margin: 0;
    font-size: 2.2rem;
}

.service-card .lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-color);
    margin: 0;
}

.custom-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.custom-form input,
.custom-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.custom-form input:focus,
.custom-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.mt-4 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.pt-4 {
    padding-top: 2rem;
}

/* ================= Etkinlikler Page ================= */
.event-card {
    padding: 40px;
}

.event-media {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.event-media img,
.event-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.event-details p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.event-gallery {
    margin-top: 40px;
    border-top: 1px solid var(--bg-light);
    padding-top: 30px;
}

.event-gallery h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ================= Projelerimiz Page ================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.project-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ================= Referanslarimiz Page ================= */
.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ref-card {
    background: var(--white);
    border-radius: 12px;
    padding: 10px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ref-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.ref-card img {
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.ref-card:hover img {
    filter: grayscale(100%);
    opacity: 0.7;
}

/* ================= Blog & Media Pages ================= */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
}

.post-img {
    height: 250px;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-img img {
    transform: scale(1.1);
}

.post-content {
    padding: 30px;
}

.post-meta {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.post-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.4;
}

.post-content h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

/* ================= Single Post Page ================= */
.post-header {
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.post-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.post-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.post-content-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.post-content-wrapper h2,
.post-content-wrapper h3 {
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

.post-content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 1.15rem;
}

.post-content-wrapper ul li {
    margin-bottom: 10px;
}

.social-share a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-share a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* ================= Publications Page ================= */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.publication-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pub-cover {
    height: auto;
    aspect-ratio: 649 / 1167;
    position: relative;
}

.pub-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f9fa;
}

.pub-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.publication-card:hover .pub-overlay {
    opacity: 1;
}

.pub-info {
    padding: 30px;
    text-align: center;
}

.pub-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.pub-info p {
    color: var(--text-light);
}

/* ================= Contact Page ================= */
.contact-wrapper {
    display: flex;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info-block {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    padding: 60px;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.info-text h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--white);
}

.info-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    display: block;
}

.info-text a {
    display: inline-block;
    /* Veya block */
    vertical-align: top;
    text-indent: 0;
}

.info-text .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.info-text .social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-block {
    flex: 1.5;
    padding: 60px;
}

.contact-form-block .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ================= Form & Checkbox Styles ================= */
.custom-form .form-group {
    margin-bottom: 25px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.custom-checkbox {
    display: flex;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    align-items: flex-start;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: var(--transition);
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--primary-color);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox .label-text {
    line-height: 1.5;
    color: var(--text-light);
}

/* ================= Newsletter Section ================= */
.newsletter-section {
    background: var(--secondary-color);
    padding: 60px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 600px;
}

.newsletter-form .input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    border-radius: 6px;
    padding: 0 30px;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .services-layout {
        flex-direction: column;
    }

    .services-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }

    .sticky-menu ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sticky-menu li {
        margin: 0;
    }

    .founder-card {
        flex-direction: column;
    }

    .founder-image {
        height: 400px;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .checkbox-group {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: var(--secondary-color);
        font-size: 1.2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        display: none;
        padding-left: 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .navbar.scrolled .mobile-toggle {
        color: var(--secondary-color);
    }

    .social-nav {
        display: none;
        /* Hide on mobile to save space, or move inside menu */
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .solutions-cards,
    .vm-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .assurance-card {
        padding: 40px 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .policy-links {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid,
    .posts-grid,
    .publications-grid {
        grid-template-columns: 1fr;
    }

    .event-media {
        height: 250px;
    }

    .post-content-wrapper {
        padding: 30px 20px;
    }

    .contact-info-block,
    .contact-form-block {
        padding: 40px 20px;
    }

    .contact-form-block .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 10px;
    }

    .newsletter-form input[type="email"] {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
    }

    .newsletter-form button {
        padding: 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Bas�nda Biz Lightbox Styles */
.post-img {
    position: relative;
    overflow: hidden;
}

.post-img img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}

.post-img:hover img {
    transform: scale(1.1);
}

.post-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-img:hover .post-img-overlay {
    opacity: 1;
}

.zoom-btn,
.link-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.zoom-btn:hover,
.link-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}


/* Post Header Visibility Fix */
.post-header h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5) !important;
}

.post-meta span {
    color: rgba(255, 255, 255, 0.9) !important;
}



/* Fix image overflow in post content */
.post-content-wrapper img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}


/* Responsive fixes for post content */
@media (max-width: 768px) {
    .post-content-wrapper {
        padding: 30px 20px;
        margin-top: -30px;
    }
}

@media (max-width: 480px) {
    .post-content-wrapper {
        padding: 20px 15px;
        margin-top: -20px;
    }
}


/* Social Share Button Colors */
.social-share a.facebook:hover {
    background: #3b5998 !important;
    color: #fff !important;
}

.social-share a.twitter:hover,
.social-share a.x-twitter:hover {
    background: #000 !important;
    color: #fff !important;
}

.social-share a.linkedin:hover {
    background: #0077b5 !important;
    color: #fff !important;
}

.social-share a.whatsapp:hover {
    background: #25d366 !important;
    color: #fff !important;
}


/* Logo size updates */
.badge-logo {
    height: 60px !important;
}

.tursab-logo-main {
    height: 120px !important;
}

/* ================= Career Quotes ================= */
.career-quotes {
    max-width: 900px;
    margin: 0 auto 60px;
}

.quote-box {
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    position: relative;
}

.quote-one {
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    text-align: left;
}

.quote-one .quote-tr {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-style: italic;
}

.quote-one .quote-en {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.quote-two {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.quote-two .quote-tr {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.quote-author {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.quote-one .quote-author {
    color: var(--primary-color);
}

.quote-two .quote-author {
    color: var(--primary-color);
}

.quote-icon-wrap {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 20px;
}

@media (max-width: 768px) {
    .quote-one .quote-tr, .quote-two .quote-tr {
        font-size: 1.5rem;
    }
    .quote-box {
        padding: 30px 20px;
    }
}