
img{
    max-width:100%;
}



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



body{
    font-family:'Cairo',sans-serif;
    background:#f7f9fc;
}



.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}



.top-bar{
    background:#003f9f;
    color:#fff;
    padding:12px 0;
    font-size:14px;
}



.top-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}



.top-info{
    display:flex;
    gap:30px;
}



.top-info span{
    display:flex;
    align-items:center;
    gap:8px;
}



.top-social{
    display:flex;
    gap:20px;
}



.top-social a{
    color:#fff;
    font-size:18px;
    transition:.3s;
}



.top-social a:hover{
    opacity:.8;
}



.main-header{
    background:#fff;
    padding:25px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}



/*=========================
  Header Layout
=========================*/
.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/*=========================
  Features UI Accent
=========================*/
.feature-icon {
    width: 70px;
    height: 70px;
    background: #eef4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #0048c8;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 72, 200, 0.05);
}

.feature-item:hover .feature-icon {
    background: #0048c8;
    color: #fff;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 25px rgba(0, 72, 200, 0.22);
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

/*=========================
  Language Switcher Dropdown
=========================*/
.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.lang-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(238, 244, 255, 0.85);
    border: 1px solid rgba(0, 63, 159, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    color: #003f9f;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.lang-dropdown-trigger i.arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-dropdown-trigger:hover,
.lang-dropdown-wrapper:hover .lang-dropdown-trigger {
    background: #003f9f;
    color: #fff;
    border-color: #003f9f;
    box-shadow: 0 4px 12px rgba(0, 63, 159, 0.2);
}

.lang-dropdown-wrapper:hover .lang-dropdown-trigger i.arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    min-width: 150px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    list-style: none;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Position dropdown correctly for LTR / RTL pages */
html[dir="rtl"] .lang-dropdown-menu {
    right: auto;
    left: 0;
}

.lang-dropdown-wrapper:hover .lang-dropdown-menu,
.lang-dropdown-wrapper:focus-within .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu li {
    margin: 0;
}

.lang-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
}

html[dir="rtl"] .lang-dropdown-menu a {
    text-align: right;
}

.lang-dropdown-menu a:hover,
.lang-dropdown-menu a.active {
    background: #f0f5ff;
    color: #003f9f;
}

.logo-box img{
    width:90px;
}



.logo-text h2{
    color:#003f9f;
    font-size:34px;
    margin:0;
    font-weight:700;
}



.logo-text span{
    color:#666;
    font-size:14px;
}



.main-nav{
    display:flex;
    gap:35px;
}



.main-nav a{
    color:#333;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}



.main-nav a:hover,
.main-nav .active{
    color:#0048c8;
}



.search-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    color:#0048c8;
    cursor:pointer;
}




.hero{
    background:linear-gradient(90deg,#f7fbff,#edf4ff);
    padding:80px 0 140px;
}



.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}



.hero-content{
    flex:1;
}



.hero-badge{
    background:#fff;
    padding:10px 25px;
    border-radius:30px;
    color:#0048c8;
    font-weight:700;
    display:inline-block;
    margin-bottom:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}



.hero h1{
    font-size:72px;
    line-height:1.3;
    color:#0048c8;
    font-weight:800;
    margin-bottom:30px;
}



.hero p{
    font-size:24px;
    color:#666;
    line-height:2;
    margin-bottom:40px;
}



.hero-buttons{
    display:flex;
    gap:20px;
}



.btn-main{
    background:#0048c8;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}



.btn-main:hover{
    background:#00379d;
    color:#fff;
}



.btn-outline{
    border:2px solid #0048c8;
    color:#0048c8;
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}



.btn-outline:hover{
    background:#0048c8;
    color:#fff;
}



.features{
    margin-top:-70px;
    position:relative;
    z-index:100;
    margin-bottom:80px;
}



.features-box{
    background:#fff;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    display:flex;
    justify-content:space-between;
    padding:45px 30px;
    gap:20px;
}



.feature-item{
    flex:1;
    text-align:center;
    padding:20px;
    transition:.3s;
}



.feature-item:hover{
    transform:translateY(-10px);
}



.feature-item h3{
    color:#003f9f;
    font-size:24px;
    margin-bottom:15px;
}



.feature-item p{
    color:#666;
    line-height:1.8;
}



.partners{
    padding:90px 0;
    background:#f8fbff;
}



.section-header{
    text-align:center;
    margin-bottom:50px;
}



.section-header span{
    color:#0057d8;
    font-weight:700;
}



.section-header h2{
    font-size:42px;
    color:#003f9f;
    margin:15px 0;
}



.section-header p{
    color:#777;
    font-size:18px;
}



.partner-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    display:block;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}



.partner-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}



.partner-card img{
    width:100%;
    height:130px;
    object-fit:contain;
    margin-bottom:20px;
}



.partner-card h3{
    color:#003f9f;
    font-size:20px;
    margin:0;
}



.companiesSwiper{
    padding-bottom:20px;
}




.latest-products{
    padding:100px 0;
    background:#ffffff;
}



.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}



.product-item{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}



.product-item:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}



.product-btn{
    display:inline-block;
    background:#0057d8;
    color:#fff;
    padding:12px 30px;
    border-radius:40px;
    text-decoration:none;
    margin-top:20px;
    transition:.3s;
}



.product-btn:hover{
    background:#003f9f;
    color:#fff;
}





.about-home{
    padding:100px 0;
    background:#ffffff;
}



.about-container{
    display:flex;
    align-items:center;
    gap:70px;
}



.about-stats{
    display:flex;
    gap:25px;
    margin-bottom:40px;
}



.stat-box{
    background:#f5f8ff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    min-width:120px;
}



.stat-box h3{
    color:#0057d8;
    font-size:38px;
    margin:0;
}



.stat-box span{
    color:#666;
}



.page-banner p{
    opacity:.9;
}




.page-banner{
    background:linear-gradient(135deg,#0047c3,#0077ff);
    padding:90px 0;
    text-align:center;
    color:#fff;
}



.page-banner h1{
    font-size:50px;
    margin-bottom:15px;
}



.about-page{
    padding:100px 0;
}



.about-grid{
    display:flex;
    align-items:center;
    gap:60px;
}



.about-image{
    flex:1;
}



.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}



.about-content{
    flex:1;
}



.about-subtitle{
    color:#0057d8;
    font-weight:700;
}



.about-content h2{
    color:#003f9f;
    font-size:40px;
    margin:20px 0;
}



.about-content p{
    color:#666;
    line-height:2;
}



.about-box{
    background:#f5f8ff;
    padding:25px;
    border-radius:20px;
    margin-top:20px;
}



.about-box h3{
    color:#003f9f;
    margin-bottom:15px;
}



.values-section{
    padding:80px 0;
    background:#f7f9fc;
}



.values-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:50px;
}



.value-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}



.value-card:hover{
    transform:translateY(-10px);
}



.value-card h3{
    color:#003f9f;
}



.company-details{
    flex:1;
}



.company-details h2{
    color:#003f9f;
    font-size:42px;
    margin-bottom:20px;
}



.company-details p{
    color:#666;
    line-height:2;
    font-size:18px;
}



.company-products{
    padding:60px 0 100px;
    background:#f7f9fc;
}



.empty-products{
    text-align:center;
    background:#fff;
    padding:50px;
    border-radius:20px;
    color:#666;
}




.company-section{
    padding:70px 0;
    background:#fff;
}



.company-header{
    display:flex;
    align-items:center;
    gap:50px;
}



.company-logo{
    width:220px;
    height:180px;
    background:#fff;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}



.company-logo img{
    max-width:100%;
    max-height:120px;
    object-fit:contain;
}



.company-info{
    flex:1;
}



.company-info h2{
    color:#003f9f;
    font-size:42px;
    margin-bottom:20px;
}



.company-info p{
    color:#666;
    line-height:2;
}



.products-section{
    padding:80px 0;
    background:#f7f9fc;
}



.company-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}



.product-card-new{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}



.product-card-new:hover{
    transform:translateY(-10px);
}



.product-image{
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
    background:#fff;
}



.product-image img{
    max-width:100%;
    max-height:200px;
    object-fit:contain;
}



.product-content{
    padding:25px;
    text-align:center;
}



.product-content h3{
    color:#003f9f;
    margin-bottom:15px;
}



.product-content p{
    color:#666;
    line-height:1.8;
    min-height:70px;
}



.empty-box{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
}




.products-page{
    padding:80px 0;
    background:#f7f9fc;
}



.products-page-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}



.product-page-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}



.product-page-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}



.product-page-image{
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    background:#fff;
}



.product-page-image img{
    max-width:100%;
    max-height:180px;
    object-fit:contain;
}



.product-page-content{
    padding:25px;
    text-align:center;
}



.product-page-content h3{
    color:#003f9f;
    font-size:22px;
    margin-bottom:15px;
}



.product-page-content p{
    color:#666;
    line-height:1.8;
    min-height:60px;
}



.product-page-btn{
    display:inline-block;
    background:#0057d8;
    color:#fff;
    text-decoration:none;
    padding:12px 30px;
    border-radius:30px;
    margin-top:15px;
    transition:.3s;
}



.product-page-btn:hover{
    background:#003f9f;
    color:#fff;
}




.news-page{
    padding:80px 0;
    background:#f7f9fc;
}



.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}



.news-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}



.news-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}



.news-image{
    height:240px;
    overflow:hidden;
}



.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}



.news-content{
    padding:25px;
}



.news-content h3{
    color:#003f9f;
    margin-bottom:15px;
    font-size:24px;
}



.news-content p{
    color:#666;
    line-height:1.8;
    min-height:80px;
}



.news-btn{
    display:inline-block;
    background:#0057d8;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    margin-top:15px;
    transition:.3s;
}



.news-btn:hover{
    background:#003f9f;
    color:#fff;
}




.article-page{
    padding:80px 0;
    background:#f7f9fc;
}



.article-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}



.article-main{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}



.article-date{
    padding:25px 30px 0;
    color:#777;
    font-size:14px;
}



.article-image img{
    width:100%;
    max-height:500px;
    object-fit:cover;
}



.article-content-box{
    padding:40px;
    line-height:2.2;
    color:#444;
    font-size:18px;
}



.article-sidebar{
    align-self:start;
}



.sidebar-box{
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}



.sidebar-box h3{
    color:#003f9f;
    margin-bottom:25px;
}



.sidebar-link{
    display:block;
    padding:15px 0;
    border-bottom:1px solid #eee;
    color:#333;
    text-decoration:none;
    transition:.3s;
}



.sidebar-link:hover{
    color:#0057d8;
    padding-right:10px;
}



.sidebar-link:last-child{
    border-bottom:none;
}




.branches-page{
    padding:80px 0;
    background:#f7f9fc;
}



.branches-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}



.branch-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}



.branch-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}



.branch-image{
    height:240px;
    overflow:hidden;
}



.branch-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}



.branch-content{
    padding:25px;
}



.branch-content h3{
    color:#003f9f;
    margin-bottom:20px;
    font-size:24px;
}



.branch-info{
    margin-bottom:15px;
    color:#555;
    line-height:1.8;
}



.branch-info strong{
    color:#0057d8;
}



.contact-page{
    padding:80px 0;
    background:#f7f9fc;
}



.contact-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}



.contact-form-box,
.contact-info-box{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}



.contact-form-box h2,
.contact-info-box h2{
    color:#003f9f;
    margin-bottom:30px;
}



.form-group-new{
    margin-bottom:25px;
}



.form-group-new label{
    display:block;
    margin-bottom:10px;
    color:#555;
    font-weight:600;
}



.form-group-new input,
.form-group-new textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:15px;
    padding:15px;
    font-family:'Cairo',sans-serif;
    font-size:16px;
}



.form-group-new input:focus,
.form-group-new textarea:focus{
    outline:none;
    border-color:#0057d8;
}



.contact-btn{
    background:#0057d8;
    color:#fff;
    border:none;
    padding:15px 40px;
    border-radius:30px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}



.contact-btn:hover{
    background:#003f9f;
}



.contact-info-item{
    margin-bottom:30px;
}



.contact-info-item strong{
    display:block;
    color:#0057d8;
    margin-bottom:10px;
}



.contact-info-item span{
    color:#555;
}



.message-success{
    background:#d4edda;
    color:#155724;
    padding:20px;
    border-radius:15px;
    margin-bottom:30px;
}



.message-error{
    background:#f8d7da;
    color:#721c24;
    padding:20px;
    border-radius:15px;
    margin-bottom:30px;
}



.product-page{
    padding:80px 0;
    background:#f7f9fc;
}



.product-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}



.product-image-box{
    display:flex;
    justify-content:center;
    align-items:center;
}



.product-image-box img{
    max-width:100%;
    max-height:500px;
    object-fit:contain;
}



.product-details{
    display:flex;
    flex-direction:column;
    justify-content:center;
}



.product-company{
    color:#0057d8;
    font-weight:700;
    margin-bottom:15px;
}



.product-details h2{
    color:#003f9f;
    font-size:42px;
    margin-bottom:30px;
}



.product-description{
    color:#555;
    line-height:2.2;
    font-size:18px;
    margin-bottom:40px;
}



.brochure-btn,
.back-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    margin-left:15px;
    margin-bottom:15px;
}



.brochure-btn{
    background:#0057d8;
    color:#fff;
}



.back-btn{
    background:#f2f5fb;
    color:#003f9f;
}



.brochure-btn:hover{
    background:#003f9f;
}



.back-btn:hover{
    background:#dde8ff;
}



.feature-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef3ff;
    display:flex;
    align-items:center;
    justify-content:center;
}



.feature-icon i{
    font-size:32px;
    color:#0d5be1;
    display:block;
    line-height:1;
}


.footer{
    background:#0047c3;
    color:#fff;
    padding:60px 0;
    margin-top:80px;
}



.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}



.footer h3,
.footer h4{
    margin-bottom:20px;
}



.footer ul{
    list-style:none;
    padding:0;
}



.footer ul li{
    margin-bottom:10px;
}



.footer a{
    color:#fff;
    text-decoration:none;
}



.footer p{
    line-height:1.8;
}



@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

}




.hero-image{
    position: relative;
    overflow: hidden;
    border-radius: 0;
}



.hero-image img{
    display: block;
    width: 100%;
    height: auto;
}



/* دمج الصورة مع الخلفية */
.hero-image::after{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(to right,
            rgba(245,248,255,1) 0%,
            rgba(245,248,255,0) 18%
        ),
        linear-gradient(to left,
            rgba(245,248,255,1) 0%,
            rgba(245,248,255,0) 18%
        ),
        linear-gradient(to top,
            rgba(245,248,255,1) 0%,
            rgba(245,248,255,0) 18%
        ),
        linear-gradient(to bottom,
            rgba(245,248,255,1) 0%,
            rgba(245,248,255,0) 18%
        );
}






.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}



.language-switcher{
    display:flex;
    align-items:center;
    gap:8px;
}



.language-switcher a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}



.language-switcher a:hover{
    background:#0048c8;
    transform:scale(1.08);
}












.companies-page{
    padding:80px 0;
    background:#f7f9fc;
}



.companies-grid{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:30px;
}



.company-item{
    display:block;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}



.company-item:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}



.company-image{
    height:220px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
}



.company-image img{
    width:auto;
    max-width:100%;
    max-height:140px;
    object-fit:contain;
}



.company-content{
    padding:20px;
    text-align:center;
}



.company-content h3{
    color:#003f9f;
    font-size:22px;
    margin-bottom:10px;
}



.company-content span{
    color:#0057d8;
    font-weight:700;
}



@media(max-width:992px){

    .companies-grid{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:576px){

    .companies-grid{
        grid-template-columns:1fr;
    }

}


.logo-box{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo-link{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo-img{
    width:90px;
    height:auto;
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text h2{
    margin:0;
}

.logo-text span{
    margin-top:8px;
}




/* ===========================
   Mobile Responsive
=========================== */

@media (max-width:768px){

.container{
    width:95%;
}

.top-container,
.header-container,
.hero-container,
.about-container,
.company-header,
.about-grid{
    flex-direction:column;
    text-align:center;
}

.top-info{
    flex-direction:column;
    gap:10px;
}

.main-nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.hero{
    padding:50px 0;
}

.hero h1{
    font-size:38px;
    line-height:1.4;
}

.hero p{
    font-size:18px;
}

.hero-buttons{
    flex-direction:column;
}

.features-box{
    flex-direction:column;
}

.products-grid,
.products-page-grid,
.company-products-grid,
.values-grid,
.news-grid,
.branches-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.contact-layout,
.article-layout,
.product-layout{
    grid-template-columns:1fr;
}

.logo-text h2{
    font-size:24px;
}

.main-header{
    padding:15px 0;
}

.partner-card{
    padding:20px;
}

}


























