: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;
}
.section-container{
	padding: 80px 100px;
}
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: 10px;
}

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

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


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