


: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;
}

.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;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 14px;
}

.btn1-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 18px;
}


.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;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 623px;
  padding-top: 88px; /* Header height */
  text-align: center;
  color: var(--text-light);
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 16, 0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-title {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 1px 1px 1px #000000;
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
}
.hero-btn {
  font-size: 18px;
  padding: 8px 50px;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}

/* CSS for section section:problem */
.problem-section {
  padding: 40px 0;
}
.problem-content {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-top: 70px;
}
.problem-text {
  flex: 1;
  max-width: 550px;
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
}
.problem-text p:last-child {
  margin-top: 24px;
  font-weight: 400;
  font-size: 16px;
}
.problem-list-container {
  flex: 1;
  max-width: 544px;
}
.problem-list-intro {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 21px;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.problem-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: var(--white);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  padding: 22px;
  font-size: 16px;
  font-weight: 400;
  min-height: 68px;
}
.problem-list li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.problem-icon-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .problem-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .problem-text {
    max-width: 600px;
  }
  .problem-list-container {
    max-width: 600px;
    width: 100%;
  }
  .problem-list-intro {
    text-align: left;
  }
}

/* CSS for section section:solution */
.solution-section {
  background-color: var(--light-bg);
  padding: 55px 0;
}
.solution-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 18px;
}
.solution-image-col {
  flex: 0 0 630px;
}
.solution-image-col img {
  border-radius: 0px 30px 30px 0px;
}
.solution-text-col {
  flex: 1;
  height: 420px;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 40px;
}
.solution-list li{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.5;

}

@media (max-width: 1024px) {
  .solution-container {
    flex-direction: column;
  }
  .solution-image-col {
    flex: 0 0 auto;
    width: 100%;
  }
  .solution-image-col img {
    border-radius: 15px;
  }
  .solution-text-col {
    text-align: center;
  }
  .solution-text-col .section-title {
    text-align: center;
  }
  .solution-text-col .section-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .list-item-with-check {
    text-align: left;
  }
  .solution-list{
  margin-left:25px;
  }
}

/* CSS for section section:features */
.features-section {
  padding: 50px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.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;
  text-align: center;
  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-title {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.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: 20px;
  flex-grow: 1;
  text-align:justify;
}
.card-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.card-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}
.card-features-list .list-item-with-check {
  font-size: 14px;
  line-height: 1.5;
  gap: 10px;
}
.card-features-list .list-item-with-check img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:why-us */
.why-us-section {
  background-color: var(--light-bg);
  margin-top: 36px;
  padding-bottom: 50px;
  padding-top: 50px;
}
.why-us-intro {
  max-width: 1165px;
  margin: 0 auto 50px;
  text-align: justify;
  font-size: 16px;
  line-height: 1.5;
}
.why-us-content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.why-us-text {
  flex: 1;
  max-width: 572px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 1.75;
  text-align:justify;
}
.why-us-list {
  flex: 1;
  max-width: 549px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
  .why-us-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .why-us-text, .why-us-list {
    max-width: 700px;
  }
}

/* CSS for section section:cta */
.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 275px;
  text-align: center;
  color: var(--text-light);
  padding: 40px 20px;
}
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 29, 0.75);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: -10px;
}
.cta-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 20px;
}
.cta-btn {
    font-size: 18px;
    padding: 12px 40px;
}
@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;
    }
}


/*  New applied classes end*/
  