
/* ------------------ Back to Top ------------------ */
.back-to-top {
    position: fixed;
    display: none;
    background: #157af6;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 1;
    font-size: 44px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}


/* ------------------ Header CSS ------------------- */
.header {
    padding: 30px 0;
    height: 86px;
    position: fixed;
    background: #000000;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.3s;
    z-index: 997;
    display: flex; /* Use flexbox for the entire header */
    align-items: center; /* Vertically center all items */
    justify-content: space-between; /* Space out logo and menu */
}

.header .container-fluid {
    display: flex; /* Ensure container uses flexbox */
    align-items: center; /* Vertically center items */
    width: 100%; /* Full width of the header */
}

.header .logo {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the logo and text */
    margin-right: auto; /* Push the logo to the left */
    position: relative; /* Add positioning context */
    top: -5px; /* Adjust this value to move the logo and heading up or down */
}

.header .logo img {
    height: 40px; /* Set a fixed height for the logo */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Add spacing between the logo and text */
}

.header .logo h1 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 30px;
    margin: 0;
    line-height: 1; /* Keep line-height as 1 for proper alignment */
    letter-spacing: 4px;
    text-transform: uppercase;
}

.header .logo h1 a {
    color: #ffffff;
    text-decoration: none;
    outline: none;
}



/* ------------------ Menu Style ------------------- */
#nav-menu-container {
    display: flex; /* Use flexbox for the menu */
    align-items: center; /* Vertically center menu items */
    margin-left: auto; /* Push the menu to the right */
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > li {
    display: inline-block; /* Display menu items horizontally */
    margin-left: 10px; /* Add spacing between menu items */
}

.nav-menu a {
    display: inline-block;
    padding: 2px 8px 10px 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    text-transform: none;
    outline: none;
    text-decoration: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
    color: #0073ff;
}

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #ffffff;
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 999;
    background: #000000;
    left: -260px;
    width: 180px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #157af6;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
    color: #157af6;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    top: -5px;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #ffffff;
}

#mobile-nav ul .menu-has-children i.ion-md-arrow-dropup {
    color: #157af6;
}

#mobile-nav ul .menu-has-children i.dicon {
    display: none;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #157af6;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #ffffff;
}

/* Your existing CSS remains here */

@media only screen and (max-width: 1024px) {
#mobile-nav ul li:nth-child(1) a:before {content: "🏠";} /* Home */
#mobile-nav ul li:nth-child(2) a:before {content: "🏢";} /* About */
#mobile-nav ul li:nth-child(3) a:before {content: "💻";} /* Digital Solutions */
#mobile-nav ul li:nth-child(4) a:before {content: "🖥";} /* Hardware Infrastructure */
#mobile-nav ul li:nth-child(5) a:before {content: "🌐";} /* Networking */
#mobile-nav ul li:nth-child(6) a:before {content: "🛠";} /* Support */
#mobile-nav ul li:nth-child(7) a:before {content: "📞";} /* Contact Us */

    /* Add a small gap between symbol and text */
    #mobile-nav ul li a:before {
        margin-right: 10px; /* Adjust this value to control the gap size */
    }
}
/* ---------------- Banner Section ----------------- */
.banner {
    background: url("../img/banner.jpg") center top no-repeat;
    background-size: cover;
    padding: 150px 0 60px 0;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(000, 000, 000, 0.6);
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 10;
}

.banner .banner-nav {
    text-align: center;
}

.banner .banner-box {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ffffff;
}

.banner .banner-box a {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.banner .banner-box a:hover {
    color: #157af6;
    text-decoration: none;
    outline: none;
}

.banner .banner-box a:first-child {
    padding-right: 15px;
    border-right: 1px solid #ffffff;
}

.banner .banner-box a:last-child {
    padding-left: 15px;
}

/* ----------------- Footer Style ------------------ */
/* Add spacing to the row without breaking Bootstrap */
/* Ensure the footer container has padding on the sides */
.footer .footer-top .container {
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 50px; /* Adds space on the left & right */
  }
  
  /* Make the row flexible with even spacing */
  .footer .footer-top .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1px; /* Increases spacing between columns */
    justify-content: space-evenly; /* Ensures equal gap between all columns */
  }
  
  /* Ensure 4 equal columns on large screens */
  @media (min-width: 992px) {
    .footer .footer-top .row > [class^="col-"] {
      flex: 1 1 calc(25% - 40px); /* Ensures equal width with gaps */
      min-width: 240px;
    }
  }
  
  /* On tablets: 2 columns per row */
  @media (min-width: 768px) and (max-width: 991px) {
    .footer .footer-top .row > [class^="col-"] {
      flex: 1 1 calc(50% - 40px);
    }
  }
  
  /* On mobiles: 1 column per row */
  @media (max-width: 767px) {
    .footer .footer-top .row > [class^="col-"] {
      flex: 1 1 100%;
    }
  }
  
  
.footer {
    position: relative;
    padding: 0 0 15px 0;  
    background: #ffffff;  
    
}
.footer .copyright {
    text-align: center;
    padding-top: 15px;
    background: #ffffff; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer .footer-top {
    background: #000000; 
    padding: 60px 0 30px 0;
  
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

/* Style for the h3 heading */
.footer .footer-top .footer-info h3 {
    font-size: 30px;
    line-height: 1;
    color: #e7dcdc;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: 2px;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the logo and text */
    margin-bottom: 10px; /* Add spacing between the heading and the tagline */
    text-transform: uppercase;
}

.footer .footer-top .footer-info h3 .footer-logo {
    height: 40px; /* Set a fixed height for the logo (adjust as needed) */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Add spacing between the logo and text */
}

/* Style for the tagline */
.footer .footer-top .footer-info p.tagline {
    font-size: 20px;
    line-height: 28px;
    color: #86b9f3;
    margin-top: 0; /* Ensure no extra spacing above the tagline */
    margin-left: 75px; /* Align the tagline with the start of the text in <h3>, not the logo */
    font-family: 'Poppins', sans-serif;
}

/* Styles for large tablets (max-width: 1280px) */
@media (max-width: 1280px) {
    .footer .footer-top .footer-info h3 {
        font-size: 30px; /* Slightly smaller font size for large tablets */
    }

    .footer .footer-top .footer-info p.tagline {
        font-size: 18px; /* Slightly smaller font size for large tablets */
        margin-left: 65px; /* Adjust alignment for smaller logo + text */
    }
}

/* Styles for mid-range screens (1024px to 1208px) */
@media (min-width: 1024px) and (max-width: 1208px) {
    .footer .footer-top .footer-info h3 {
        font-size: 28px; /* Adjust font size for mid-range screens */
    }

    .footer .footer-top .footer-info p.tagline {
        font-size: 18px; /* Adjust font size for mid-range screens */
        margin-left: 60px; /* Fine-tune alignment for this specific range */
    }
}

/* Styles for tablets (max-width: 768px) */
@media (max-width: 768px) {
    .footer .footer-top .footer-info h3 {
        font-size: 28px; /* Slightly smaller font size for tablets */
    }

    .footer .footer-top .footer-info p.tagline {
        font-size: 18px; /* Slightly smaller font size for tablets */
        margin-left: 60px; /* Adjust alignment for smaller logo + text */
    }
}

/* Styles for phones (max-width: 480px) */
@media (max-width: 480px) {
    .footer .footer-top .footer-info h3 {
        font-size: 22px; /* Even smaller font size for phones */
    }

    .footer .footer-top .footer-info h3 .footer-logo {
        height: 30px; /* Reduce logo size for phones */
        margin-right: 8px; /* Adjust spacing between logo and text */
    }

    .footer .footer-top .footer-info p.tagline {
        font-size: 16px; /* Smaller font size for phones */
        margin-left: 55px; /* Align tagline with the text in <h3> */
    }
}

@media (max-width: 344px) {
    .footer .footer-top .footer-info h3 {
        font-size: 17px; /* Even smaller font size for phones */
    }

    .footer .footer-top .footer-info h3 .footer-logo {
        height: 25px; /* Reduce logo size for phones */
        margin-right: 8px; /* Adjust spacing between logo and text */
    }

    .footer .footer-top .footer-info p.tagline {
        font-size: 16px; /* Smaller font size for phones */
        margin-left: 55px; /* Align tagline with the text in <h3> */
    }
}

.footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #e7dcdc;
    color: #000000; 
    line-height: 1;
    padding: 9px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    background:  #e7dcdc;
    color: #157af6;
}

.footer .footer-top h4 {
    font-size: 18px;
    font-weight: 700;
    color: #e7dcdc;
    text-transform: none;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100px;
    border-bottom: 2px dashed #e7dcdc;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #86b9f3;
    font-size: 16px;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #86b9f3;
    padding: 7px 0;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    font-size: 15px;
    color: #86b9f3;
}

.footer .footer-top .footer-links ul a:hover {
    color: #e7e9f4;
}

.footer .footer-top .footer-contact p {
    color: #86b9f3;
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 8px;
    width: 60%;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    border: 0;
    width: 40%;
    padding: 6px 0;
    text-align: center;
    color: #ebe7e7;
    background: #2806eb;
    transition: 0.3s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: #021b9c;
}

.footer .footer-top .footer-newsletter p {
    color: #86b9f3;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}


.copyright1
{
    color: #000000;
}


/* ---------------- Responsive Design -------------- */
@media (min-width: 1200px) {
    .header .logo {
        padding-left: 60px;
    }

    #nav-menu-container {
        padding-right: 30px;
    }
}

@media (max-width: 1200px) {
    .back-to-top {
        bottom: 15px;
    }

    .header .logo h1 {
        font-size: 28px;
    }

    .slider h2 {
        font-size: 28px;
    }

    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }
}

@media (max-width: 480px) {
    .header .logo img {
        height: 30px; /* Set a fixed height for the logo */
        width: auto; /* Maintain aspect ratio */
        margin-top: 10px;
    }

    .header .logo h1 {
        font-size: 20px;
        margin-top: 10px;
    }

    #mobile-nav-toggle {
        display: inline;
        margin-top: 25px;
    }
}
