
 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    background: #ffffff;
}

/* Navigation */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(0, 59, 115, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255,255,255,0.12);

    transition: all .35s ease;
}

.navbar {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 20px;

    transition: all .35s ease;
}

.logo h2 {
    color: white;
    font-size: 26px;
}

.logo span {
    color: #ffb703;
}

.logo img {
    width: 110px;
    height: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu-toggle{

    display:none;

    font-size:30px;

    color:white;

    cursor:pointer;

}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#ffb703;
    border-radius:20px;
    transition:width .3s ease;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#ffb703;
}

.nav-links a i{
    transition:.3s ease;
}

.nav-links a:hover i{
    transform:translateY(-2px) scale(1.1);
    color:#ffb703;
}

.nav-links a:hover {
    color: #ffb703;
}

.nav-links a.active{
    color:#ffb703;
}

.nav-links a.active::after{
    width:100%;
}

.nav-links a.active i{
    color:#ffb703;
}


/* Hero Section */

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    color: white;

    background:
    linear-gradient(
        rgba(0,29,61,0.82),
        rgba(0,59,115,0.82)
    ),
    url("images/hero-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Animated light effect */

.hero::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(255,183,3,0.25);

    border-radius: 50%;

    filter: blur(100px);

    top: -200px;

    right: -150px;

    animation: glowMove 8s infinite alternate;

}



.hero::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    background: rgba(0,150,255,0.25);

    border-radius:50%;

    filter: blur(100px);

    bottom:-150px;

    left:-150px;

    animation: glowMove 10s infinite alternate;

}



@keyframes glowMove {

    from {

        transform: translate(0,0);

    }


    to {

        transform: translate(80px,40px);

    }

}


/* Keep content above effects */

.hero-text,
.hero-image {

    position: relative;

    z-index: 2;

}

.hero-text {
    width: 50%;
    padding-left: 40px;
}

.hero-text h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero-text p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-image {
    width: 40%;
    align-self: stretch;
    display: flex;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image img {

    width: 100%;
    height: 100%;

    border-radius: 20px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.35);

    object-fit: cover;

    animation:
        floatingImage 5s ease-in-out infinite,
        kenburns 8s ease-in-out infinite;

}

@keyframes floatingImage {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0px);

    }

}

@keyframes kenburns{

    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(1.08);
    }

}

@keyframes gradientMove{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}


.btn {
    display: inline-block;
    background: #ffb703;
    color: #222;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* =========================
   Premium Hero Content
========================= */

.hero-tag{
    display:inline-block;
    background:rgba(255,183,3,.15);
    color:#ffb703;
    border:1px solid rgba(255,183,3,.4);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:56px;
    line-height:1.15;
    margin-bottom:20px;
    animation:heroFadeUp .8s ease;
}

.hero-text p{
    font-size:18px;
    color:#f1f5f9;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.btn-outline{
    background:transparent;
    color:white;
    border:2px solid rgba(255,255,255,.5);
}

.btn-outline:hover{
    background:#25D366;
    border-color:#25D366;
    color:white;
}

.hero-buttons .btn{
    transition:.35s;
}

.hero-buttons .btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:40px;
}

.badge{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    color:white;
    font-weight:500;
    border:1px solid rgba(255,255,255,.15);
    transition:all .35s ease;
    cursor:default;
}

.badge:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.22);
    box-shadow:0 12px 25px rgba(0,0,0,.25);
}

.hero-badges .badge:hover i{
    color:#25D366 !important;
    transform:scale(1.15);
}

.hero-badges .badge i{
    color:#ffb703;
    transition:all .35s ease;
}

.badge i{
    color:#ffb703;
}

@keyframes heroFadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:900px){

    .hero-text h1{
        font-size:38px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-badges{
        justify-content:center;
    }

}


/* Brands */

.brands {
    text-align: center;
    min-height: 780px;
    padding: 120px 10%;
    margin-top: 5px;

    background-color: black;

    background-image: linear-gradient(
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.10)
    ),
    url("images/brands-background.jpg");

    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Products */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.card {
    padding: 30px;
    text-align: center;
    background: #f5f8fc;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card i {
    font-size: 45px;
    color: #003b73;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}


/* Services */

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #003b73;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
    text-align: center;
}

.service-grid i {
    font-size: 35px;
    color: #ffb703;
    margin-bottom: 15px;
}

/* About */

.about {
    background: #f5f8fc;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 30px;
}

.about p {
    max-width: 900px;
    margin: auto;
    line-height: 2;
}


/* Contact */

.products {
    padding: 70px 8%;
}

.contact {
    padding: 10px 8% 120px;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin: 15px 0;
}

.contact-info i {
    color: #003b73;
    margin-right: 10px;
}

form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

textarea {
    height: 120px;
}


/* Footer */

footer {
    background: #003b73;
    color: white;
    text-align: center;
    padding: 20px;
}


/* WhatsApp Button */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    text-decoration: none;
}


/* Mobile */

@media(max-width:900px){

    .hero{
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image{
        width:100%;
    }

    .hero-image{
        margin-top:30px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#003b73;
        flex-direction:column;
        gap:0;
        text-align:center;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        border-top:1px solid rgba(255,255,255,0.1);
    }

    .nav-links a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:18px;
}

    .product-grid{
        grid-template-columns:1fr;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-container{
        flex-direction:column;
    }

}

/* =========================
   Dynamic Product Cards
========================= */

#websiteProducts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


#websiteProducts .card {
    background: #f5f8fc;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
}


#websiteProducts .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


#websiteProducts img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}


#websiteProducts h3 {
    color: #003b73;
    margin-bottom: 10px;
}


#websiteProducts p {
    line-height: 1.6;
}


#websiteProducts span {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 15px;
    border-radius: 20px;
    background: #25a244;
    color: white;
    font-size: 14px;
}


/* Mobile products */

@media(max-width:900px){

    #websiteProducts {
        grid-template-columns: 1fr;
    }

}

/* Product price styling */

#websiteProducts del {
    color: #777;
    font-size: 14px;
}


/* Product WhatsApp button */

#websiteProducts .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 14px;
    background: #25D366;
    color: white;
}

#websiteProducts .btn:hover {
    opacity: 0.85;
}


/* Product condition */

#websiteProducts p {
    margin: 8px 0;
}

/* Product Category Buttons */

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}


.category-buttons button {

    background: #003b73;
    color: white;

    border: none;

    padding: 12px 25px;

    border-radius: 25px;

    font-size: 15px;

    cursor: pointer;

    transition: 0.3s;

}


.category-buttons button:hover {

    background: #ffb703;

    color: #222;

    transform: translateY(-3px);

}

/* Website Product Cards */

#websiteProducts .card {

    background: white;

    border-radius: 15px;

    padding: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

    transition: 0.3s;

    text-align: center;

}


#websiteProducts .card:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

}


#websiteProducts .card img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    border-radius: 12px;

    margin-bottom: 15px;

}


#websiteProducts .card h3 {

    color: #003b73;

    margin: 10px 0;

}


#websiteProducts .card span {

    display: inline-block;

    padding: 6px 15px;

    border-radius: 20px;

    background: #d4edda;

    color: green;

    font-size: 14px;

}

/* Social Media Footer Links */

.social-links {

    margin-top: 20px;

    display: flex;

    justify-content: center;

    gap: 20px;

}


.social-links a {

    width: 45px;

    height: 45px;

    background: white;

    color: #003b73;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    text-decoration: none;

    transition: 0.3s;

}


.social-links a:hover {

    background: #ffb703;

    color: #222;

    transform: translateY(-5px);

}


/* =========================
   HERO IMAGE SLIDER
========================= */

#heroSlider{

    transition: opacity 1s ease-in-out;

}

/* =========================
   Premium Product Card Effects
========================= */

#websiteProducts .card{

    display: flex;

    flex-direction: column;

    height: 100%;

    background: white;

    border-radius: 15px;

    padding: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

    transition: 0.3s;

}


/* =========================
   Premium Services Cards
========================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}


.service-card {

    background: white;

    padding: 30px 25px;

    text-align: center;

    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.1);

    transition: 0.3s ease;

}


.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.18);

}


.service-card i {

    font-size: 45px;

    color: #ffb703;

    margin-bottom: 20px;

}


.service-card h3 {

    color: #003b73;

    margin-bottom: 15px;

}


.service-card p {

    color: #555;

    line-height: 1.7;

    font-size: 14px;

}


/* Mobile Services */

@media(max-width:900px){

    .service-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================
   Premium Brand Cards
========================= */

.brand-list{
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 30px;

    max-width: 1200px;

    margin-left: auto;

    margin-right: auto;
}

.brand-card{

    background: white;

    padding: 30px 20px;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

    transition: 0.3s;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 120px;

    overflow: hidden;

}

.brand-card:hover{

    transform: translateY(-8px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

}

.brand-card img{

    width: 100%;

    max-width: 150px;

    height: 80px;

    object-fit: contain;

    display: block;

    margin: auto;

}

/* Mobile Brands */

@media(max-width:900px){

    .brand-list{

        grid-template-columns: repeat(2,1fr);

    }

}

/* =========================
   Premium Product Cards V2
========================= */

.product-image{
    overflow:hidden;
    border-radius:15px;
    margin-bottom:18px;
}

.product-image img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

#websiteProducts .card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.product-badges{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.brand-badge,
.category-badge{
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.brand-badge{
    background:#003b73;
    color:white;
}

.category-badge{
    background:#ffb703;
    color:#222;
}

.condition{
    color:#666;
    font-size:14px;
}

.price-section{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.old-price{
    color:#999;
    text-decoration:line-through;
    font-size:14px;
}

.selling-price{
    color:#003b73;
    font-size:28px;
    font-weight:700;
}

.stock-green{
    display:inline-block;
    align-self:center;
    background:#d4edda;
    color:#198754;
    padding:7px 18px;
    border-radius:30px;
    font-weight:600;
}

.stock-red{
    display:inline-block;
    align-self:center;
    background:#ffe5e5;
    color:#dc3545;
    padding:7px 18px;
    border-radius:30px;
    font-weight:600;
}

.no-image{
    height:230px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#eef3f8;
    color:#777;
    border-radius:15px;
    font-weight:600;
}

/* =========================
   Loading Spinner
========================= */

.loading-spinner{
    text-align:center;
    padding:60px 20px;
}

.spinner{
    width:60px;
    height:60px;
    border:6px solid #e5e5e5;
    border-top:6px solid #003b73;
    border-radius:50%;
    margin:0 auto 20px;
    animation:spin 1s linear infinite;
}

.loading-spinner p{
    color:#555;
    font-size:16px;
    font-weight:500;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* =========================
   Out of Stock Products
========================= */

.out-of-stock{

    opacity: 0.7;

    filter: grayscale(35%);

}

.out-of-stock .btn{

    background: #999;

    cursor: not-allowed;

    pointer-events: none;

}

.stock-red{

    background: #dc3545 !important;

    color: white !important;

}

.stock-green{

    background: #28a745 !important;

    color: white !important;

}

.product-content{

    display: flex;

    flex-direction: column;

    flex: 1;

}

.price-section{

    margin-top: auto;

}

#websiteProducts .btn{

    margin-top: 20px;

}

#websiteProducts .btn{

    margin-top: 20px;

}

/* =========================
   Product Search
========================= */

#productSearch{

    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto 30px;
    padding: 15px 20px;
    border: 2px solid #003b73;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;

}

#productSearch:focus{

    border-color: #ffb703;
    box-shadow: 0 0 15px rgba(255,183,3,0.35);

}

/* =========================
   Product Sorting
========================= */

#sortProducts{

    display:block;

    margin:0 auto 30px;

    width:100%;

    max-width:300px;

    padding:14px 18px;

    border:2px solid #003b73;

    border-radius:30px;

    font-size:16px;

    cursor:pointer;

    outline:none;

}

#sortProducts:focus{

    border-color:#ffb703;

}

/* Safe Scroll Animations */

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Product Grid Fix */

#websiteProducts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media(max-width:1200px){

    #websiteProducts {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:900px){

    #websiteProducts {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px){

    #websiteProducts {
        grid-template-columns: 1fr;
    }

}

/* =========================
   Better Mobile Product Grid
========================= */

@media(max-width:600px){

    #websiteProducts{

        grid-template-columns: repeat(2, 1fr);

        gap:15px;

        padding:0 5px;

    }


    #websiteProducts .card{

        padding:10px;

        border-radius:15px;

    }


    .product-image img{

        height:140px;

        border-radius:12px;

    }


    .product-badges{

        justify-content:center;

        gap:5px;

    }


    .brand-badge,
    .category-badge{

        font-size:10px;

        padding:4px 8px;

    }


    #websiteProducts .card h3{

        font-size:15px;

        text-align:center;

    }


    .condition{

        font-size:12px;

        text-align:center;

    }


    .selling-price{

        font-size:18px;

    }


    .stock-green,
    .stock-red{

        font-size:11px;

        padding:5px 10px;

    }


    #websiteProducts .btn{

        width:100%;

        padding:9px 5px;

        font-size:12px;

    }

}

/* =========================
   Product Details Page
========================= */

.product-details{
    padding:70px 8%;
    background:#f5f8fc;
}


.product-detail-card{

    max-width:1100px;

    margin:auto;

    background:white;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.12);

}


.detail-image img{

    width:100%;

    height:450px;

    object-fit:cover;

    border-radius:20px;

}


.detail-info h1{

    color:#003b73;

    font-size:36px;

    margin-bottom:20px;

}


.detail-info p{

    line-height:1.8;

    margin:20px 0;

}


.detail-info .btn{

    margin-top:20px;

}


#productWhatsApp{

    background:#25D366;

    color:white;

}


#productWhatsApp:hover{

    opacity:.85;

}



/* Mobile Product Details */

@media(max-width:900px){

    .product-detail-card{

        grid-template-columns:1fr;

        padding:20px;

    }


    .detail-image img{

        height:300px;

    }


    .detail-info h1{

        font-size:26px;

        text-align:center;

    }

}

/* =========================
   Product Image Gallery
========================= */

.product-thumbnails{

    display:flex;

    gap:12px;

    margin-top:20px;

    flex-wrap:wrap;

}


.product-thumbnails .thumbnail{

    width:75px;

    height:75px;

    object-fit:cover;

    border-radius:10px;

    cursor:pointer;

    border:2px solid transparent;

    transition:0.3s;

}


.product-thumbnails .thumbnail:hover{

    transform:scale(1.08);

    border-color:#ffb703;

}

/* =========================
   Related Products
========================= */

.related-products{

    padding:60px 8%;

}


.related-products h2{

    margin-bottom:35px;

}


#relatedProducts{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}


.related-card{

    background:white;

    border-radius:15px;

    padding:15px;

    text-align:center;

    cursor:pointer;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);

    transition:0.3s;

}


.related-card:hover{

    transform:translateY(-8px);

    box-shadow:0 12px 30px rgba(0,0,0,0.15);

}


.related-card img{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:12px;

    margin-bottom:15px;

}


.related-card h3{

    color:#003b73;

    font-size:18px;

}


.related-card p{

    color:#003b73;

    font-weight:700;

}



/* Mobile Related Products */

@media(max-width:900px){

    #relatedProducts{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:600px){

    .related-card img{

        height:140px;

    }


    .related-card h3{

        font-size:15px;

    }

}

/* =========================
   Final Mobile Product Page Fix
========================= */

@media(max-width:600px){

    .product-details{
        padding:30px 15px;
    }


    .product-detail-card{

        flex-direction:column;
        width:100%;
        padding:20px;

    }


    .detail-image img{

        width:100%;
        height:auto;
        max-height:350px;
        object-fit:contain;

    }


    .detail-info h1{

        font-size:26px;
        text-align:center;

    }


    .detail-info p{

        font-size:14px;
        line-height:1.7;

    }


    .selling-price{

        font-size:24px;
        text-align:center;

    }


    .detail-info .btn{

        width:100%;
        text-align:center;
        margin-top:10px;

    }

}


/* About Section */

.about-container {
    position: relative;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
}

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

.about-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80%;
    text-align: center;

    color: white;

    background: rgba(0,0,0,0.55);
    padding: 40px;
    border-radius: 15px;
}

.about-text h2 {
    color: white;
    text-align: center;
}

.about-text p {
    line-height: 1.8;
}

/* Section Headings */

.products h2,
.services h2,
.about h2,
.contact h2 {
    text-align: center;
    color: #003b73;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.about-text h2 {
    color: white;
}

/* =========================
   Mobile About Section
========================= */

@media (max-width:900px){

    .about-container{
        display:flex;
        flex-direction:column;
        min-height:auto;
    }

    .about-image{
        width:100%;
        height:auto;
    }

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

    .about-text{
        position:static;
        transform:none;
        width:100%;
        border-radius:0;
        padding:30px 20px;
        background:#003b73;
    }

    .about-text h2{
        color:white;
    }
}

/* =========================
   Mobile Brands Section
========================= */

@media (max-width:900px){

    .brands{
        min-height:350px;
        padding:60px 20px;
        background-size:cover;
        background-position:center;
    }

}