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

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

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

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

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

ul {
    list-style: none;
}


section {
  padding: 80px 0;
}

.section-title {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
}
.btn1-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 15px;
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 15px;
}

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

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 18px;
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 15px;
}

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

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 20px;
  }
  .section-subtitle {
    font-size: 14px;
  }
}


 
/* Header Class start */
.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 Class end */


/* 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 1fr 1.5fr 1.5fr 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: 15px;
    color: var(--white);
}

@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 */
  