@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

body {
    font-family: "Cairo", sans-serif;
    background-color: #0b0f1a;
    color: #212529;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #0f172a;
}

.navbar.bg-body-tertiary {
    background-color: rgba(248, 249, 250, 0.96) !important;
    /* backdrop-filter: blur(8px); */
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    z-index: 1030 !important;
    position: sticky !important;
    top: 0 !important;
}

.navbar.bg-body-tertiary .dropdown-menu {
    position: absolute;
    z-index: 1050;
}

.navbar-brand span {
    letter-spacing: 0.4px;
    color: #0f172a;
}

.navbar-nav .nav-link {
    color: #1f2937;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #0d6efd;
}

.navbar {
    overflow: visible !important;
}

.navbar-collapse {
    overflow: visible !important;
}

.navbar-nav {
    overflow: visible !important;
}

.navbar .dropdown {
    position: relative;
    overflow: visible !important;
}

.navbar .dropdown-menu {
    min-width: 220px;
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    z-index: 1051 !important;
    position: absolute !important;
    overflow: visible !important;
    max-height: none !important;
    pointer-events: auto !important;
}

/* Light page header for inner pages */
.page-header-light {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.page-header-light .page-title {
    font-weight: 700;
    color: #222;
}
.page-header-light .breadcrumb {
    --bs-breadcrumb-divider-color: #6c757d;
    --bs-breadcrumb-item-active-color: #6c757d;
}

/* Products pages */
.products-page {
    background-color: #ffffff;
}
.product-card img {
    object-fit: cover;
    width: 100%;
    height: 260px;
}
.product-image-card img {
    object-fit: cover;
    width: 100%;
    max-height: 520px;
}
.product-content .product-title {
    font-weight: 700;
}
.product-content .product-description {
    line-height: 1.8;
}

.navbar .dropdown-item {
    border-radius: 0.65rem;
    padding: 0.6rem 0.75rem;
    pointer-events: auto !important;
    position: relative;
    z-index: 1052;
    display: block;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    pointer-events: auto !important;
}

.navbar .dropdown-menu li {
    pointer-events: auto !important;
    position: relative;
    z-index: 1053;
}

.navbar .dropdown-menu li a.dropdown-item {
    pointer-events: auto !important;
    position: relative;
    z-index: 1054;
}

.navbar .container,
.navbar .container-fluid {
    overflow: visible !important;
    position: relative;
}

.navbar .btn-primary {
    border-radius: 999px;
    font-weight: 600;
}

.social-links .icon-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.08);
    color: #1f2937;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.social-links .icon-link:hover {
    background-color: #0d6efd;
    color: #fff;
}

.social-links .nav-link {
    color: #0d6efd;
}

.hero-section {
    min-height: calc(80vh - 100px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding-top: 120px;
}

/* RTL direction - default */
[dir="rtl"] .hero-section {
    direction: rtl;
    text-align: right;
}

/* LTR direction */
[dir="ltr"] .hero-section {
    direction: ltr;
    text-align: left;
}

#bgVideo {
    position: absolute;
    top: 50%;
    right: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(50%, -50%);
    z-index: 0;
}

.overlay-dark {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.navbar,
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding-bottom: 120px;
    color: #fff;
}

/* RTL direction - align hero content to right (default) */
[dir="rtl"] .hero-content {
    justify-content: flex-end;
}

[dir="rtl"] .hero-content .container {
    text-align: right;
}

/* LTR direction - align hero content to left */
[dir="ltr"] .hero-content {
    justify-content: flex-start;
}

[dir="ltr"] .hero-content .container {
    text-align: left;
}

[dir="ltr"] .hero-content p {
    margin-inline-start: 0;
}

.hero-content h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.2;
}

.hero-content p {
    max-width: 520px;
    /* margin-inline-start: auto; */
    opacity: 0.9;
}

.text-intro {
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 10px 30px;
    font-size: 1rem;
}

#about {
    background: #fff;
}

#about h3 {
    font-weight: 700;
}

#about p {
    line-height: 1.8;
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.light_background {
    background-color: #f5f5f5;
}

.product-title {
    margin: 10px;
}

.product-link {
    text-decoration: none;
    color: #0f172a;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #0d6efd;
}

.product-card {
    border-radius: 20px;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.8s ease forwards;
    animation-play-state: paused;
}

.product-card.in-view {
    animation-play-state: running;
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.12);
}

.product-card:nth-of-type(1) {
    animation-delay: 0.1s;
}

.product-card:nth-of-type(2) {
    animation-delay: 0.25s;
}

.product-card:nth-of-type(3) {
    animation-delay: 0.4s;
}

#products .row > div:nth-child(1) .product-card {
    animation-delay: 0.1s;
}

#products .row > div:nth-child(2) .product-card {
    animation-delay: 0.25s;
}

#products .row > div:nth-child(3) .product-card {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating contact buttons */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-buttons .btn,
.floating-buttons-right .btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.floating-btn i {
    font-size: 1.2rem;
}

.floating-buttons-right {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-top-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #22c35e);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1fc25d, #1aa653);
}

.phone-btn {
    background: linear-gradient(135deg, #10b981, #0d9d6c);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #0ea271, #0a8a5d);
}

#quality {
    background-image: linear-gradient(to left, #29a2e8, #285f94);
}

.quality-title {
    font-size: 35px;
}

.quality-text {
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    font-size: 20px;
}

.sustainability-section {
    background-color: #f3f4f6;
}

.sustainability-image {
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

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

.sustainability-title {
    color: #0f172a;
    font-weight: 800;
}

.sustainability-subtitle {
    color: #0284c7;
    font-weight: 700;
    font-size: 1.5rem;
}

.sustainability-text {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 500;
}

.contact-section {
    background-image: linear-gradient(to left, #29a2e8, #285f94);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Form Card (for index.html) */
.contact-form-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
}

.contact-form-card .contact-title {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
}

.contact-form-card .form-label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-control-lg {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #1f2937;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-control-lg:focus {
    background-color: #ffffff;
    border-color: #0d6efd;
    color: #1f2937;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.contact-form-card .form-control::placeholder,
.contact-form-card .form-control-lg::placeholder {
    color: #9ca3af;
}

/* Contact Form (for dark background - contact.html) */
.contact-section .contact-form .form-control,
.contact-section .contact-form .form-control-lg {
    border-radius: 12px;
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    background-color: rgba(255, 255, 255, 0.1);
    color: #000000;
    transition: all 0.3s ease;
}

.contact-section .contact-form .form-control:focus,
.contact-section .contact-form .form-control-lg:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #0d6efd;
    color: #000000;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.contact-section .contact-form .form-control::placeholder,
.contact-section .contact-form .form-control-lg::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-section .contact-form .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-container iframe {
    border-radius: 12px;
}

.certificates-section {
    background-color: #f8fafc;
}

.certificates-section .section-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 2.2rem;
}

.certificates-section .section-subtitle {
    max-width: 600px;
    margin: 0.75rem auto 0;
    color: #4b5563;
    font-weight: 500;
}

.certificate-card {
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.certificate-img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-carousel .carousel-control-prev,
.certificate-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.85);
    top: 50%;
    transform: translateY(-50%);
}

.certificate-carousel .carousel-control-prev:hover,
.certificate-carousel .carousel-control-next:hover {
    background-color: rgba(13, 110, 253, 0.6);
}

.certificate-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(79, 86, 104, 0.35);
}

.certificate-carousel .carousel-indicators .active {
    background-color: #0d6efd;
}

@media (max-width: 992px) {
    .navbar.bg-body-tertiary {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .navbar-brand span {
        font-size: 0.95rem;
    }

    .navbar .btn-primary {
        width: 100%;
    }

    .certificate-card {
        border-radius: 16px;
    }

    .hero-content p.lead {
        margin-inline-start: 0;
    }

    .floating-buttons {
        left: 16px;
    }

    .floating-buttons-right {
        right: 16px;
    }

    .floating-buttons .btn,
    .floating-buttons-right .btn {
        width: 44px;
        height: 44px;
    }
}

/* footer */
footer {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 0 0;
}

footer .footer-top img {
    width: 300px;
    margin-bottom: 15px;
}

footer .footer-links a {
    color: #000;
    font-weight: 600;
    margin: 0 10px;
    text-decoration: none;
}

footer .footer-links a:hover {
    color: #007bff;
}

footer .contact-info {
    margin-top: 10px;
    font-size: 15px;
    color: #333;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 6px;
    border: 2px solid #2196f3;
    border-radius: 50%;
    color: #2196f3;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    background-color: #2196f3;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    background-color: #2196f3;
    color: #fff;
    padding: 10px 0;
    margin-top: 30px;
    font-size: 15px;
}

/* About Page Styles */
.about-page-header {
    position: relative;
    min-height: 300px;
    background-image: url("../images/about_section_3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.about-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-page-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
}

.about-content-section {
    background-color: #ffffff;
}

.about-section-title {
    color: #1f2937;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: start;
}

.about-section-text {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: start;
    font-weight: 500;
}

.about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    height: 350px;
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Facilities page specific - equal height images */
.facilities-content-section .about-image-wrapper {
    height: 350px;
}

.facilities-content-section .row.g-4 > div {
    display: flex;
}

.facilities-content-section .row.g-4 > div > .about-image-wrapper {
    width: 100%;
}

/* Facilities Page Specific Styles */
.facilities-page-header {
    background-image: url("../images/about_section_3.jpg");
}

/* FAQ Page Styles */
.faq-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    min-height: 60vh;
}

.faq-intro {
    margin-bottom: 3rem;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.accordion-flush .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.accordion-flush .accordion-item:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

.accordion-button {
    background-color: #ffffff;
    color: #1f2937;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.accordion-button:not(.collapsed) i {
    color: #ffffff;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-button i {
    color: #0d6efd;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    color: #ffffff;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f2937'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
    margin-inline-start: 0;
    margin-inline-end: auto;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    background-color: #f8f9fa;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 1.5rem 1.75rem;
    border-top: 1px solid #e5e7eb;
}

.accordion-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .accordion-body {
        font-size: 0.95rem;
        padding: 1.25rem 1.5rem;
    }
}

/* Media Gallery Styles */
.media-gallery-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    min-height: 60vh;
}

.media-gallery-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.media-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.media-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: #f1f5f9;
}

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

.media-gallery-item:hover .media-image-wrapper img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 110, 253, 0.8) 0%,
        rgba(10, 88, 202, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.media-overlay i {
    color: #ffffff;
    font-size: 3rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.media-gallery-item:hover .media-overlay i {
    transform: scale(1);
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: #1f2937;
}

.modal-body {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.modal-body img {
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.btn-close {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Modal Navigation Arrows */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.modal-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-nav-prev {
    right: 20px;
}

.modal-nav-next {
    left: 20px;
}

.modal-nav-btn i {
    color: #fff;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-nav-prev {
        right: 10px;
    }

    .modal-nav-next {
        left: 10px;
    }
}

/* Quality Page Styles */
.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-list-item {
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-inline-end: 4px solid #0d6efd;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.quality-list-item:hover {
    background-color: #e7f1ff;
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.quality-list-item i {
    color: #0d6efd;
    font-size: 1.1rem;
}

.quality-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    height: 400px;
}

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

.quality-standards-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    border: 1px solid #dee2e6;
}

.quality-standards-card h4 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.5rem;
}

.standard-item {
    padding: 0.75rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.standard-item:hover {
    background-color: #e7f1ff;
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.standard-item i {
    font-size: 1.2rem;
}

.standard-item strong {
    color: #0f172a;
    font-weight: 600;
}

/* Jobs Page Styles */
.jobs-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    min-height: 60vh;
}

.jobs-intro {
    margin-bottom: 3rem;
}

.jobs-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.jobs-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.jobs-form-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
}

.form-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.75rem;
    border-bottom: 3px solid #0d6efd;
    padding-bottom: 1rem;
}

.form-title i {
    color: #0d6efd;
}

.form-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-inline-end: 4px solid #0d6efd;
}

.section-title {
    color: #0f172a;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.section-title i {
    color: #0d6efd;
}

.form-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control-lg,
.form-select-lg {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
}

.form-control-lg:hover,
.form-select-lg:hover {
    border-color: #9ca3af;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-label {
    color: #4b5563;
    font-weight: 500;
}

.btn-primary {
    background: #285f94;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #29a2e8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

@media (max-width: 768px) {
    .jobs-main-title {
        font-size: 2rem;
    }

    .jobs-subtitle {
        font-size: 1rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .jobs-form-card {
        padding: 1.5rem !important;
    }

    .form-section {
        padding: 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    min-height: 60vh;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e5e7eb;
}

.contact-info-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.5rem;
    border-bottom: 3px solid #0d6efd;
    padding-bottom: 1rem;
}

.contact-info-title i {
    color: #0d6efd;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.contact-icon-wrapper i {
    color: #ffffff;
    font-size: 1.25rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: #1f2937;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #0d6efd;
}

.social-media-section h5 {
    color: #0f172a;
    font-weight: 600;
    font-size: 1.1rem;
}

.social-icons-contact {
    display: flex;
    gap: 1rem;
}

.social-icon-contact {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.social-icon-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
    color: #ffffff;
}

.contact-form-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
}

.map-container {
    border: 1px solid #e5e7eb;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .contact-icon-wrapper i {
        font-size: 1.1rem;
    }

    .contact-value {
        font-size: 0.95rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-form-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .media-image-wrapper {
        height: 250px;
    }

    .media-overlay i {
        font-size: 2.5rem;
    }

    .modal-body {
        min-height: 300px;
    }

    .quality-image-wrapper {
        height: 300px;
    }

    .quality-list-item {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .about-page-title {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 1.8rem;
    }

    .about-section-text {
        font-size: 1rem;
    }

    .about-image-wrapper {
        height: 280px;
    }

    .facilities-content-section .about-image-wrapper {
        height: 280px;
    }
}
