@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #2d465e;
    --accent-color: #0092d8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
    --nav-color: #212529;
    --nav-hover-color: #0092d8;
    --nav-mobile-background-color: #ffffff;

}

body {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    overflow-x: hidden;
    background-color: white;

}

/* header */
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0px;
  transition: all 0.5s;
  z-index: 997;

}


.header .header-container {
  background: var(--surface-color);
  border-radius: 45px;
  padding: 0px 55px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;

}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);

}

.header .logo {
  line-height: 1;
  padding-left: 5px;
  margin: -17px;
}

.header .logo img {
  max-height: 140px;
  margin-right: 8px;

}

.navmenu a {
  text-decoration: none;
  background-color: #ffffff;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.navmenu .dropdown ul {
  background-color: white;
  padding: 0;

  margin: 0;
  list-style: none;
}

/* Optional: Style the dropdown items */
.navmenu .dropdown ul li a {
  color: black;
  padding: 15px 15px;
  text-decoration: none;
  display: block;
  padding-bottom: 21px !important;
}

.navmenu .dropdown ul li a.last-child {
  padding-bottom: 10px !important;
}

.navmenu .dropdown ul li {
  color: black;

  margin-top: -9px;
  text-decoration: none;
  display: block;
}

/* Optional: Add hover effect */
.navmenu .dropdown ul li a:hover {
  background-color: var(--accent-color);
}


@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
    padding-left: 30px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    right: 100%;
    visibility: visible;
    width: 115%;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;

  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}




/* hero */
.hero {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 650px;
    color: rgb(0, 0, 0);
    padding: 10rem 0;
    margin: 0 auto;
    max-width: 1800px;


}

.text-container {
    padding-top: 8%;
    padding-left: 8%;
    color: rgb(0, 0, 0);


}

.hero h5 {
    font-size: 1.25rem;
    color: rgb(7, 7, 7);

}

.hero h1 {
    font-size: 3rem;
    color: rgb(0, 0, 0);
    font-weight: 700;
    /* Ensure bold weight */
}

.hero p {
    font-size: 1.125rem;
    /* Size for paragraph text */
    line-height: 1.5;
    /* Improve line spacing */
    margin-top: 20px;
    /* Space between paragraph and buttons */
}

.btn-demo {
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: 2px solid #000000;
}

.btn-demo:hover {
    background-color: #000000;
    color: rgb(255, 255, 255);

}

.img-fluid {
    padding-top: 1%;
    height: 500px;
    width: 600px;
}







/* Crafting Container */
.crafting-container {  
  max-width: 1200px;  
  margin: auto;  
  padding: 50px 20px; /* Adjust padding for spacing */
}  

/* Section Heading */
.crafting-heading {  
  text-align: center;  
  max-width: 800px;  
  margin: 0 auto 30px;  
}  

.crafting-heading h2 {  
  font-size: 36px;  
  font-weight: bold;  
  color: #222;  
  margin-bottom: 10px;  
}  

.crafting-heading p {  
  font-size: 18px;  
  color: #555;  
}  

/* Divider */
.crafting-divider {  
  border-top: 3px solid #007bff; /* Blue color for divider */  
  width: 100px;  
  margin: 20px auto;  
}  


.crafting-containing {  
  position: relative;  
  background-color: #ffffff; /* Default white background */  
  border: 1px solid #e0e0e0;  
  border-radius: 10px;  
  overflow: hidden;  
  cursor: pointer;  
  width: 270px; /* Adjusted for 4-in-a-row layout */  
  height: 200px;  
  text-align: center;  
  padding: 20px;  
  transition: background 0.3s ease, box-shadow 0.3s ease;  
}  

/* Hover Effect */
.crafting-containing:hover {  
  background-color: #cce5ff; /* Light blue hover effect */  
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);  
}  

/* Hidden Overlay Text */
.crafting-overlay {  
  position: absolute;  
  top: 0;  
  left: 0;  
  right: 0;  
  bottom: 0;  
  background-color: rgba(0, 123, 255, 0.9); /* Blue overlay */  
  color: white;  
  display: flex;  
  align-items: center;  
  justify-content: center;  
  text-align: center;  
  font-size: 16px;  
  padding: 15px;  
  opacity: 0;  
  transition: opacity 0.3s ease-in-out;  
}  

.crafting-containing:hover .crafting-overlay {  
  opacity: 1; /* Show overlay text on hover */  
}  

/* Icons */
.crafting-icon {  
  font-size: 50px;  
  color: #007bff; /* Blue icon color */  
  margin-bottom: 10px;  
  display: block;  
}  

/* Box Title */
.crafting-box-title h5 {  
  font-size: 20px;  
  font-weight: bold;  
  color: #222;  
}  

/* Responsive Design */
@media (max-width: 992px) {  
  .crafting-container {  
    padding: 40px 10px;  
  }  
  .crafting-containing {  
    width: 220px; /* Smaller boxes for tablets */  
    height: 220px;  
  }  
}  

@media (max-width: 768px) {  
  .row {  
    gap: 10px; /* Reduce gap for smaller screens */  
  }  
  .crafting-containing {  
    width: 48%; /* Two in a row on medium screens */  
  }  
}  

@media (max-width: 576px) {  
  .crafting-containing {  
    width: 100%; /* Full width on small screens */  
  }  
}

/* integration-approaches */
.integration-card {
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.integration-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}


.integration-icon {
    font-size: 4rem;
    color: #007bff;
    transition: color 0.1s ease, transform 0.3s ease-in-out;

}


.integration-card h5 {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}


.integration-card:hover .integration-icon,
.integration-card:hover h5 {
    color: #000000;

    animation: none;
}


.integration-card p {
    font-size: 1rem;
    color: #000000;
}


@media (max-width: 768px) {
    .integration-card {
        padding: 20px;
    }

    .integration-icon {
        font-size: 2.5rem;
    }
}




/* Next-gen POS Sections - */
.next-gen-section {
  display: flex;
  align-items: center;

  justify-content: center;

  padding: 40px;

  gap: 40px;

  background-color: #ffffff;

  margin: 0 auto;

  max-width: 1200px;

}


.next-gen-section.reverse {
  flex-direction: row-reverse;
}


.custom-image {
  flex: 1;
  display: flex;
  justify-content: center;
  /* Center the image horizontally */
}

.custom-image img {
  max-width: 100%;

  /* Ensure responsiveness */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 8px;
  /* Optional: Add rounded corners */
}


.custom-text {
  flex: 1;
  text-align: left;

  padding: 20px;

}

.custom-heading {
  font-size: 2rem;
  /* Larger heading */
  font-weight: bold;
  margin-bottom: 15px;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


}

.custom-text p {
  font-size: 1rem;
  /* Standard font size */
  line-height: 1.6;
  /* Improved readability */
  color: #6c757d;
  margin-bottom: 15px;
}

.explore-link {
  color: #007bff;
  /* Blue link color */
  text-decoration: none;
  /* Remove underline */
  font-weight: bold;
}

/* common use */
#common-use-cases {
    max-width: 1800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff, #c4d3f9);
    padding-top: 50px;
    padding-bottom: 50px;
}

#common-use-cases .container {
    max-width: 1200px;
}


.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 400px;
}

.card-body {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 0 0 20px 20px;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}


.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}


.card-body h5 {
    font-size: 1.4rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

.card:hover .card-body h5 {
    color: #000000;
}


.card-body p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}


.row {
    margin-top: 30px;
}


@media (max-width: 768px) {
    .card-body {
        padding: 20px;
    }

    .card-body h5 {
        font-size: 1.2rem;
    }

    .card-body p {
        font-size: 0.9rem;
    }
}


.card:hover {
    background-color: #f1f1f1;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.5s ease-out;
}


/* whatwe */
#why-choose-infonet {
    background-color: #ffffff;

    padding-top: 50px;
    padding-bottom: 50px;
}


.feature-card {
    background-color: #000000;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.feature-card .icon-wrapper {
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card h4 {
    font-size: 1.4rem;
    color: #000000;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
}


.feature-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.feature-card:hover .icon-wrapper {
    transform: scale(1.1);

    color: #333333;
}


.feature-card:hover h4 {
    color: #000000;

}

.feature-card:hover p {
    color: #000000;

}

.feature-card .overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.feature-card:hover .overlay {
    opacity: 1;

}


.feature-card .icon-wrapper i {
    color: #00d4ff;
    transition: color 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    .feature-card h4 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .icon-wrapper i {
        font-size: 2.5rem;
        /* Smaller icons on mobile */
    }
}



/* Section Styling */
#take-next-step {
    background: url('pics/servces.png') no-repeat center center/cover;
    height: 600px;
    max-width: 1800px;
    margin: 0% auto;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

#take-next-step .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}


#take-next-step .container {
    max-width: 1400px;
    margin: 0% auto;
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}


#take-next-step h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

#take-next-step p {
    font-size: 1.2rem;
    max-width: 800px;
}

#take-next-step .btn-primary {
    background: #007bff;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}

#take-next-step .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #take-next-step h1 {
        font-size: 2.5rem;
    }

    #take-next-step p {
        font-size: 1rem;
    }

    #take-next-step .btn-primary {
        font-size: 1rem;
    }
}


/* Footer */
.footer {
  color: var(--default-color);
  font-size: 14px;
  position: relative;
  background-image: url('pics/darkergreyfooter.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: white;
}

.fot-btn {
  transition: background-color 0.3s ease;
  /* Smooth transition */
  background-color: var(--accent-color);
  color: #fdfdfd;
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
}

.fot-btn:hover {
  background-color: black !important;
  /* Change to black on hover */
  color: white;
  /* Optional: change text color to white on hover */
}

.footer .footer-about .logo img {
  max-height: 160px;
  margin-right: 6px;
  width: 200px;

}

.footer-contact {
  margin-top: -40px;
}

.footer .footer-about p {
  font-size: 16px;
  padding-left: 10px;
  color: white;
}

.footer .social-links a {

  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 20px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  margin-top: 60px;

}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer .footer-links ul li a {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  color: white;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: rgb(255, 255, 255);
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer-contact,
footer .footer-links ul li a:hover {
  color: var(--accent-color);
}

.contact-footer-links a{
  color: #ffffff;
  text-decoration: none;
}
