
:root {
    --primary-color: #f4ae03;
    --secondary-color: #0a5d7c;
    --dark-bg: #1d1d1d;
    --text-dark: #1a1921;
    --text-light: #ffffff;
    --text-gray: #454545;
    --light-bg: #f5f6f8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--text-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.title-underline {
    width: 65px;
    height: 5px;
    background-color: var(--primary-color);
    margin: 20px auto 40px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    border: none;
}
.contact-btn{
	    padding: 7px 13px;
	     font-weight: 400;
	
}

.btn1-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 18px;
}


.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 18px;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 14px;
}

.btn-read-more {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 18px;
    padding: 12px 30px;
}

 
/* Header Class start */
.site-header {
    background-color: var(--text-light);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px; 
    width: 85%;
    margin: 0px 100px;
    
}


.logo img {
    width: 140px;
    height: auto;
}

#main-nav{
    display: flex;
    gap: 40px;
}

#main-nav a {
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}
.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    /* color: var(--text-dark); */
     color:var(--secondary-color);
     font-weight:600;
}
.phone-link img {
    width: 19px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 1200px) {
    . { display: none; }
    .header-contact .phone-link { display: none; }
    .mobile-nav-toggle { display: flex; flex-direction: column; gap: 5px; }
    .mobile-nav-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--text-dark);
    }
}
@media (max-width: 768px) {
    .header-contact .contact-btn { display: none; }
}

/* Header Class end */

/* CSS for section section:hero */
.hero-section {
  position: relative;
  background-image: url('images/Point_of_sales_solution.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 69px 0;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 25, 33, 0.7);
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero-content {
  flex: 1;
  max-width: 804px;
}
.hero-content h1 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
  text-shadow: 1px 1px 1px #000000;
  margin-bottom: 17px;
}
.hero-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 683px;
}
  .hero-content .btn-secondary {
    font-size: 14px;
    padding: 6px 12px;
  }
.hero-image {
  flex-shrink: 0;
}
.hero-image img {
  width: 434px;
  height: 500px;
  object-fit: contain;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content p {
        margin-bottom: 40px;
    }
    .hero-image {
        display: none;
    }
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 16px;
    }
}

/* CSS for section section:struggle */
.struggle-section {
  padding: 50px 0 70px;
}
.struggle-content {
  margin-top: 72px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.struggle-left, .struggle-right {
  flex: 1;
  max-width: 550px;
  text-align: justify;
}
.struggle-left p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.struggle-left p:first-child {
  margin-bottom: 25px;
}
.struggle-right > p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 21px;
}
.struggle-right ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.struggle-right li {
  display: flex;
  align-items: center;
  gap: 13px;
  background-color: #ffffff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 21px;
  font-size: 16px;
  font-weight: 400;
}
.struggle-right li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
    .struggle-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        margin-top: 40px;
    }
    .struggle-left, .struggle-right {
        max-width: 600px;
    }
}

/* CSS for section section:solution */
.solution-section {
  background-color: var(--light-bg);
  padding: 50px 0 60px 0px;
}
.solution-container {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: justify;
  padding-top: 20px;
  
}
.solution-image {
  flex-shrink: 0;
}
.solution-image img {
  width: 627px;
  height: 273px;
  object-fit: cover;
  border-radius: 0px 30px 30px 0px;
}
.solution-content {
  flex: 1;
  padding-right: 40px;
}
.solution-content .section-title {
  text-align: left;
}
.solution-content .section-divider {
  margin: 0;
  margin-bottom: 66px;
}
.solution-content ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.solution-content li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.solution-content li img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.solution-content li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1200px) {
    .solution-container {
        flex-direction: column;
        gap: 40px;
    }
    .solution-content .section-title {
        text-align: center;
    }
    .solution-content .section-divider {
        margin: 0 auto 40px auto;
    }
    .solution-image img {
        width: 100%;
        height: auto;
    }
}

/* CSS for section section:features */
.features-section {
  padding: 60px 0 70px;
}
.features-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background-color: var(--text-light);
  border: 1px solid var(--color-secondary);
  border-radius: 8px;
  box-shadow: 0 5px 2px rgba(0, 93, 117, 1),
              0 -3px 4px rgb(147 140 140 / 10%);;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image-wrapper {
  height: 220px;
}
.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding:12px;
}

.card-content {
  padding: 0px 15px 15px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: justify;
}
.card-content h3 {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  margin-top: 0px;
}
.card-content .subtitle {
  color: rgba(69, 69, 69, 0.8);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
.card-content .description {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 15px;
  flex-grow: 1;
}
.card-content ul {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.card-content li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:why-mciapps */
.why-section {
  background-color: var(--light-bg);
  padding: 44px 0 25px;
  text-align: justify;
}
.why-content {
  margin-top: 71px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}
.why-content p {
  margin-bottom: 38px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 60px;
  text-align: left;
  margin-bottom: 56px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-item img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

@media (max-width: 768px) {
    .why-content {
        margin-top: 40px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* CSS for section section:cta */
.cta-section {
  position: relative;
  background-image: linear-gradient(rgba(29, 29, 29, 0.75), rgba(29, 29, 29, 0.75)), url('images/eae7aca749fc57060472918b44eb44563706155b.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 50px 0 61px;
  text-align: center;
}
.cta-section::before {
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}
.cta-container {
  position: relative;
  z-index: 2;
}
.cta-container h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-white);
  margin-bottom: 9px;
}
.cta-container p {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 20px;
}
  .cta-container .btn {
    font-size: 14px;
    padding: 6px 32px;
}

@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 18px;
    }
    .cta-container p {
        font-size: 22px;
    }
  
   
}


/* Footer Class start */

.about-col .footer-logo {
   /*  width: 123px; */
    margin-bottom: 18px;
}
.about-col p {
    font-size: 12px;
    line-height: 1.5;
    color: #d9d9d9;
    text-align: justify;
    /* max-width: 232px; */
}
.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer {
    color: var(--text-light);
}
.footer-main {
    background-color: var(--dark-bg);
    padding: 40px 0;
    border-top: 1px solid var(--primary-color);
}

.footer-container {
   width: 85%;
   margin: auto;
    
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr 1fr;
    gap: 40px;
}

.links-col h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.links-col ul li a {
    text-decoration: none !important;
    color: #a8a8a8;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons img {
    width: 24px;
}
.footer-copyright {
    background-color: #141414;
    text-align: center;
    padding: 25px 0;
    font-size: 15px;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-col {
        grid-column: 1 / -1;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
   /*  .about-col p {
        margin: 0 auto;
    } */
    .social-icons {
        justify-content: center;
    }
}

/* footer Class end */
  
  

/*  New applied classes*/


@media (min-width: 1200px) {
    .container {
        width: 1126px !important;
    }
}

.cta-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 25px;
}
.cta-subtitle {
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: -10px;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 22px;
  }
  .cta-subtitle {
    font-size: 18px;
  }
}
/*  New applied classes end*/
  