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

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

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

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

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

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

.btn-primary:hover {
  background-color: #084a63;
}
.btn1-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}
.btn-secondary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* .btn-secondary:hover {
  background-color: #d99a02;
} */
.form-group1 {
    margin-bottom: 15px;
}
/* CSS for section section:header */

.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;
    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(--primary-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; }
}


/* .site-header {
  background-color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
   width: 100%;
}
.logo img {
  display: block;
  height: 50px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 35px;
}

#main-nav {
  display: flex;
  gap: 40px;
}

#main-nav a {
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 0;
  text-decoration: none;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}
.phone-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.phone-contact img {
  width: 19px;
  height: 18px;
}
.header-contact .btn {
  padding: 10px 28px;
  font-size: 15px;
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 1200px) {
  .main-nav {
    display: none; In a real project, this would be handled by JS
  }
  .header-contact .phone-contact {
    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: 480px) {
    .header-contact .btn {
        display: none;
    }
} */
/* hearder ends */

/* CSS for section section:footer */

.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(--text-light);
}
.footer-main {
    background-color: var(--text-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 1fr 1.5fr 1.5fr 1fr;
    gap: 40px;
}

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

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

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

@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;
    }
}

/* .site-footer {
  color: var(--text-light);
}
.footer-main {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--secondary-color);
  padding: 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr 0.8fr;
  gap: 40px;
}
.footer-col h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-col a {
    text-decoration: none;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 18px;
}
.footer-about p {
  font-size: 12px;
  line-height: 1.5;
  color: #d9d9d9;
  text-align: justify;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  font-size: 14px;
  color: #a8a8a8;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--text-light);
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a img {
  width: 24px;
  height: 24px;
}
.footer-bottom {
  background-color: #141414;
  padding: 25px 0;
  text-align: center;
  font-size: 15px;
}
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-about {
    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-about p {
    text-align: center;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .social-links {
    justify-content: center;
  }
} */
/* footer ends */