/* ========================================
   GLOBAL SUPPLYING TRADING COMPANY
   Main Stylesheet (style.css)
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary-color: #0A1931;
    --secondary-color: #FFD700;
    /*--secondary-color: red;*/
    --bg-light: #F8F9FA;
    --text-dark: #212529;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255,215,0,0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
}

.contact-info-box h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-left: 1rem;
    margin-top: 0.2rem;
    min-width: 30px;
}

.contact-info-item div h5 {
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-info-item div p {
    margin: 0;
    opacity: 0.9;
}

/* ========== STATS ========== */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-top: 0.5rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
    /*background: var(--primary-color);*/
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-section .btn {
    /*background: #fff;*/
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 35px;
    border-radius: 50px;
}
/*
.cta-section {
    background: var(--primary-color);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.cta-section .btn {
    background: #fff;
    color: var(--primary-color);
    padding: 10px 35px;
    border-radius: 50px;
}
*/

/* ========== VALUE BOXES ========== */
.value-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

.value-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.value-box h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-box p {
    color: #666;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: var(--secondary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-left: 0.5rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
    .hero-section h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .hero-section p,
    .page-header p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .timeline::before {
        right: 20px;
    }

    .timeline-content {
        width: 100% !important;
        margin-left: 40px !important;
        margin-right: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 40px !important;
        margin-right: 0 !important;
    }

    .contact-info-box {
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .btn-contact {
        margin-top: 1rem;
    }
} 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body[dir="ltr"] {
    font-family: 'Poppins', sans-serif;
}

/* ========== NAVBAR STYLES ========== */
.navbar {
    /*background-color: var(--primary-color);*/
    /*background-color: #1a3a52;*/
    /*background-color: var(--secondary-color);*/
    background-color: white;
    box-shadow: var(--shadow-md);
    /*padding: 1rem 0;*/
    padding: 0 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.3rem;
}

.navbar-brand img{
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    /*color: rgba(255,255,255,0.85) !important;*/
    color: rgba(30,30,30,0.85) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    /*color: var(--primary-color) !important;*/
}

.navbar-toggler {
    background-color: var(--secondary-color);
    border: none;
}

/*.btn-contact {*/
/*    background: #fff;*/
    /*color: var(--primary-color);*/
/*    padding: 10px 35px;*/
/*    border-radius: 50px;*/

    /*background-color: var(--secondary-color);*/
/*    color: var(--primary-color);*/
/*    font-weight: 600;*/
    /*padding: 0.5rem 1.5rem;*/
    /*border-radius: 25px;*/
/*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*    border: none;*/
/*}*/

.btn-contact {
    /*background: #fff;*/
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 35px;
    border-radius: 50px;
}
/*
/*.btn-contact:hover {*/
/*    transform: translateY(-2px);*/
    /*box-shadow: var(--shadow-lg);*/
    /*color: var(--primary-color);*/
/*    background-color: var(--secondary-color);*/
/*}*/

.lang-switcher {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.lang-switcher:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* ========== HERO SECTION ========== */
/*.hero-section {
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.6) 0%, rgba(26, 58, 82, 0.6) 100%), 
                url('files/hero-bg.jpg') center/cover no-repeat fixed;
    color: white;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}
*/

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
    background-color: #1a3a52;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" x="0" y="0" fill="rgba(255,215,0,0.1)"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /*text-shadow: 3px 3px 6px rgba(0,0,0,0.7),*/
    /*             -1px -1px 2px rgba(0,0,0,0.5),*/
    /*             0 0 20px rgba(10, 25, 49, 0.8);*/
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    /*opacity: 0.95;*/
    /*text-shadow: 2px 2px 5px rgba(0,0,0,0.8),*/
                 /*0 0 15px rgba(10, 25, 49, 0.7);*/
    /*background: rgba(10, 25, 49, 0.3);*/
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    z-index: 2;
}

.hero-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.4);*/
    z-index: 333;
}

.hero-btn:hover {
    transform: translateY(-3px);
    /*box-shadow: 0 10px 25px rgba(255,215,0,0.6);*/
    color: var(--primary-color);
    z-index: 333;

}
/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" x="0" y="0" fill="rgba(255,215,0,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ========== CONTENT SECTION ========== */
.content-section {
    padding: 80px 0;
    /* max-height: calc(100vh); /* 100 to take the all of the screen and 72 is the height of the navbar */*/
}

.content-section.bg-light {
    background-color: var(--bg-light);
}

/* ========== SECTION TITLE ========== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* ========== SERVICE CARD ========== */
.service-card {
    /*background: white;*/
    /*border-radius: 15px;*/
    padding: 1rem;
    text-align: center;
    /*transition: all 0.3s ease;*/
    /*box-shadow: var(--shadow-sm);*/
    /*height: 100%;*/
    /*border: 2px solid transparent;*/
}

.service-card:hover {
    transform: translateY(-10px);
    /*box-shadow: var(--shadow-lg);*/
    /*border-color: var(--secondary-color);*/
}

.service-icon {
    width: 80px;
    height: 80px;
/*    background: linear-gradient(135deg, var(--primary-color), #1a3a52);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin: 0 auto 1.5rem;*/
    margin: 0 auto 0.1rem;
/*    color: var(--secondary-color);*/
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    /*background: var(--secondary-color);*/
    color: var(--primary-color);
    transform: rotate(360deg);
}

.service-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== INFO CARD ========== */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border-right: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(-5px);
}

/*.info-card:hover {*/
/*    box-shadow: var(--shadow-md);*/
/*    transform: translateX(-5px);*/
/*}*/

.info-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.info-card ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 55%;
}

.timeline-year {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

/* ========== CLIENT LOGO ========== */
.client-logo {
    height: 160px;
    width: 160px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
    padding: 1rem;
}

.client-logo:hover {
    transform: scale(1.02);
}

/*.client-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}*/

.client-logo img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo-ar {
    height: 260px;
    width: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
    padding: 1rem;
}

.client-logo-ar:hover {
    transform: scale(1.02);
}

.client-logo-ar img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ========== PRODUCT CARD ========== */
.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card ul {
    text-align: right;
    list-style: none;
    padding: 0;
}

.product-card ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.product-card ul li:last-child {
    border-bottom: none;
}

.product-card ul li i {
    color: var(--secondary-color);
    margin-left: 0.5rem;
}

/* ========== CONTACT FORM ========== */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family:

/*  Infinity scroll  */
.logo-track-container {
    overflow: hidden;
    margin-top: 2rem;
    padding: 1rem 0;
}

.logo-track{
    display: flex;
    /*animation: scroll-x 16s linear infinite;
    animation-play-state: running;*/
}
.logo-slide{
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
}
.client-logo-wrapper{
    flex-shrink: 0;
    width: 250px;
    padding: 0 1rem;
}
/*@keyframes scroll-x{
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}
.logo-track:hover{
    animation-play-state: paused;
}*/




