
: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: 20px;
    margin-top: 56px;
}

.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: 0 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;
	
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 18px;
}
.btn1-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;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
    color: var(--text-light);
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 25, 33, 0.65);
  z-index: -1;
}
.hero-content {
  max-width: 820px;
}
.hero-title {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.15;
  text-shadow: 1px 1px 1px #000;
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.btn-primary {
  padding: 9px 50px;
}
@media (max-width: 768px) {
  .hero-section {
    height: 450px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}

/* CSS for section section:problem */
.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  padding-top: 20px;
}
.problem-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
.problem-text .text-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.problem-juggling h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 5px;
}
.problem-juggling ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.problem-juggling li {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--text-light);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 22px;
  font-size: 16px;
}
.problem-juggling li img, .problem-juggling .merged-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.merged-icon {
  position: relative;
}
.merged-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .problem-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* CSS for section section:solution */
.solution-section {
 
  margin-top: 60px;
  padding-top: 1px;
  padding-bottom: 70px;
  background-color: var(--light-bg);
}
.solution-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 18px;
  
}
.solution-image img {
  width: 100%;
  height: auto;
  border-radius: 0px 30px 30px 0px;
  display: block;
}
.solution-content {
  padding: 0 5%;
  height: 378px;
  text-align: justify;
}
.solution-content .section-title {
  text-align: left;
}
.solution-content .title-underline {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 30px;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.solution-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
}
.solution-list li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}
@media (max-width: 992px) {
  .solution-container {
    grid-template-columns: 1fr;
  }
  .solution-image {
    order: 2;
    padding: 0 20px;
  }
  .solution-image img {
    border-radius: 15px;
  }
  .solution-content {
    order: 1;
    padding: 0 20px 40px;
    text-align: justify;
  }
  .solution-content .section-title {
    text-align: center;
  }
  .solution-content .title-underline {
    margin: 0 auto 30px;
  }
}

/* CSS for section section:features */
.features-section {
  background-color: var(--text-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  padding-top: 18px;
}
.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 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 5px;
  margin-top: 0px;
}
.card-subtitle {
  font-size: 12px;
  color: rgba(69, 69, 69, 0.8);
  text-align: center;
  margin-bottom: 15px;
  min-height: 36px;
}
.card-description {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}
.card-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.card-checklist img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 400px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:why-us */
.why-us-section {
  background-color: var(--light-bg);
  margin-top: 70px;
  padding-bottom: 50px;
}
.why-us-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  padding-top: 15px;
  text-align: justify;
}
.intro-column ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.intro-column li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}
.intro-column li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 100px 20px;
    margin-bottom: 60px;
}
.why-card {
  background-color: var(--text-light);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 75px 12px 20px;
  text-align: center;
  position: relative;
  min-height: 210px;
}
.why-card-icon-wrapper {
  position: absolute;
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
  width: 109px;
  height: 109px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-bg-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.icon-main {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.why-card h4 {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  line-height: 1.5;
}
.why-card-centered {
  grid-column: 2 / span 2;
}
.why-us-outro {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  max-width: 730px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .why-us-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .why-card-centered {
    grid-column: auto;
  }
}
@media (max-width: 768px) {
  .why-us-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
}

/* CSS for section section:cta */
.cta-section {
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
    color: var(--text-light);
}
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 29, 0.75);
  z-index: -1;
}
.cta-subtitle {
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: -10px;
}
.cta-content .btn {
    font-size: 14px;
    padding: 6px 32px;
  }

.cta-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 25px;
}
.cta-section .btn-primary {
  padding: 9px 50px;
  width: 335px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cta-title {
    font-size: 22px;
  }
  .cta-subtitle {
    font-size: 18px;
  }
}

/* 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;
    }
}


.center-last {
 justify-self: center;
  grid-column: 1 / -1; /* span full row */
  max-width: 260px;    /* restrict width to match other items */
}


@media (max-width: 1200px) {
    .center-last {
        max-width: 331px; 
    }
}

/*  New applied classes end*/
  