:root {
  --primary-color: #f4ae03;
  --secondary-color: #0a5d7c;
  --text-dark: #1a1921;
  --text-light: #454545;
  --bg-light: #f5f6f8;
  --bg-dark: #1d1d1d;
  --white: #ffffff;
  --border-color: #d9d9d9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--text-light);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--text-light);
  max-width: 990px;
  margin: 0 auto 40px;
}

.divider {
  width: 65px;
  height: 5px;
  background-color: var(--primary-color);
  margin: 20px auto;
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 400;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn1-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

/* .btn-primary:hover {
  opacity: 0.9;
} */

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* .btn-secondary:hover {
  opacity: 0.9;
} */

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 22px;
  }
}

/* CSS for section section:header */
/* .site-header {
  background-color: var(--white);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.header-container {
  display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; 
    width: 85%;
    margin: 0px 100px;
}
.logo img {
  height: 140px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 30px;
}

#main-nav {
list-style: none;
  display: flex;
  gap: 40px;
}
#main-nav a {
text-decoration: none; 
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 400;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--primary-color);
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
}
.phone-link img {
  width: 18px;
  height: 18px;
}
.header-contact .btn {
  padding: 12px 24px;
  font-size: 15px;
}
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .main-nav, .header-contact .phone-number {
    display: none;
  }
  .mobile-nav-toggle {
    display: block; In a real project, this would toggle the nav visibility
  }
  .mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
  }
}
@media (max-width: 480px) {
    .header-contact .btn {
        display: none;
    }
} */
.site-header {
    background-color: var(--white);
    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;
    cursor: pointer;
}
.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) {
    .main-nav{ 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 ends */

/* Footer Class start */

.about-col .footer-logo {
    /* width: 123px; */
    max-width: 100%;
    height: auto;
    display: block;
    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(--white);
}
.footer-main {
    background-color: var(--bg-dark);
    padding: 40px 0;
    border-top: 1px solid var(--primary-color);
}

.footer-container {
   width: 85%;
    margin: auto;
    
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr;
    gap: 40px;
}

.links-col h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.links-col ul li a {
    text-decoration: none !important;
    color: #a8a8a8;
    font-size: 14px;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 10px;
    color: var(--white);
}
.social-icons img {
    width: 24px;
}
.footer-copyright {
    background-color: #141414;
    text-align: center;
    padding: 25px 0;
    font-size: 13px;
   color: #a8a8a8;
}

@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 */
  
/* CSS for section section:footer */
/* .site-footer {
  padding: 0;
}
.footer-main {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--primary-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1fr;
  gap: 30px;
}
.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}
.footer-col p {
  font-size: 12px;
  line-height: 1.5;
  color: #d9d9d9;
  text-align: justify;
}
.footer-col h5 {
color: var(--white);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.links-col ul {
    list-style: none;
  }
  .links-col li {
    margin-bottom: 12px;
  }
  .links-col a {
    text-decoration: none;
    color: #a8a8a8;
    font-size: 14px;
    transition: color 0.3s;
  }
  .links-col a:hover {
    color: var(--white);
  }
  .social-icons {
    display: flex;
    gap: 10px;
  }
  .social-icons a img {
    width: 24px;
    height: 24px;
  }
  .footer-bottom {
    background-color: #141414;
    padding: 25px 0;
    text-align: center;
    color: var(--white);
    font-size: 15px;
  }
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: #a8a8a8;
  transition: color 0.3s ease;
}
.footer-col ul a:hover {
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links img {
  width: 24px;
  height: 24px;
}
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-col {
      grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
      margin-left: auto;
      margin-right: auto;
    }
    .about-col p {
      text-align: center;
    }
    .social-icons {
      justify-content: center;
    }
  .footer-col p {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
} */

/* footer ends */