* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Above navbar */
.contact-info {
    background-color: white;
    color: #003366;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info span {
    margin: 0 15px;
    font-size: 14px;
}

/* Navbar */
.navbars {
    background-color: #003366;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.navbars ul {
    list-style: none;
    display: flex;
}

.navbars ul li {
    margin-right: 20px;
}

.navbars ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbars ul li a:hover {
    color: #7BAF91;
}
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
   
   
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s ease;
  }
.buttonone {
    background-color: #7BAF91;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.buttonone:hover {
    background-color: #6F9E7C;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Hero section */
.hero {
    position: relative;
    height: 400px;
    background: url('../images/Grouting-1-S.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero h1 {
    font-size: 3em;
    font-weight: lighter;
    margin-bottom: 20px;
}

.hero .para {
    font-size: 1.2em;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    font-weight: lighter;
    font-style: italic;
}


/* About Us section */
.container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}

.about-us {
    padding: 40px;
    background: #f9f9f9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    animation: fadeIn 1.5s ease-in-out;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.about-us:hover {
    transform: translateY(0);
}

.about-us h1 {
    font-size: 28px;
    font-weight: bold;
    color: #003366;
}

.subtitle {
    font-size: 18px;
    font-weight: lighter;
    color: #003366;
    margin-bottom: 15px;
    font-style: italic;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #003366;
}

.description:hover {
    color: #00509E;
    cursor: pointer;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 90%;
    }

    .about-us h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description {
        font-size: 14px;
    }
}

/* Counting section */
.heading-counting {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
    background: linear-gradient(90deg, #003366, #00509E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1.5s ease-in-out;
    text-align: center;
    margin-top: 70px;
}

.counting-para {
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-style: italic;
    color: #ddd;
    animation: fadeIn 2s ease-in-out;
    margin-top: -20px;
    text-align: center;
}

.container-counting {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.counter-box {
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.3);
    text-align: center;
    width: 180px;
    transition: transform 0.3s ease-in-out;
    animation: popUp 1s ease-in-out;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: #003366;
    animation: fadeInUp 1.5s ease-in-out;
}

.label {
    font-size: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popUp {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

/* Why Choose Us section */
.container-why {
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 150px auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-section {
    flex: 1;
    background: url('../images/Screenshot\ 2025-02-19\ at\ 11.17.33\ AM.png') center/cover;
    position: relative;
}

.image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content-section {
    flex: 1;
    padding: 50px;
    background: #fff;
}

.container-why h2 {
    color: #003366;
    font-size: 28px;
    margin-bottom: 20px;
}

.container-why p {
    color: #003366;
    font-style: italic;
}

.accordion {
    margin-top: 20px;
}

.accordion-item {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.accordion-title {
    padding: 15px;
    cursor: pointer;
    background: #f5f5f5;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    color: #003366;
}

.accordion-title:hover {
    background: #e0e0e0;
}

.accordion-title span {
    font-size: 18px;
}

.accordion-content {
    display: none;
    padding: 15px;
    background: #fff;
    border-left: 3px solid #7BAF91;
}

.active .accordion-content {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #003366, #005599);
    color: white; 
    padding: 40px 0;
    text-align: center;
    margin-top: 100px;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    color: white;
}

.footer-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: white;
}

.footer-section p {
    font-size: 1em;
    line-height: 1.6;
    color: white;
}

.footer-section .social a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
  
}
.email{
    color: white;
}
.email:hover{
    color: #003366;
}
.icon{
    color: white;
}
.icon:hover{
color: #003366;
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .navbars {
        padding: 20px;
    }

    .navbars ul {
        flex-direction: column;
        align-items: center;
    }

    .navbars ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero .para {
        font-size: 1em;
    }

    .container-why {
        flex-direction: column;
        margin: 50px auto;
    }

    .image-section {
        height: 300px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
    .navbars {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        position: relative;
    }

    .burger {
        display: flex;
        position: absolute;
        top: 45px;
        right: 30px;
        z-index: 1001;
}

    .navbars ul {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background-color: #003366;
        padding: 10px 0;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbars ul.active {
        display: flex;
    }

    .navbars ul li {
        width: 100%;
        padding: 10px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero .para {
        font-size: 1em;
    }

    .container-why {
        flex-direction: column;
        margin: 50px auto;
    }

    .image-section {
        height: 300px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}