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

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.selector {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

header {
    background: #173C5C;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    cursor:pointer;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.menu1 {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    padding: 7px 15px;
    font-weight: 550;
}

.cta-btn {
    background: #87CEEB;
    border-radius: 20px;
}

.menu1:hover {
    background: #1d4f7a;
    transition: background 0.3s;
}

.menu2 {
    color: #173C5C;
    text-align: center;
    text-decoration: none;
    font-weight: 550;
    margin: 0 15px;
    padding: 10px 15px;
}

.menu2:hover {
    background: #87CEEB;
    color: #fff;
    transition: background 0.3s;
}

.hd-div{
    height:75px;
    padding:5px;
    color:white;
    display:flex;
    cursor:pointer;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    margin-top:18px;
    font-weight:bold;
}
.header-img{
    height:60px;
    width:60px;
    margin-left: 20px;
    margin-right: 10px
}

header .menu-toggle {
    display:none;
    flex-direction: column;
    cursor: pointer;
    border-radius:3px;
    background:#ecf0f1;
    padding:4px;
    width:30px;
}

header .menu-toggle .bar {
    width: 22px;
    height: 3px;
    border-radius:2px;
    background-color: #87CEEB;
    margin: 2px 0;
}

.hero {
    background: url(images/Display.webp) no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 60, 92, 0.65);
}

.hero-img {
    height:180px;
    width: 180px;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

.hero .cta-btn {
    background: #87CEEB;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
}

.hero .cta-btn:hover {
    background: #173C5C;
    transition: background 0.3s;
}
.services {
    padding: 60px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    color: #173C5C;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.services-container a {
    text-decoration:none;
}

.service-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
    text-align: center;
    min-height:400px;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 180px;
    height: 180px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #173C5C;
    margin: 15px 0 10px;
}

.service-item p {
    font-size: 1rem;
    color: #173C5C;
    line-height: 1.6;
}

.team {
    background: #ecf0f1;
    padding: 50px 0;
    text-align: center;
}

.team h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.team-member {
    display: inline-block;
    margin: 20px;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    max-height:220px;
    max-width:220px;
     border: 5px solid #87CEEB;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.team-member img:hover {
    transform: scale(1.05);
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin:auto;
    max-width:500px;
}

.contact {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    padding:10px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
}

.contact form .cta-btn {
    background: #87CEEB;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.contact form .cta-btn:hover {
    background: #173C5C;
    transition: background 0.3s;
}
.contact form .cta-btn:disabled {
    cursor: not-allowed;
}
#loadingMessage {
    color: #173C5C;
    font-size: 0.9em;
}

.contact-section {
    background-color: #f4f4f9;/*#f4f4f9*/
    padding: 20px;
    border-top: 2px solid #ccc;
}


.contact-containers {
    max-width:900px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin:auto;
}

.contact-info {
    min-height:180px;
    margin: 0 20px;
}

.contact-info h4 {
    color: #333;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    margin: 0;
}

.social-media a {
    color: #555;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
  color: #0073e6;
  transform: scale(1.1);
}

footer {
    background: #173C5C;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer nav {
    margin-top: 10px;
}

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

footer nav a:hover {
    text-decoration: underline;
}

.pntContent{
    padding:30px;
    max-width:800px;
    margin: 0 auto;
}

/* Residential Page*/
.dot {
  height: 12px;
  width: 12px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #173C5C;
  display: inline-block;
  margin-right:5px;
}

.menu3 {
    position:fixed;
    top: 150px;
    width:230px;
    padding:20px;
    display: block;
    margin-left:20px;
    border-radius: 15px;
    background:#f4f4f9;
}

.menu3 a{
    text-decoration:none;
    display: block;
    color: #173C5C;
    font-weight: 450;
}

.menu3 a:clicked{
    color: red;
}

.content{
    margin-left:245px;
    padding:30px;
}


@media (max-width: 1000px) {
    .homeBtn{
        display:none;
    }
}

@media (max-width: 868px) {
    header nav {
        flex-direction: column;
        display: none;
    }
    
    header nav.active {
        display: flex;
        background-color: #2c3e50;
        padding: 10px 0;
        position: absolute;
        top: 60px;
        width: 100%;
        left: 0;
    }

    header .menu-toggle {
        display: flex;
        margin-right: 15px;
    }
    .header-title {
        font-size: 22px;
    }
    .header-img{
        height:55px;
        width:55px;
        margin-right: 5px
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services-container {
        grid-template-columns: 1fr 1fr;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    .menu3 {
        display:none;
    }
    .content{
    margin-left:0px;
    }
}
@media (max-width: 550px) {
    .services-container {
         grid-template-columns: 1fr;
    }
    .contact-containers {
    display:block;
    margin:0 auto;
    }   
}

@media (max-width: 480px) {
    .header-title {
        font-size: 18px;
    }
    .header-img{
        height:45px;
        width:45px;
        margin-right: 5px;
        margin-left: 5px;
    }
    
    header .menu-toggle {
        width:24px;
        padding:3px;
    }
    
    header .menu-toggle .bar {
        width: 18px;
        height: 3px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .cta-btn {
        padding: 8px 15px;
        font-size: 1rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact form input,
    .contact form textarea {
        padding: 10px;
    }
    
}