body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: linear-gradient(
    180deg, 
    #041242 35%,
    #071B5E 55%,
    #041242 100%);
    color: #FFFFFF;
    overflow-x: hidden;
}
.section1{
    width: 100%;
}
.section1_div1{
    width: 90%;
    margin: auto;
}
/* Header */
.site-header {
    background: transparent;
    padding: 20px 40px;
    display: flex;
    align-items: center;
}

/* Logo Section */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;

    background: linear-gradient(90deg, #D4A017 0%, #B08AE6 45%, #6E5ACD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo h1 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #001F3F;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

/* Construction Note */
.construction-note {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.9;
    color: #E6ECF5;
}

/* Hero Section */
.hero {
    background: transparent; /* remove double gradient */
    padding: 60px 20px 120px 20px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    color: #FFFFFF;
    margin-bottom: 25px;
}
.hero-content{
    width: 48%;
}
.construction_tools_image{
    width: 48%;
}
.construction_image1{
    width: 100%;
}

.hero-sub {
    font-size: 22px;
    color: #D4A017; /* gold accent */
    font-weight: 500;
}

.hero-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 30px;
    background: #D4A017;
    color: #001F3F;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #C19015;
}

/* About Section */
.about {
    background: transparent;
    padding: 10px 20px;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #FFFFFF; /* FIXED: readable on navy */
    margin-bottom: 20px;
}

.about p {
    font-size: 17px;
    line-height: 1.7;
    color: #E6ECF5; /* softened white for readability */
}

.about h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #D4A017; /* gold divider */
    margin: 15px auto 35px auto;
    border-radius: 2px;
}

/* Services Section */
.services {
    background: transparent;
    padding: 110px 20px;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.services h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #FFFFFF; 
    margin-bottom: 40px;
}

.services h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #D4A017; /* gold accent */
    margin: 15px auto 35px auto;
    border-radius: 2px;
}
/* Section Divider Line */
.section-divider {
    width: 80px;
    height: 2px;
    background: #D4A017;
    margin: 0 auto 60px auto;
    opacity: 0.8;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Service Cards */
.service-card {
    background: #FFFFFF;
    padding: 35px 28px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border: 1px solid #D4A017; /* gold border */
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}


.service-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #001F3F;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.service-card a {
    font-weight: 500;
    color: #001F3F;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.service-card a:hover {
    border-bottom: 1px solid #D4A017;
}

.service-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #D4A017;
}

/* Contact Section */
.contact {
    padding: 120px 20px 140px 20px;
    text-align: center;
}

.contact-container {
    max-width: 750px;
    margin: 0 auto;
}

.contact h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.contact h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #D4A017;
    margin: 15px auto 35px auto;
    border-radius: 2px;
}

.contact p {
    color: #E6ECF5;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-email, .contact-phone {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #D4A017;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.contact-email:hover, .contact-phone:hover {
    border-bottom: 2px solid #D4A017;
}


/* Polish rules */
section {
    width: 100%;
}

h1, h2, h3 {
    letter-spacing: 0.4px;
}

html {
    scroll-behavior: smooth;
}