@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
h1,h2,h3,h4,p{
        font-family: 'Poppins', sans-serif;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: white;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    background: #fff;
    padding: 15px 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #065075;
    font-weight: bold;
    background: white;
}

nav ul li button {
    background: #2A4B7C;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

nav ul li button:hover {
    background: #1E3A5F;
}

.logo img {
    height: 50px;
}
.logo_home{
    width: 100px;
}

.hero {
    text-align: center;
    width: 100%;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-overlay {
    padding: 30px;
    display: inline-block;
    margin: 40px auto;
}

section {
    padding: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    padding: 20px;
    width: 100%;
    margin: auto;
}

.service {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    font-size: 24px;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background-size: cover;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    color: white;
    justify-content: space-between;
    flex: 1 1 50%;
    background-position: top;
    background-repeat: no-repeat;
    padding: 20px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    background: #222;
    color: #fff;
    padding: 20px;
}

.contact-map iframe {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border: 0;
}

section#about {
    background: white;
}

.section {
    padding: 10px 140px;
}

#services h3 {
    color: #171a1f;
    font-size: 30px;
    text-align: left;
}
#services p{
    color: gray;
    text-align: justify;
    max-width: 100%;
    overflow: hidden;
}

.service-detail img {

    width: 300px;
}

.section h2 {
    color: #171a1f;

    font-size: 40px;
}

h1 {
    color: #171a1f;
}

.hero p {
    color: #565e6c;
    font-weight: 700;
    text-align: justify;
}

.section p {
    color: #565e6c;
    font-weight: 500;
}

.hero-overlay h1 {
    font-size: 46px;
}

.service-body h3 {
    color: #171a1f;
}

.service-detail .text-detail {
    width: 50%;
    padding: 10px 40px;
}

img.flip {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}


.footer {
    background: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 50px;
    column-gap: 100px;
}

.footer-left {
    max-width: 50%;
    text-align: center;
}

.footer-left h3 {
    margin-bottom: 10px;
}

.footer-left p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.footer-left p i {
    margin-right: 10px;
}

.footer-icons {
    margin-top: 10px;
}

.footer-left .footer-icons a {
    width: 20px;
    margin-right: 10px;
    display: inline-block;
    font-size: 20px;
    color: white;
    background: #333;
    padding: 10px;
    border-radius: 10%;
    background: white;
    color: black;
    height: 20px;
    text-align: center;
    line-height: 20px;
    text-decoration: none;
    margin-top: 20px;
}

.footer-icons a:hover {
    background: #555;
}

.footer-right {
    max-width: 50%;
}

.footer-right img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.footer-bottom {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}


#features {
    text-align: center;
    padding: 50px 20px;
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-block img {
    width: 45%;
    border-radius: 8px;
}

.feature-block .feature-text {
    width: 50%;
    text-align: left;
}

.feature-block.even {
    flex-direction: row-reverse;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #2A4B7C;
    color: white;
}

.btn-primary:hover {
    background: #1E3A5F;
}

.btn-secondary {
    background: #eee;
    color: #333;
}

.btn-secondary:hover {
    background: #ddd;
}


.footer-left a {
    text-decoration: none;
    color: white;
}

img.footer-logo {
    height: 80px;
    margin: auto;
    width: 100%;
    object-fit: contain;
}




/* new added*/


header {
    background: #fff;
    padding: 15px 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li {
    display: inline;
}

.hero {
    text-align: center;
    width: 100%;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 20px;
    text-align: left;
    padding: 20px;
    width: 100%;
    margin: auto;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.service-detail img {
    width: 100%;
    max-width: 300px;
}

.service-detail .text-detail {
    width: 100%;
    max-width: 500px;
    padding: 10px 20px;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    width: 100vw;
}

.footer-left, .footer-right {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

@media (max-width: 1024px) {
    .section {
        padding: 40px 60px;
    }
    
    .hero-overlay h1 {
        font-size: 36px;
    }
    
    .service-detail {
        flex-direction: column;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        text-overflow: clip;
    }
    .service-detail.even{
        flex-direction: column-reverse;
    }
    .service-detail .text-detail {
        width: 100%;
        text-align: center;
        word-wrap: break-word;
        word-break: break-word;
        box-sizing: border-box;
    }
    .service-detail img{
        width:100px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .section {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    .feature-block {
    flex-direction: column-reverse!important;
        
    }
    .feature-block .feature-text, .feature-block img{
        width:100%
    }
    .feature-text p, #services p{
        text-align:left;
    }
    .footer {
        flex-direction: column;
        text-align: center;
    }
}
.login{
    padding: 5px 15px;
    color: white;
    background: #065075;
    border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}