/* -------------------------------INDEX PAGE------------------------------- */

.logo{
    height: 50px;
    width: 50px;
    background-color: #0d5c85;
    border-radius: 5px;
    margin-right: 5px;
}

.logo img{
    height: 100%;
    width: 100%;
}

.border-none {
    border: none;
}

.bg-blue {
    /* background-color:#1a98ca ; */
    background-color: #f8f9fa;
}

.bg-yellow {
    background-color: #fdc447;
}

.hero {
    background-color: #1a98ca;
}

.section-2 .card:hover {
    background-color: #1a98ca;
    color: white;
}

.section-2 .card:hover .bi {

    fill: white;
}

/* --------------------sectio-2/what we offer------------------------- */

.service-highlight {
    display: flex;
    flex-wrap: wrap;
    background-color: #f4f7fb;
    padding: 60px 40px;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.service-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.service-images img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    object-fit: cover;
}

.video-preview {
    position: relative;
}

.video-preview .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
    line-height: 70px;
    color: #0d2c5d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.service-content {
    flex: 1;
    padding-left: 60px;
}

.service-content h5 {
    color: #2f91d3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
}

.service-content h2 {
    font-size: 48px;
    margin: 10px 0 20px;
    color: #12263a;
}

.service-content p {
    color: #66788a;
    font-size: 18px;
    margin-bottom: 30px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.service-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #12263a;
}

.service-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2f91d3;
    font-size: 18px;
}

.cta-button {
    background-color: #2f91d3;
    color: white;
    padding: 15px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #1e6aa8;
}

.services-section {
    text-align: center;
    background-color: #f4f7fb;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.services-section h4 {
    color: #007bff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.services-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1e2a38;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-box {
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-box h3 {
    color: #1e2a38;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-box p {
    color: #6c757d;
    font-size: 15px;
}

/* -------------------------------------FOOTER----------------------------------- */

.footer {
    background-color: #0d2c45;
    color: #ffffff;
    padding: 40px 0;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a,
.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 47px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #fff;
    transition: background 0.3s, color 0.3s;
}

.social-icons a:hover {
    background: #ffffff;
    color: #0d2c45;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    padding-top: 20px;
    font-size: 14px;
}

.scroll-top {
    background: #113b59;
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    color: white;
}

.scroll-top:hover {
    background: #ffffff;
    color: #113b59;
}

hr {
    border: none;
    border-top: 1px solid #133d5e;
    margin: 30px 0;
}


/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0b92d2;
    color: white;
    border-radius: 50%;
    padding: 12px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
}


/* --------------------------------------ABOUT US PAGE---------------------------------- */

.fs {
    font-size: 18px;
}

.maindiv {
    background-image: url(images/create\ image\ for\ computer\ hardware\ dealership.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    opacity: 0.8;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: 700;
}

.highlight-text {
    color: #00AEEF;
    font-weight: 600;
    letter-spacing: 1px;
}

.list-custom li::marker {
    color: orange;
}

.img-stack,
.img-stack2 {
    position: relative;
}

.img-stack img:first-child {
    position: relative;
    width: 75%;
    height: 480px;
    border-radius: 8px;
    left: 80px;

}

.img-stack img:last-child {
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .img-stack img:last-child {
        position: static;
        width: 100%;
        margin-top: 15px;
    }
}


.img-stack2 img:first-child {
    position: relative;
    width: 75%;
    height: 480px;
    border-radius: 8px;
    left: 0px;

}

.img-stack2 img:last-child {
    position: absolute;
    bottom: -30px;
    left: 180px;
    width: 50%;
    bottom: -30px;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    
   .imageAbout{
    display: none;
   }
}
@media (max-width: 768px) {
    .img-stack img:last-child {
        position: static;
        width: 100%;
        margin-top: 15px;
    }
}


.section {
    text-align: center;
    padding: 60px 20px;
}

.section h4 {
    color: #0b92d2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 10px;
}

.section h1 {
    font-size: 48px;
    margin-bottom: 50px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card i {
    font-size: 48px;
    color: #0b92d2;
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-desc {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dot.active {
    background-color: #0b92d2;
}

/* ------------------------------------SERVICES PAGE------------------------------------ */

.servicesdiv {
    background-image: url(images/computer\ parts\ repairing\ image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    opacity: 0.7;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: 700;
}




.section {
    padding: 80px 20px;
    text-align: center;
}

.section h4 {
    color: #1ca0dd;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #24344d;
    margin-bottom: 50px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box img {
    width: 60px;
    height: 60px;
}

.service-content h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1b2c47;
}

.service-content p {
    font-size: 1rem;
    color: #67768d;
    margin-top: 8px;
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
    padding: 20px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    background: url(../img/bg.png);
    background-repeat: no-repeat;
    background-position: 56%;
    background-size: 278px;
    display: flex;
    flex-direction: column;
}

.values .box img {
    padding: 20px 1px;
    transition: 0.5s;
    transform: scale(1);
    margin-top: auto;
}

.values .box h5 {
    background-color: #1a98ca;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.values .box h5:hover {
    background-color: #fdc447;
    color: #000;
    /* Optional: for better contrast on yellow background */
}

.values .box:hover {
    box-shadow: 0px 0 30px rgba(153, 203, 8, 0.31);
    border-style: solid;
    border-width: 1px;
    border-color: #2f3160;
}

.values .box:hover img {
    transform: scale(1.1);
}
/*=========contact section==========*/

.contactdiv {
    background-image: url(images/contact.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    opacity: 0.7;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: 700;
}