html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    padding: 0;
    background: #000000;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}



header {
    background: #1b1b1b;
    width: 100%;
    min-height: 120px;
}

.navbar {
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 120px;
}




.logo {
    width: 300px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;
}

.logo img {
    width: 260px;
    max-width: 100%;
    height: auto;
    display: block;
}




.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #1E90FF;
}




.quote a {
    background: #1E90FF;
    color: white;

    padding: 12px 25px;

    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;

    display: inline-block;
    transition: 0.3s;
}

.quote a:hover {
    background: #1476d4;
    transform: translateY(-2px);
}




.hero {
    width: 1200px;
    max-width: calc(100% - 40px);

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 70px 0;
}

.hero-left {
    width: 48%;
}

.hero-right {
    width: 48%;
    text-align: right;
}

.hero-right img {
    width: 500px;
    max-width: 100%;

    border-radius: 20px;

    transition: 0.4s;
}

.hero-right img:hover {
    transform: scale(1.03);
}




.badge {
    display: inline-block;

    background: #222222;
    color: white;

    padding: 8px 20px;

    border-radius: 20px;

    margin-bottom: 30px;
}




.hero h1 {
    font-size: 72px;
    line-height: 80px;

    color: white;

    margin: 0;
}

.hero h1 span {
    color: #1E90FF;
}

.hero p {
    color: #bdbdbd;

    font-size: 22px;
    line-height: 40px;

    margin-top: 30px;
}




.button,
.button2 {
    display: inline-block;

    margin-top: 30px;

    padding: 16px 30px;

    text-decoration: none;

    border-radius: 8px;

    transition: 0.3s;
}

.button {
    background: #1E90FF;
    color: white;
    margin-right: 15px;
}

.button2 {
    border: 2px solid #1E90FF;
    color: white;
}

.button:hover,
.button2:hover {
    transform: translateY(-3px);
}

.button:hover {
    background: #1476d4;
}

.button2:hover {
    background: #1E90FF;
}




.container {
    width: 1200px;
    max-width: calc(100% - 40px);

    margin: auto;

    background: #000000;
}




.header {
    text-align: center;

    padding: 40px;

    border-bottom: 3px solid #1E90FF;
}

.header h1 {
    color: #1E90FF;
    font-size: 42px;
}

.header h3 {
    color: white;
}




.section {
    padding: 40px;

    scroll-margin-top: 120px;
}

.section h2 {
    color: #1E90FF;

    border-bottom: 2px solid #1E90FF;

    padding-bottom: 10px;
}

.section h3 {
    color: #1E90FF;
}

.section p {
    line-height: 1.8;
}

.section ul {
    line-height: 2;
}




.menu {
    text-align: center;
    margin: 30px;
}

.menu span {
    padding: 15px 30px;

    background: #1E90FF;

    margin: 10px;

    display: inline-block;

    font-weight: bold;
}




.banner {
    background: #132852;

    padding: 30px;

    text-align: center;

    margin-bottom: 40px;

    border-radius: 12px;
}

.banner a {
    text-decoration: none;

    color: white;

    background: #1E90FF;

    padding: 15px 25px;

    display: inline-block;

    margin: 10px;

    font-weight: bold;

    border-radius: 8px;

    transition: 0.3s;
}

.banner a:hover {
    transform: translateY(-3px);
}



.services {
    width: 100%;

    border-spacing: 20px;
}

.services td {
    background: #132852;

    padding: 20px;

    vertical-align: top;

    border-left: 5px solid #1E90FF;

    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    transition: 0.3s;
}

.services td:hover {
    transform: translateY(-3px);
}




.stats {
    width: 100%;

    text-align: center;

    margin-top: 30px;

    border-spacing: 15px;
}

.stats td {
    background: #132852;

    padding: 25px;

    border-radius: 12px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stats h2 {
    border: none;

    color: #1E90FF;

    font-size: 36px;

    margin-bottom: 10px;
}




.sites-link {
    color: white;

    text-decoration: none;

    font-size: 18px;

    transition: 0.3s;
}

.sites-link:hover {
    color: #1E90FF;

    text-decoration: underline;
}




.contact {
    width: 100%;

    text-align: center;

    border-spacing: 15px;
}

.contact td {
    background: #132852;

    padding: 30px;

    border-radius: 12px;
}

.contact-link {
    color: white;

    text-decoration: none;

    transition: 0.3s;

    font-size: 18px;
}

.contact-link:hover {
    color: #1E90FF;

    text-decoration: underline;
}




.phone-numbers {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.phone-numbers a {
    color: #9a9a9a;

    text-decoration: none;

    font-size: 18px;

    transition: 0.3s;
}

.phone-numbers a:hover {
    color: #1E90FF;
}




.footer {
    background: #242424;

    width: 100%;

    min-height: 500px;

    padding: 80px 0 40px 0;

    margin-top: 70px;
}

.footer-container {
    width: 1200px;
    max-width: calc(100% - 40px);

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}




.footer-column {
    width: 23%;
}

.footer-logo {
    width: 150px;

    max-width: 100%;

    margin-bottom: 20px;
}

.footer-column h3 {
    color: #ffffff;

    font-size: 22px;

    margin-bottom: 25px;
}

.footer-column p {
    color: #9a9a9a;

    line-height: 32px;

    font-size: 19px;
}

.footer-column a {
    display: block;

    text-decoration: none;

    color: #9a9a9a;

    margin-bottom: 18px;

    font-size: 19px;

    transition: 0.3s;
}

.footer-column a:hover {
    color: #1E90FF;
}




.contact-item {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}

.contact-item .icon {
    font-size: 20px;

    width: 25px;

    text-align: center;

    flex-shrink: 0;
}

.contact-item a {
    color: #9a9a9a;

    text-decoration: none;

    font-size: 18px;

    margin-bottom: 0;

    transition: 0.3s;
}

.contact-item a:hover {
    color: #1E90FF;
}

.contact-item span:not(.icon) {
    color: #9a9a9a;

    font-size: 18px;
}




.footer hr {
    width: 1200px;

    max-width: calc(100% - 40px);

    margin: 50px auto 25px auto;

    border: none;

    border-top: 1px solid #444444;
}



.copyright {
    width: 1200px;

    max-width: calc(100% - 40px);

    margin: auto;

    display: flex;

    justify-content: space-between;

    color: #7c7c7c;

    font-size: 16px;

    gap: 30px;
}




@media (max-width: 1100px) {

    .navbar {
        width: 100%;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .logo {
        width: 240px;
    }

    .logo img {
        width: 220px;
    }

    .hero h1 {
        font-size: 58px;
        line-height: 65px;
    }

    .hero p {
        font-size: 20px;
        line-height: 32px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 17px;
    }

}




@media (max-width: 850px) {

    header {
        min-height: auto;
    }

    .navbar {
        min-height: auto;

        padding: 20px 0;

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;
    }

    .logo {
        width: 100%;

        height: auto;

        justify-content: center;
    }

    .logo img {
        width: 250px;
    }

    .nav-links {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 15px;
    }

    .quote {
        width: 100%;

        text-align: center;
    }

    .hero {
        flex-direction: column;

        padding: 50px 0;
    }

    .hero-left,
    .hero-right {
        width: 100%;

        text-align: center;
    }

    .hero-right {
        margin-top: 40px;
    }

    .hero h1 {
        font-size: 52px;

        line-height: 60px;
    }

    .hero p {
        font-size: 19px;

        line-height: 32px;
    }

    .footer-container {
        flex-wrap: wrap;

        gap: 40px;
    }

    .footer-column {
        width: 45%;
    }

}



@media (max-width: 600px) {

    html {
        scroll-padding-top: 20px;
    }


    

    header {
        min-height: auto;
    }

    .navbar {
        width: 100%;

        max-width: none;

        padding: 20px;

        flex-direction: column;

        gap: 20px;
    }

    .logo {
        width: 100%;

        height: auto;

        justify-content: center;
    }

    .logo img {
        width: 230px;
    }


    
    .nav-links {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

    .nav-links a {
        font-size: 17px;

        padding: 5px;
    }


  
    .quote {
        width: 100%;

        text-align: center;
    }

    .quote a {
        display: inline-block;
    }


   

    .hero {
        width: 100%;

        max-width: none;

        padding: 40px 20px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero h1 {
        font-size: 40px;

        line-height: 48px;
    }

    .hero p {
        font-size: 17px;

        line-height: 29px;

        margin-top: 20px;
    }

    .badge {
        margin-bottom: 20px;
    }

    .hero-right {
        margin-top: 30px;

        text-align: center;
    }

    .hero-right img {
        width: 100%;

        max-width: 500px;
    }


   

    .button,
    .button2 {
        display: block;

        width: 100%;

        max-width: 300px;

        margin: 20px auto 0 auto;

        text-align: center;
    }

    .button {
        margin-right: auto;
    }


  
    .container {
        width: 100%;

        max-width: none;

        padding: 0 15px;
    }


   

    .section {
        padding: 30px 10px;
    }

    .section h2 {
        font-size: 28px;
    }


   

    .banner {
        padding: 25px 15px;
    }

    .banner a {
        display: block;

        margin: 10px auto;

        max-width: 250px;
    }


  

    .services {
        width: 100%;

        border-spacing: 0;
    }

    .services,
    .services tbody,
    .services tr,
    .services td {
        display: block;

        width: 100%;
    }

    .services td {
        margin-bottom: 20px;

        padding: 20px;
    }


   

    .stats {
        width: 100%;

        border-spacing: 0;
    }

    .stats,
    .stats tbody,
    .stats tr,
    .stats td {
        display: block;

        width: 100%;
    }

    .stats td {
        margin-bottom: 15px;

        padding: 20px;
    }

    .stats h2 {
        font-size: 32px;
    }


    

    .contact {
        width: 100%;

        border-spacing: 0;
    }

    .contact,
    .contact tbody,
    .contact tr,
    .contact td {
        display: block;

        width: 100%;
    }

    .contact td {
        margin-bottom: 15px;

        padding: 25px 15px;
    }


   
    .contact-link {
        font-size: 17px;

        word-break: break-word;
    }


    
    .phone-numbers {
        align-items: center;

        gap: 8px;
    }

    .phone-numbers a {
        font-size: 17px;
    }


   
    .footer {
        padding: 50px 0 30px 0;

        margin-top: 50px;
    }

    .footer-container {
        width: 100%;

        max-width: none;

        padding: 0 20px;

        display: block;
    }

    .footer-column {
        width: 100%;

        margin-bottom: 40px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-column h3 {
        font-size: 20px;

        margin-bottom: 18px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 17px;

        line-height: 28px;
    }

    .footer hr {
        width: calc(100% - 40px);

        margin: 20px auto 25px auto;
    }


   
    .contact-item {
        gap: 12px;

        align-items: flex-start;
    }

    .contact-item .icon {
        margin-top: 2px;
    }




    .copyright {
        width: 100%;

        max-width: none;

        padding: 0 20px;

        display: block;

        text-align: center;

        font-size: 14px;
    }

    .copyright p {
        margin-bottom: 15px;
    }

}




@media (max-width: 380px) {

    .logo img {
        width: 200px;
    }

    .hero h1 {
        font-size: 34px;

        line-height: 42px;
    }

    .hero p {
        font-size: 16px;

        line-height: 27px;
    }

    .section h2 {
        font-size: 25px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 16px;
    }

}