﻿
@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir.woff2') format('woff2'),
         url('../fonts/Vazir.woff') format('woff'),
         url('../fonts/Vazir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {

    --color-charcoal: #333333; 
    --color-dark-charcoal: #222222; 
    --color-gold: #D4AF37; 
    --color-light-gold: #E6C200; 
    --color-dark-gold: #B7950B; 
    --color-cream: #F5F5DC; 
    --color-light-cream: #FFF8E7; 

    --text-dark: var(--color-charcoal);
    --text-light: var(--color-light-cream);
    --text-gold: var(--color-gold);

    --btn-primary-bg: var(--color-gold);
    --btn-primary-text: var(--color-dark-charcoal);
    --btn-primary-hover: var(--color-light-gold);

    --bg-dark: var(--color-dark-charcoal);
    --bg-light: var(--color-light-cream);
    --bg-cream: var(--color-cream);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 12px rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Vazir', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);

    direction: rtl;
    text-align: right;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: var(--color-dark-gold);

    }

.top-bar {
    background-color: #333333;
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

    .top-bar span {
        margin-left: 15px;
        display: inline-flex;
        align-items: center;
    }

    .top-bar i {
        margin-left: 5px;
        color: var(--color-gold);
    }

.social-icons a {
    color: var(--color-gold);
    margin-right: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

    .social-icons a:hover {
        color: var(--color-light-gold);
        transform: translateY(-2px);
    }

.header {
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
    background-color: var(--bg-dark) !important;
    border-bottom: 2px solid var(--color-gold);
}

.navbar-brand .logo {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--color-gold) !important;
    }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 15px;
            left: 15px;
            height: 2px;
            background-color: var(--color-gold);
        }

.dropdown-menu {
    background-color: var(--bg-dark);
    border: none;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gold);
}

.dropdown-item {
    color: var(--text-light);
    padding: 8px 20px;
    transition: all 0.2s;
}

    .dropdown-item:hover {
        background-color: var(--color-gold);
        color: var(--color-dark-charcoal);
    }

.main-slider {
    margin-bottom: 30px;
}

.carousel-item {
    height: 100vh;
    min-height: 500px;
    position: relative;
}

    .carousel-item img, .carousel-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.85);
    }

    .carousel-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
        z-index: 1;
    }

.carousel-caption {
    position: absolute;
    bottom: 20%;
    right: 10%;
    left: 10%;
    z-index: 2;
    text-align: center;
    background: rgba(34,34,34,0.6);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--color-gold);
    animation: fadeInUp 1s ease;
}

    .carousel-caption h1 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--color-gold);
        text-shadow: 0 2px 10px rgba(0,0,0,0.6);
        margin-bottom: 20px;
    }

    .carousel-caption p {
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 25px;
    }

    .carousel-caption .btn {
        border-radius: 30px;
        font-weight: 600;
        padding: 12px 25px;
        background: var(--color-gold);
        color: var(--color-dark-charcoal);
        transition: all 0.3s ease;
    }

        .carousel-caption .btn:hover {
            background: var(--color-light-gold);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(212,175,55,0.4);
        }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) drop-shadow(0 0 5px var(--color-gold));
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 28px;

    color: #E6C200;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, var(--color-gold), var(--color-dark-gold));
        margin: 15px auto;
        border-radius: 3px;
    }

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

    .intro-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background-color: var(--color-gold);
        opacity: 0.1;
        border-radius: 50%;
        z-index: 0;
    }

    .intro-section .row {
        position: relative;
        z-index: 1;
    }

.featured-products {
    padding: 80px 0;
    background-color: #333333;
}

.product-card {
    background: var(--bg-cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-gold);
        border-color: var(--color-gold);
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, var(--color-gold), var(--color-dark-gold));
        opacity: 0;
        transition: all 0.3s;
    }

    .product-card:hover::before {
        opacity: 1;
    }

    .product-card img {
        border-radius: 5px;
        margin-bottom: 15px;
        transition: all 0.3s;
    }

    .product-card:hover img {
        transform: scale(1.03);
    }

    .product-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--color-dark-charcoal);
        position: relative;
        padding-bottom: 10px;
    }

        .product-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--color-gold);
            margin: 0 auto;
        }

.advantages {
    padding: 80px 0;
    background-color: var(--bg-cream);
    position: relative;
    z-index: 1;
}

    .advantages::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/gold-pattern.png');
        background-blend-mode: overlay;
        background-size: 300px;
        opacity: 0.05;
        z-index: -1;
    }

.advantage-box {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

    .advantage-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-gold);
    }

    .advantage-box i {
        font-size: 40px;
        color: var(--color-gold);
        margin-bottom: 20px;
        transition: all 0.3s;
    }

    .advantage-box:hover i {
        transform: scale(1.1);
        color: var(--color-dark-gold);
    }

    .advantage-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--color-dark-charcoal);
    }

.clients {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.client-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

    .client-logos img {
        max-width: 150px;
        margin: 15px;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s;
        padding: 15px;
    }

        .client-logos img:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }

.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 0 0; 
    border-top: 2px solid var(--color-gold);
    position: relative;
    font-size: 13px; 
    line-height: 1.5; 
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/gold-pattern-light.png');
        background-size: 300px;
        opacity: 0.05;
        pointer-events: none;
    }

.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 0 0;
    border-top: 2px solid var(--color-gold);
    position: relative;
    font-size: 13px;
    line-height: 1.6;
}

    .footer h3 {
        font-size: 15px;
        margin-bottom: 15px;
        color: var(--color-gold);
        position: relative;
        padding-bottom: 8px;
    }

        .footer h3::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: var(--color-gold);
            position: absolute;
            bottom: 0;
            right: 0;
        }

    .footer ul li {
        margin-bottom: 6px;
        font-size: 12.5px;
    }

        .footer ul li a {
            color: var(--text-light);
            transition: all 0.3s;
        }

            .footer ul li a:hover {
                color: var(--color-gold);
                padding-right: 5px;
            }

.contact-info i {
    color: var(--color-gold);
    margin-left: 8px;
}

.copyright {
    background-color: var(--color-charcoal);
    border-top: 1px solid rgba(212,175,55,0.2);
    font-size: 12.5px;
}

.powered-by {
    font-size: 12px;
    color: var(--color-light-cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .powered-by:hover {
        color: var(--color-gold);
    }

.powered-logo {
    height: 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.powered-by:hover .powered-logo {
    opacity: 1;
    transform: scale(1.05);
}

.page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

    .page-container h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #222222;
    }

.btn {
    padding: 10px 20px;
    background-color: #c41325;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #0d8e81;
    }

.gridview a.btn,
.btn-view {
    background-color: #fff;
    color: #003B5C;
    border: 1px solid #003B5C;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

    .gridview a.btn:hover,
    .btn-view:hover {
        background-color: #003B5C;
        color: #fff;
    }

.btn-delete {
    background-color: #f44336;
    color: #fff;
    border: none;
}

    .btn-delete:hover {
        background-color: #d32f2f;
    }

.table-container {
    width: 100%;
    overflow-x: auto;
}

.gridview {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

    .gridview th, .gridview td {
        padding: 12px;
        text-align: right;
        border-bottom: 1px solid #eee;
        white-space: nowrap;
    }

    .gridview th {
        background-color: #e0e0e0;
        color: #003B5C;
        font-weight: bold;
    }

    .gridview tr:hover {
        background-color: #f9f9f9;
    }

    .gridview a {
        color: #222222;
        text-decoration: none;
    }

        .gridview a:hover {
            text-decoration: underline;
        }

.status-unread {
    color: red;
    font-weight: bold;
}

.status-read {
    color: green;
    font-weight: normal;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-gold);
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        transition: all 0.5s;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--color-dark-charcoal);
    font-size: 30px;
    background-color: var(--color-light-cream);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background-color: #003B5C;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .btn-cta:hover {
        background-color: #005a85;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Vazir', sans-serif;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .activities-section {
        padding: 80px 20px;
        background-color: #f4f4f4;
        text-align: center;
    }

        .activities-section h2 {
            font-size: 2.5rem;
            color: #222222;
            margin-bottom: 50px;
        }

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.gold-effect {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.gold-border {
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--color-gold), var(--color-light-gold));
    color: var(--color-dark-charcoal);
}

.gold-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.pulse-effect {
    animation: goldPulse 2s infinite;
}

.shine-text {
    background: linear-gradient(to right, var(--color-gold), var(--color-light-cream), var(--color-gold));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    animation: shine 3s linear infinite;
}

@media (max-width: 991.98px) {
    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        bottom: 50px;
        padding: 20px;
    }

        .carousel-caption h1 {
            font-size: 32px;
        }

    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: 350px;
    }

    .carousel-caption {
        bottom: 30px;
        padding: 15px;
    }

        .carousel-caption h1 {
            font-size: 26px;
            margin-bottom: 10px;
        }

        .carousel-caption p {
            font-size: 16px;
            margin-bottom: 15px;
        }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

        .newsletter-form input {
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .newsletter-form button {
            border-radius: 4px;
            padding: 12px;
        }
}

@media (max-width: 575.98px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        bottom: 20px;
        padding: 10px;
    }

        .carousel-caption h1 {
            font-size: 22px;
        }

        .carousel-caption .btn {
            padding: 8px 15px;
            font-size: 14px;
        }

    .section-title {
        font-size: 22px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95), rgba(34, 34, 34, 0.98)) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    transition: all 0.3s;
}

    .logo:hover {
        animation: rotate-center 0.5s linear;
    }

@keyframes rotate-center {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.brand-name {
    font-weight: 700;
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.navbar-nav {
    gap: 5px;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: #eee !important;
    font-weight: 500;
    padding: 10px 15px !important;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    position: relative;
}

    .nav-link i {
        margin-left: 8px;
        font-size: 1.1rem;
    }

.nav-hover {
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s;
}

.nav-link:hover .nav-hover,
.nav-link.active .nav-hover {
    width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold) !important;
}

.mega-menu {
    position: static !important;
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    width: 100%;
    left: 0;
    right: 0;
    background: rgba(40, 40, 40, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mega-menu-item {
    padding: 20px;
    transition: all 0.3s;
    height: 100%;
}

    .mega-menu-item:hover {
        background: rgba(212, 175, 55, 0.05);
    }

    .mega-menu-item a {
        color: #fff;
        text-decoration: none;
    }

.mega-menu-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--color-gold);
    font-size: 1.3rem;
}

.mega-menu-item h5 {
    color: var(--color-gold);
    margin-bottom: 10px;
}

.mega-menu-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.cta-button {
    background: var(--color-gold);
    color: #222 !important;
    border-radius: 4px;
    margin-right: 10px;
    font-weight: 600 !important;
}

    .cta-button:hover {
        background: var(--color-light-gold) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

.header-extra {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.search-box {
    position: relative;
    margin-left: 20px;
}

.search-input {
    width: 0;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 20px;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.search-box.active .search-input {
    width: 200px;
    padding: 8px 15px 8px 35px;
    opacity: 1;
    visibility: visible;
}

.search-btn {
    background: transparent;
    border: none;
    color: #eee;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.language-switcher {
    color: #eee;
    font-size: 0.9rem;
}

    .language-switcher a {
        color: #eee;
        text-decoration: none;
        transition: all 0.3s;
    }

        .language-switcher a.active {
            color: var(--color-gold);
            font-weight: 600;
        }

        .language-switcher a:hover {
            color: var(--color-gold);
        }

.animated-toggler {
    width: 25px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

    .animated-toggler span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #eee;
        border-radius: 2px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.3s;
    }

        .animated-toggler span:nth-child(1) {
            top: 0;
        }

        .animated-toggler span:nth-child(2),
        .animated-toggler span:nth-child(3) {
            top: 9px;
        }

        .animated-toggler span:nth-child(4) {
            top: 18px;
        }

.navbar-toggler[aria-expanded="true"] .animated-toggler span:nth-child(1),
.navbar-toggler[aria-expanded="true"] .animated-toggler span:nth-child(4) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .animated-toggler span:nth-child(2) {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .animated-toggler span:nth-child(3) {
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    .navbar-nav {
        padding: 15px 0;
    }

    .nav-item {
        margin: 5px 0;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: rgba(30, 30, 30, 0.9);
    }

    .header-extra {
        margin: 15px 0;
        justify-content: center;
    }

    .cta-button {
        margin: 10px 0;
    }
}

[data-aos] {
    transition: all 0.5s ease-out;
}

.aos-init:not(.aos-animate) {
    opacity: 0;
    transform: translateY(20px);
}

.aos-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card-body {
    margin-top: 70px;
}

.contact-box {
    max-width: 600px;
    margin: 120px auto; 
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

    .contact-box h2 {
        text-align: center;
        margin-bottom: 25px;
        color: #333;
    }

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #0078D7;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-submit:hover {
        background-color: #005fa3;
    }

.message-label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.form-group .g-recaptcha {
    display: flex;
    justify-content: center;
}

.breadcrumb {
    background-color: var(--bg-cream);
    padding: 15px 0;
    margin-bottom: 30px;
}

    .breadcrumb ol {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .breadcrumb li {
        margin-left: 10px;
    }

        .breadcrumb li:not(:last-child)::after {
            content: "/";
            margin-right: 10px;
            color: var(--color-gold);
        }

.activity-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

    .activity-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-gold);
    }

.activity-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-gold);
    font-size: 24px;
}

.activity-title {
    color: var(--color-dark-charcoal);
    margin-bottom: 15px;
    font-size: 20px;
}

.location-badge {
    background: var(--color-gold);
    color: var(--color-dark-charcoal);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

.steel-process {
    background: var(--bg-cream);
    padding: 50px 0;
    margin-top: 50px;
    border-radius: 12px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.process-step {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    border-left: 4px solid var(--color-gold);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-dark-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.social-responsibility {
    background: var(--bg-light);
    padding: 80px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-cream);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--color-dark-charcoal);
    font-size: 16px;
}

.gallery-hero {
    background: linear-gradient(135deg, var(--color-dark-charcoal), var(--color-charcoal));
    padding: 100px 0;
    text-align: center;
    color: var(--text-light);
    margin-top: 76px;
}

.gallery-filters {
    padding: 40px 0;
    background-color: var(--bg-cream);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-dark-charcoal);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .filter-btn:hover, .filter-btn.active {
        background: var(--color-gold);
        color: var(--color-dark-charcoal);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

.gallery-main {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-gold);
    }

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(34, 34, 34, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h3 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 8px;
}

.gallery-content p {
    color: var(--color-light-gold);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-actions {
    display: flex;
    gap: 10px;
}

.gallery-action-btn {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-dark-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .gallery-action-btn:hover {
        background: var(--color-light-gold);
        transform: scale(1.1);
    }

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 25px;
    background: var(--color-gold);
    color: var(--color-dark-charcoal);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pagination-btn:hover {
        background: var(--color-light-gold);
        transform: translateY(-2px);
    }

    .pagination-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
    }

.page-info {
    color: var(--color-dark-charcoal);
    font-weight: 500;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    display: block;
    margin: 60px auto;
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .close-modal:hover {
        color: var(--color-gold);
    }

#modalCaption {
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-item {
    animation: fadeIn 0.5s ease forwards;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-card {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 80px 0;
        margin-top: 70px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .gallery-content h3 {
        font-size: 16px;
    }

    .gallery-content p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-pagination {
        flex-direction: column;
        gap: 15px;
    }

    .modal-content {
        max-width: 95%;
        margin: 100px auto 20px;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.products-hero {
    background: linear-gradient(135deg, var(--color-dark-charcoal), var(--color-charcoal));
    padding: 100px 0;
    text-align: center;
    color: var(--text-light);
    margin-top: 76px;
}
.video-slide {
    height: 100vh;              
    object-fit: cover;          
    object-position: center;    
}

@media (max-width: 768px) {
    .video-slide {
        height: 250px;          
        object-fit: cover;
        object-position: center;
    }
}

.nav-tabs .nav-link {
    color: black !important;
}

.nav-tabs .nav-link.active {
    color: #0d6efd !important; 
}

.grid-actions .btn {
    display: inline-block !important;
}

.hero-section {
    position: relative;
    background: url('/images/iron-ore-banner.jpg') center no-repeat;
    min-height: 400px;
    color: #fff;
}

    .hero-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5); 
    }

    .hero-section .content {
        position: relative;
        z-index: 2;
    }

    .hero-section h1 {
        font-size: 2.8rem;
        font-weight: bold;
        color: #f8f9fa;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    .hero-section .btn {
        font-size: 1.1rem;
        padding: 12px 30px;
        border-radius: 30px;
    }

.advantages {
    padding: 80px 0;
    background: url('../images/activity-bg.jpg') center/cover no-repeat;
    position: relative;
}

    .advantages .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.6);
        z-index: 0;
    }

.advantage-box {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(212,175,55,0.2);
    position: relative;
    z-index: 1;
}

    .advantage-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-gold);
        border-color: var(--color-gold);
    }

    .advantage-box i {
        font-size: 40px;
        color: var(--color-gold);
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .advantage-box:hover i {
        transform: scale(1.1);
        color: var(--color-dark-gold);
    }

    .advantage-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--color-dark-charcoal);
        font-weight: bold;
    }

    .advantage-box p {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
    }

.location-badge {
    display: inline-block;
    margin-top: 15px;
    background: var(--color-gold);
    color: var(--color-dark-charcoal);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

    .location-badge:hover {
        background: var(--color-light-gold);
        transform: translateY(-2px);
    }

    .page-hero {
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    max-height: 200px;
    padding: 200px 0;
    color: white;
    text-align: center;
    overflow: hidden;
} .page-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
        z-index: 1;
    } .page-hero .container {
        position: relative;
        z-index: 2;
    } .page-hero h1 {
        font-weight: 800;
        margin-bottom: 25px;
        font-size: 3.5rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 0 30px rgba(0, 100, 255, 0.3);
        animation: fadeInDown 0.8s ease-out;
    } .page-hero .lead {
        font-size: 1.5rem;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto 40px;
        text-shadow: 0 1px 5px rgba(0,0,0,0.7);
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .about-hero {
    background-image: url('../images/About-banner.jpg');
} .services-hero {
    background-image: url('../images/Services-banner.jpg');
} .Login-hero {
    background-image: url('../images/Login-banner.jpg');
} .contact-hero {
    background-image: url('../images/Contact-banner.jpg');
} .Gallery-hero {
    background-image: url('../images/Gallery-banner.jpg');
} .messages-hero {
    background-image: url('../images/Messages-banner.jpg');
}

    @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);
    }
}

    .login-hero {
    position: relative;
    min-height: 300px;
    background: url('../images/login-bg.jpg') center/cover no-repeat;
    color: #fff;
} .login-hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.6);
    }

    .login-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} .login-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .text-gold {
    color: var(--color-gold);
} .btn-gold {
    background: var(--color-gold);
    color: var(--color-dark-charcoal);
    font-weight: bold;
    transition: all 0.3s ease;
} .btn-gold:hover {
        background: var(--color-light-gold);
        color: #000;
    }

    .contact-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    } .info-card:hover, .map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

    .text-gold {
    color: var(--color-gold);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-dark-charcoal);
    font-weight: bold;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        background: var(--color-light-gold);
        color: #000;
    }

		media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
        margin-top: 70px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-card {
        margin-bottom: 20px;
    }

