html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-style: normal;
}


html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #d8d8d8;
    min-height: 100vh;
}


img {
    max-width: 100%;
    height: auto;
}

.hquote {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25.898px;
    color: white;
    font-size: large;
    background-image: 
        linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.581)),
        url(https://res.cloudinary.com/dmbsuidpz/image/upload/v1763826614/maintenanace_rkfl8u.jpg);
    background-size: cover;     
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; 
    margin: 0;
    min-height: 500px;
}

.hquote-content {
    position: relative;
    text-align: left;
    padding: 8.56em;
    padding-left: 4em;
    color: rgb(252, 253, 255);
    max-width: 1400px;
}

.hquote-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6em 1em;
    background-color: #d8d8d8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navleft {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.nav-logo-img {
    width: 80px; 
    height: 80px;
    object-fit: contain;
    border-radius: 0.3em;
}

.nav-logo-text a {
    color: #012b4e;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
}

.menu {
    padding: 1em 1.5em;
    border-radius: 1.2em;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background-color: #012b4e;
    font-size: 1rem;
    font-weight: bolder;
    transition: all 0.3s ease;
    margin-right: 1em;
}

.menu:hover {
    background-color: #c0392b;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(1, 59, 109, 0.38);
}

.dropdown {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: #012b4e;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    padding: 1.5em 0;
    z-index: 9999;
}

.dropdown ul {
    list-style: none;
    padding: 1.5em;
    margin: 0;
    margin-bottom: -1em;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.dropdown a {
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown a:hover {
    color: #c0392b;
}

@media (min-width: 768px) {
    .menu:hover + .dropdown,
    .dropdown:hover {
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .closebtn {
        display: none;
    }
}

.others {
    background-color: #d8d8d8; 
    margin: 0;
    padding: 0;
    width: 100%;
}


.about-us {
    padding: 0;
    margin: 0;
    background-color: #c0392b;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 500px;
}

.aboutusimg {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.aboutusimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(60%);
}

.aboutuscon {
    padding: 2em 3em 2em 2em;
}

.about-us h1 {
    color: #d8d8d8;
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 0.4em;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.about-us p {
    color: #d8d8d8;
    font-size: 1.11rem;
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 1.9em;
    margin-top: 1.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.231);
    letter-spacing: 0.01em;
}

.about-us button {
    width: 100px;
    height: 40px;
    border-radius: 30px;
    border: 1px solid #012b4e;
    background: #d8d8d8;
    color: #012b4e;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease; 
    float: right;
}

.about-us button:hover {
    background-color: #b4b4b4;
    color: #012b4e;
    text-decoration: none;
}

.about-us a{
    text-decoration: none;
    color: #012b4e;
}

.about-us a:hover{
    text-decoration: none;
}

.services {
    padding: 3em 6em;
    margin: 0;
    position: relative;
    background-color: #d8d8d8;
}

.services h1 {
    color: #012b4e;
    font-size: 2.6rem;
    margin-bottom: 1em;
    font-weight: 400;
}

.services h1 span {
    font-weight: 700;
}

.services-con {
    display: flex;
    overflow-x: auto;
    gap: 1.2em;
    scroll-behavior: smooth;
    padding-bottom: 3em;
    width: 100%;
}

.services-con::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 370px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.047);
    padding-bottom: 1.2em;
}

.service-card img {
    width: 370px;
    height: 50%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.service-card h2 {
    font-size: 1.4rem;
    color: #012b4e;
    margin: 0.8em 1em 0.4em;
    margin-left: 1em;
    font-weight: 750;
    letter-spacing: 0.01em;
}

.service-card p {
    margin-left: 0.4em;
    padding: 0.5em 1em 0em 1em;
    color: #333;
    line-height: 1.5;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: none;
    color: #fff;
    border: none;
    padding: 0.3em 0.5em;
    cursor: pointer;
    border-radius: 6px;
    z-index: 10;
    opacity: 0.8;
    transition: 0.3s;
}

.scroll-btn:hover {
    opacity: 6;
}

.scroll-btn.left {
    left: 2em;
}

.scroll-btn.right {
    right: 2em;
}

.services .lm {
    width: 120px;
    height: 40px;
    border-radius: 30px;
    border: 2px solid #012b4e;
    background: #d8d8d8;
    color: #012b4e;
    font-size: 1.07rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services a{
    color: #012b4e;
    text-decoration: none;
}

.services .lm:hover {
    background-color: #b4b4b4;
    color: #012b4e;
}


.products {
    padding: 3em 6em;
    margin: 0;
    background-color: #c0392b;
    color: #d8d8d8;
}

.products h1 {
    font-size: 2.6rem;
    margin-bottom: 0.5em;
    letter-spacing: 0.02em;
    font-weight: 750;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.products ul {
    list-style: none;
    line-height: 3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.231);
    font-weight: 200;
    font-size: 1.1rem;
    margin-bottom: 1.5em;
}

.products a{
    text-decoration: none;
    color: #012b4e;
}

.products-showcase {
    padding: 3em 6em;
    background-color: #c0392b;
    color: #d8d8d8;
}

.products-showcase h1 {
    font-size: 2.6rem;
    margin-bottom: 1em;
    letter-spacing: 0.02em;
    font-weight: 750;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin-bottom: 2em;
}

.product-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-color: #c0392b;
}

.product-item:hover {
    transform: translateY(-10px);
    border-color: #012b4e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 1.5em;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
    color: #d8d8d8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.231);
}

.reqquo {
    width: 130px;
    height: 40px;
    border-radius: 30px;
    border: 1px solid #012b4e;
    background: #d8d8d8;
    color: #012b4e !important;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1em;
    text-decoration: none !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.reqquo:hover {
    background-color: #b4b4b4;
    color: #012b4e !important;
    text-decoration: none !important;
}


.contact {
    padding: 2em 6em;
    margin: 0;
    color: #d8d8d8;
    background-image:
        linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.581)),
        url(https://res.cloudinary.com/dmbsuidpz/image/upload/v1763973830/contaaact_orykbm.jpg);
    background-size: cover;     
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.contact h1 {
    color: #ffffff;
    font-size: 2.6rem;
    margin-bottom: 1.3em;
    font-weight: 600;
    text-shadow: 2px 2px 35px rgba(255, 255, 255, 0.7);
    padding-top: 0.7em;
}

.contact a {
    text-decoration: none;
    color: #d8d8d8;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #585858;
}

.contact span {
    font-size: 1.3em;
    letter-spacing: 0.1em;
    padding-bottom: 0m;
    display: block;
}

.con-re {
    padding-bottom: 3em;
}

.contact p {
    padding-top: 0.7em;
}

.upperfooter {
    padding: 2em 3em;
    background-color: rgba(0, 29, 53, 0.983);
    color: white;
    margin: auto;
    display: grid;
    grid-template-columns: 0.8fr 0.5fr 0.5fr;
    gap: 50px;
}

.upperfooter a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.upperfooter a:hover {
    color: #c0392b;
}

.footersection h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
    font-weight: 400;
}

.footersection h3 span {
    font-weight: 800;
}

.footersection p {
    margin-bottom: 13px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.footersection ul {
    list-style: none;
    padding: 0;
    padding-left: 0.15em;
}

.footersection li {
    margin-bottom: 8px;
}

.wa-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.lowerfooter {
    padding: 1.2em;
    background-color: #00192e;
    color: #d8d8d8;
    font-size: 1em;
    text-align: center;
}


@media (max-width: 1024px) {
    .hquote-content {
        padding: 4em 2em;
    }
    
    .hquote-content h1 {
        font-size: 3rem;
    }
    
    .services {
        padding: 3em 3em;
    }
    
    .products {
        padding: 3em 3em;
    }
    
    .contact {
        padding: 2em 3em;
    }
}

@media (max-width: 768px) {
       .navbar {
        padding: 0.6em 0.5em;
    }
    
    .nav-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .nav-logo-text a {
        font-size: 1.3rem;
    }
    
    .menu {
        padding: 0.8em 1.2em;
        font-size: 0.9rem;
        margin-right: 0.5em;
    }

    a, button {
        -webkit-tap-highlight-color: transparent;
    }

    .dropdown {
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: #012b4e;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        padding: 1em 1.5em;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown.show {
        transform: translateX(0);
    }

    .dropdown ul {
        flex-direction: column;
        gap: 2em;
        text-align: left;
        width: 100%;
        margin-top: -7em;
    }

    .closebtn {
        display: block;
        position: absolute;
        top: 2em;
        right: 0.8em;
        background: transparent;
        color: white;
        border: none;
        font-size: 1.7rem;
        padding: 0.2em 0.4em;
        cursor: pointer;
        z-index: 10000;
    }

    .closebtn:hover {
        color: #e74c3c;
    }

    .hquote {
        padding: 15px;
        min-height: 350px;
        background-image: 
        linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.488)),
        url(https://res.cloudinary.com/dmbsuidpz/image/upload/v1763826614/maintenanace_rkfl8u.jpg);
    }
    
    .hquote-content {
        padding: 2em 1.5em;
    }
    
    .hquote-content h1 {
        font-size: 2.4rem;
    }

    .about-us {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .about-us img {
        border-radius: 2em 2em 0 0;   
    }

    .aboutusimg {
        min-height: 300px;
    }
    
    .aboutuscon {
        padding: 2em 1.5em;
    }
    
    .about-us h1 {
        font-size: 1.8rem;
        padding-top: 0.6em;
        padding-bottom: 0.4em;
    }
    
    .about-us p {
        font-size: 1rem;
        line-height: 1.6em;
        padding-bottom: 0.5em;
    }
    
    .about-us button {
        float: none;
        display: block;
        margin: 1em auto 0;
    }
    
    .services {
        padding: 2em 1em;
    }
    
    .services h1 {
        font-size: 2rem;
        padding-top: 0.6em;
        padding-bottom: 0.4em;
    }
    
    .service-card {
        min-width: calc(100% - 0.5em);
        width: calc(100% - 2em);
        scroll-snap-align: center;
    }

    .service-card p{
        padding-bottom: 1em;
    }

    .service-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
        display: block;
    }

    .scroll-btn {
        display: none;
    }
    
    .services .lm {
        display: block;
        margin: 0 auto;
    }
    
    .products {
        padding: 2em 1.5em;
    }
    
    .products h1 {
        font-size: 2rem;
        padding-top: 0.6em;
        padding-bottom: 0.8em;
    }
    
    .products ul {
        font-size: 1rem;
        line-height: 2.5;
        padding-bottom: 0.6em;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .product-item img {
        height: 200px;
    }

    .reqquo {
        display: block;
        margin: 1em auto;
    }

    .contact {
        padding: 2em 1.5em;
    }
    
    .contact h1 {
        font-size: 2rem;
    }
    
    .contact span {
        font-size: 1.1em;
    }

    .upperfooter {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 2em 1.5em;
    }
    
    .footersection h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .nav-logo-text a {
        font-size: 1.1rem;
    }
    
    .nav-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .menu {
        padding: 0.6em 1em;
        font-size: 0.85rem;
    }

    a, button {
        -webkit-tap-highlight-color: transparent;
    }
    
    .dropdown {
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: #012b4e;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        padding: 1em 1.5em;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown.show {
        transform: translateX(0);
    }

    .dropdown ul {
        flex-direction: column;
        gap: 2em;
        text-align: left;
        width: 100%;
        margin-top: -7em;
    }

    .closebtn {
        display: block;
        position: absolute;
        top: 2em;
        right: 0.8em;
        background: transparent;
        color: white;
        border: none;
        font-size: 1.7rem;
        padding: 0.2em 0.4em;
        cursor: pointer;
        z-index: 10000;
    }

    .closebtn:hover {
        color: #e74c3c;
    }
    
    .hquote {
        min-height: 300px;
    }
    
    .hquote-content {
        padding: 2em 1em;
    }
    
    .hquote-content h1 {
        font-size: 1.5rem;
    }
    
    .aboutusimg {
        min-height: 250px;
    }

    .about-us img {
        border-radius: 2em 2em 0 0;
    }
    
    .aboutuscon {
        padding: 1.5em 1em;
    }
    
    .about-us h1 {
        font-size: 1.5rem;
    }
    
    .about-us p {
        font-size: 0.95rem;
    }
    
    .services {
        padding: 2em 1em;
    }
    
    .services h1 {
        font-size: 2rem;
        padding-top: 0.6em;
        padding-bottom: 0.4em;
    }
    
    .service-card {
        min-width: calc(100% - 0.5em);
        width: calc(100% - 2em);
    }

    .service-card p{
        padding-bottom: 1em;
        font-size: 0.95rem;
    }

    .service-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
        display: block;
    }
    
    .service-card h2 {
        font-size: 1.2rem;
    }
    
    .products {
        padding: 2em 1em;
    }
    
    .products h1 {
        font-size: 1.7rem;
    }
    
    .products ul {
        font-size: 0.95rem;
    }
    
    .contact {
        padding: 2em 1em;
    }
    
    .contact h1 {
        font-size: 1.7rem;
    }
    
    .upperfooter {
        padding: 1.5em 1em;
    }
    
    .lowerfooter {
        font-size: 0.9em;
        padding: 1em;
    }
}

@media (max-width: 375px) {
    .hquote-content h1 {
        font-size: 1.3rem;
    }

    a, button {
        -webkit-tap-highlight-color: transparent;
    }
    
    .dropdown {
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: #012b4e;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        padding: 1em 1.5em;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown.show {
        transform: translateX(0);
    }

    .dropdown ul {
        flex-direction: column;
        gap: 2em;
        text-align: left;
        width: 100%;
        margin-top: -7em;
    }

    .closebtn {
        display: block;
        position: absolute;
        top: 2em;
        right: 0.8em;
        background: transparent;
        color: white;
        border: none;
        font-size: 1.7rem;
        padding: 0.2em 0.4em;
        cursor: pointer;
        z-index: 10000;
    }

    .closebtn:hover {
        color: #e74c3c;
    }
    
    .about-us h1 {
        font-size: 1.3rem;
    }
    
    .services h1,
    .products h1,
    .contact h1 {
        font-size: 1.5rem;
    }
    
    .service-card {
        min-width: calc(100% - 0.5em);
        width: calc(100% - 2em);
    }

    .service-card img{
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
        display: block;
    }
}

@media (hover: none) {
    .menu:hover,
    .about-us button:hover,
    .services .lm:hover,
    .reqquo:hover {
        transform: none;
        box-shadow: none;
    }
    
    .menu:active {
        background-color: #c0392b;
        transform: scale(0.98);
    }
}

/*about us pg*/

.page-hero {
    background: linear-gradient(135deg, #012b4e 0%, #014a7d 100%);
    padding: 6em 2em 4em;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5em;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4em 2em;
    background-color: #d8d8d8;
}

.about-intro {
    margin-bottom: 4em;
}

.about-intro h2 {
    color: #012b4e;
    font-size: 2.5rem;
    margin-bottom: 1em;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1f1f1f;
    margin-bottom: 1em;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
    margin-bottom: 4em;
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3em;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #012b4e;
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(1, 43, 78, 0.15);
}

.mission-box .icon,
.vision-box .icon {
    font-size: 4rem;
    margin-bottom: 0.5em;
}

.mission-box h3,
.vision-box h3 {
    color: #012b4e;
    font-size: 2rem;
    margin-bottom: 0.8em;
    font-weight: 700;
}

.mission-box p,
.vision-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-values {
    margin-bottom: 4em;
}

.about-values h2 {
    color: #012b4e;
    font-size: 2.5rem;
    margin-bottom: 1.5em;
    font-weight: 700;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

.value-item {
    background: white;
    padding: 2em;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #d8d8d8;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #c0392b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: #c0392b;
    margin-bottom: 0.5em;
}

.value-item h4 {
    color: #012b4e;
    font-size: 1.3rem;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.about-team {
    background: linear-gradient(135deg, #012b4e 0%, #014a7d 100%);
    padding: 3em;
    border-radius: 15px;
    color: white;
    margin-bottom: 4em;
}

.about-team h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8em;
    font-weight: 700;
    text-align: center;
}

.about-team > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2em;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin-top: 2em;
}

.stat-item {
    text-align: center;
    padding: 2em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ff523e;
    margin-bottom: 0.3em;
    text-shadow: 0 0 5px rgba(255, 80, 80, 0.4),
    0 0 10px rgba(255, 80, 80, 0.3);
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-certifications {
    margin-bottom: 4em;
}

.about-certifications h2 {
    color: #012b4e;
    font-size: 2.5rem;
    margin-bottom: 1em;
    font-weight: 700;
}

.about-certifications ul {
    list-style: none;
    padding: 0;
}

.about-certifications li {
    padding: 1em 1.5em;
    margin-bottom: 0.8em;
    background: #f8f9fa;
    border-left: 4px solid #c0392b;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-certifications li:hover {
    background: #e9ecef;
    padding-left: 2em;
}

.about-cta {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    padding: 4em;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8em;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2em;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn-primary,
.about-cta .btn-secondary {
    padding: 1em 2.5em;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    border: 2px solid white;
    min-width: 180px;
    justify-content: center;
}

.about-cta .btn-primary {
    background: white;
    color: #c0392b;
}

.about-cta .btn-primary:hover {
    background: #012b4e;
    color: white;
    border-color: #012b4e;
    transform: translateY(-3px);
}

.about-cta .btn-secondary {
    background: transparent;
    color: white;
}

.about-cta .btn-secondary:hover {
    background: white;
    color: #c0392b;
    transform: translateY(-3px);
}

.dropdown a.active {
    color: #c0392b;
    font-weight: 800;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4em 1.5em 3em;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1.1rem;
    }

    .about-page-content {
        padding: 3em 1.5em;
    }

    .about-intro h2 {
        font-size: 2rem;
    }

    .about-intro p {
        font-size: 1rem;
    }

    .about-mission-vision {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .mission-box,
    .vision-box {
        padding: 2em;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .about-cta {
        padding: 3em 1.5em;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1em;
    }

    .about-cta .btn-primary,
    .about-cta .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.7rem;
    }

    .about-intro h2,
    .about-values h2,
    .about-team h2,
    .about-certifications h2,
    .about-cta h2 {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* 404 */
.errorbtnhome{
    padding: 1em 2.5em;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    min-width: 180px;
    justify-content: center;
    color:#012b4e;
    background-color: #b8b8b8;
}



.errorbtnhome:hover{
    background-color: #b4b4b4;
    color: #012b4e;
}


/*services*/

.services-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4em 2em;
    background: #d8d8d8;
}

.services-intro {
    text-align: left;
    margin: 0 auto 4em;
}

.services-intro h2 {
    color: #012b4e;
    font-size: 2.5rem;
    margin-bottom: 0.8em;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1f1f1f;
}

.services-detailed {
    margin-bottom: 4em;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
    margin-bottom: 4em;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-detail:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.service-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-detail-image {
    order: 2;
}

.service-detail.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content {
    padding: 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    color: #012b4e;
    font-size: 2.2rem;
    margin-bottom: 0.8em;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.5em;
}

.service-detail-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #c0392b;
    border-radius: 2px;
}

.service-detail-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1f1f1f;
    margin-bottom: 1.5em;
}

.service-detail-content h4 {
    color: #012b4e;
    font-size: 1.3rem;
    margin: 1.5em 0 0.8em;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2em;
}

.service-detail-content li {
    padding: 0.8em 0;
    padding-left: 2em;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #1f1f1f;
    border-bottom: 1px solid #f0f0f0;
}

.service-detail-content li:last-child {
    border-bottom: none;
}

.service-detail-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-content li strong {
    color: #012b4e;
    font-weight: 700;
}

.service-cta {
    display: flex;
    gap: 1em;
    margin-top: 2em;
    flex-wrap: wrap;
}

.service-cta .btn-primary,
.service-cta .btn-secondary {
    padding: 0.9em 2em;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    border: 2px solid transparent;
}

.service-cta .btn-primary {
    background: #c0392b;
    color: white;
    border-color: #c0392b;
}

.service-cta .btn-primary:hover {
    background: #a02a20;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
}

.service-cta .btn-secondary {
    background: white;
    color: #012b4e;
    border: 2px solid #012b4e;
}

.service-cta .btn-secondary:hover {
    background: #012b4e;
    color: white;
    transform: translateY(-2px);
}

.services-final-cta .btn-primary{
    padding: 1em 2.5em;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    border: 2px solid white;
    min-width: 180px;
    justify-content: center;
    color: white;
}

.services-final-cta .btn-primary:hover{
    color:#c0392b;
    background-color: white;
    transform: translateY(-3px);
}


.services-why-choose {
    background: linear-gradient(135deg, #012b4e 0%, #014a7d 100%);
    padding: 4em 3em;
    border-radius: 15px;
    margin-bottom: 4em;
    color: white;
}

.services-why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 2em;
    font-weight: 700;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
}

.why-item {
    text-align: center;
    padding: 2em 1em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: #c0392b;
    text-shadow: 0 2px 35px rgba(255, 255, 255, 0.311);
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.why-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.services-final-cta {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    padding: 4em 3em;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.services-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.services-final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2em;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .service-detail {
        gap: 2em;
    }

    .service-detail-content {
        padding: 2em;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-page-content {
        padding: 3em 1.5em;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .services-intro p {
        font-size: 1rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 2em;
    }

    .service-detail.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse .service-detail-image,
    .service-detail.reverse .service-detail-content {
        order: unset;
    }

    .service-detail-image img {
        min-height: 300px;
    }

    .service-detail-content {
        padding: 2em 1.5em;
    }

    .service-detail-content h3 {
        font-size: 1.8rem;
    }

    .service-detail-content > p {
        font-size: 1rem;
    }

    .service-detail-content h4 {
        font-size: 1.2rem;
    }

    .service-detail-content li {
        font-size: 0.95rem;
        padding-left: 1.8em;
    }

    .service-cta {
        flex-direction: column;
    }

    .service-cta .btn-primary,
    .service-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .services-why-choose {
        padding: 3em 1.5em;
    }

    .services-why-choose h2 {
        font-size: 2rem;
    }

    .services-final-cta {
        padding: 3em 1.5em;
    }

    .services-final-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1em;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-intro h2,
    .services-why-choose h2,
    .services-final-cta h2 {
        font-size: 1.7rem;
    }

    .service-detail-content h3 {
        font-size: 1.5rem;
    }

    .service-detail-image img {
        min-height: 250px;
    }

    .why-icon {
        font-size: 2.5rem;
    }
}