* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif; /* Use Poppins for headings */
}

body{
    background-color: #EAEAEA; /* Soft Light Grey for main background */
    /* color: #00FFFF; Aqua Blue accents for text or borders */
    font-family: 'Open Sans', sans-serif;
    
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background-color: #333333;
    padding: 10px 20px;
    position: relative;
    border-bottom: 3px solid transparent; /* Default transparent border */
    transition: border-color 0.3s ease; /* Smooth transition for underline */
}

.navbar:hover {
    border-bottom: 3px solid #1E90FF; /* Blue underline on hover */
}

.dropdown{
    position: relative;
}


.dropdowncontent{
    position: absolute;
    top: 100%; /* Position below the navbar */
    left: 0;
    background-color: #fff; /* Set the background color */
    border: 1px solid #ddd; /* Add a subtle border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a slight shadow for a professional look */
    overflow: hidden;
    display: none; /* Hide dropdown by default */
    transition: max-height 0.3s ease, opacity 0.3s ease; /* Smooth expand effect */
    max-height: 0; /* Ensure it's fully collapsed initially */
    opacity: 0; /* Make it transparent when hidden */
    z-index: 1000;
}

.dropdowncontent.active{
    display: block;
    max-height: 200px; /* Increase the height when activated */
    opacity: 1;
    
    background-color: #333; /* Text color */
}

/* Dropdown item styling */
.dropdowncontent .navbardropli {
    margin: 0;
    text-align: center;
    list-style: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdowncontent .navbarli:hover {
    background-color: #f0f0f0; /* Subtle background change on hover */
    color: #007BFF; /* Highlight the text on hover */
}

/* Ensure dropdown stays within navbar dimensions */
.navbar .dropdown {
    height: auto;
    overflow: visible;
}


.img-container img {
    height: 40px;
}

.lists ul {
    display: flex;
    list-style: none;
}

.lists li {
    margin-left: 20px;
    position: relative; /* For the underline effect */
}

.lists a {
    color: white; /* Keep the text color white */
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    padding: 12px 20px; /* Slightly larger padding for a more refined look */
    display: block;
    position: relative;
    border-radius: 10px; /* Rounded corners */
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effects for individual list items */
.lists a:hover {
    color: white; /* Keep text white on hover */
    background-color: #FF8C00; /* Darker Mango Yellow on hover */
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.5); /* Subtle shadow for depth */
    border-bottom: 3px solid #1E90FF; /* Blue underline when active */
    padding-bottom: 8px;
}

.lists a::after {
    content: ''; /* Creates an empty element */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    /* background-color: #FF8C00; /* Darker Mango Yellow color for the underline */
    /* transition: width 0.3s ease; Smooth underline transition */ 
}

.lists a:hover::after {
    width: 100%; /* The underline expands on hover */
}


#close-btn{
    display: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .lists ul {
        flex-direction: column;
        margin-top: 10px;
    }

    .lists li {
        margin-left: 0;
        margin-top: 10px;
    }
    .dropdowncontent .navbarli {
        font-size: 12px; /* Adjust font size for smaller screens */
    }
    #close-btn{
        display: block;
    }
}




/* Navbar Styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background-color: #333;
    padding: 10px 20px;
    position: relative;
}

.navbar .img-container img {
    height: 40px;
}

.lists ul {
    display: flex;
    list-style: none;
}

.lists li {
    margin-left: 20px;
    position: relative;
}

.lists a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    position: relative;
    border-radius: 10px;
    font-weight: 400;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.lists a:hover {
    color: white;
    background-color: #FF8C00;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.5);
}

.burger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

@media (max-width: 798px) {
    .lists {
        display : none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
        text-align: center;
        padding: 20px 0;
        z-index: 999;
    }
    /* .lists ul{
        flex-direction: column;
        padding: 0;
    }
    .lists li{
        padding: 10px 0;
    } */

    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

    .burger{
        display: block;
    }

    .lists.active{
        display: block;
    }
}

/* Container for the slider */
.slider-container {
    position: relative;
    width: 100%;
    /* max-width: 1000px; */
    height: 500px; /* Adjust the height of the banner */
    overflow: hidden;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* margin-top: 20px; */
}

/* Style for the images inside the slider */
.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%; /* Ensures the image takes the full height of the container */
    object-fit: cover; /* Ensures the image maintains its aspect ratio and covers the entire area */
    display: block;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Optional hover effect for buttons */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Main Container */
.proof-grid-container {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
}

/* Heading */
.proof-header {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: bold;
}

.proof-para{
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Grid Layout */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 Grid */
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

/* Individual Card */
.proof-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Effect */
.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.proof-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Text Inside Card */
.proof-text {
    padding: 15px;
}

.proof-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.proof-text p {
    font-size: 14px;
    color: #555;
}

.contactbut{
    color: white;
    font-size: 1.1rem;
    padding: 10px 20px;
    text-decoration: none;
}

.detailtext{
    color: white;
    font-size: 1.1rem;
    /* padding: 10px 20px; */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
/* Responsive for Mobile */
@media (max-width: 798px) {
    .proof-grid {
        grid-template-columns: 1fr; /* 1 column for smaller screens */
    }
    .proof-header{
        font-size: 28px;
    }
    .proof-para{
        font-size: 18px;
    }
}


/* Wrapper for the business card section with Aqua Blue background */
/* Wrapper for the business card section with Tortoise Blue background */
.dispaybuisness {
    display: flex;
    justify-content: center;
    margin-top: 27px;
}

/* Individual business card container */
.buildhome {
    display: block;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    width: 44%;
    background-color: #7FDBFF;
}

.buildhome:hover {
    transform: scale(1.02);
}

/* Image Section */
.buildihomeig{
    text-align: center;
    margin-top: 6%;
}
.buildihomeig img {
    width: 77%;
    height: auto;
    text-align: center;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

/* Text Section */
.buildhometext {
    padding: 15px;
    width: 100%;
    text-align: center;
}

.buildhometext h1 {
    font-size: 2.5rem;
    color: #333;  /* Dark color for the heading */
    margin-bottom: 15px;
    font-weight: bold;
}

.buildhomeig{
    text-align: center;
}

.buildpara {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* Renovate Home  */
.renovatehome {
    display: block;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    width: 44%;
    margin-left: 37px;
    background-color: #FFC324;
}

.renovatehome:hover {
    transform: scale(1.02);
}

/* Image Section */
.renovatehomeig{
    text-align: center;
    margin-top: 6%;
}
.renovatehomeig img {
    width: 77%;
    height: auto;
    text-align: center;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

/* Text Section */
.renovatehometext {
    padding: 15px;
    width: 100%;
    text-align: center;
}

.renovatehometext h1 {
    font-size: 2.5rem;
    color: #333;  /* Dark color for the heading */
    margin-bottom: 15px;
    font-weight: bold;
}

.renovatehomeig{
    text-align: center;
}

.buildpara {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}
/* Button Styling */
button {
    background-color: #36454F;  /* Mango Yellow */
    color: white;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #e6b800;  /* Slightly darker mango yellow */
    transform: scale(1.05);
}

/* Highlighting Text (indigo or blue for emphasis) */
.highlight {
    color: #1e3a5f;  /* Indigo/Blue for highlights */
}

/* Navbar color
.navbar {
    display: flex;
    color: white;
    background-color: #333;  /* Keeping the dark navbar color */


/* Workhead*/


.headerofworkahead{
    text-align: center;
    font-size: 30px;
    margin-bottom: 27px;
    margin-top: 23px;
}

.paraofworkahead{
    text-align: center;
    font-weight: bold;
    font-style: italic;
}
.planyourbuild {
    text-align: center;
    margin: 48px 300px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    width: 50%;
    height: 100%;
    /* float: right; */
    background-color: #FFC324;
    color: #36454F;
}

.planyourbuildig{
    text-align: center;
}

.planyourbuildig img{
    width: 29%;
}

.buildihomeig{
    text-align: center;
}

.planyourbuildig{
    text-align: center;
    margin-top: 4%;
    margin-bottom: 4%;
}

.planyourbuildig img{
    width: 77%;
}

.planyourbuildh1{
    margin-bottom: 4%;
    font-size: 36px;
}

/* Wrapper for all circles */
/* Wrapper for all circles */
.circle-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
  }
  
  /* Individual Circle Container */
  .circle-container {
    display: flex;
    flex-direction: column; /* Stack heading above the circle */
    align-items: center; /* Center the heading and circle */
    text-align: center;
    margin: 20px;
    flex: 1; /* Ensure equal space for each container */
  }
  
  /* Heading Style */
  .circle-heading {
    color: #36454F;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1.5; /*Space between letters*/
  }
  
  /* Circle Styles */
  .circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Inner Transparent Circle */
  .circle-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #1e3a5f; /* Matches background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: absolute;
  }
  
  /* Number Display */
  .number-display {
    font-size: 28px;
    font-weight: bold;
    color: white;
  }
  
  /* Progress Ring */
  .circle-progress {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    background: conic-gradient(
      #ffb300 0deg,
      #ffb300 var(--progress-degree),
      #e0e0e0 var(--progress-degree),
      #e0e0e0 360deg
    ); /* Mango Yellow and Light Gray */
    z-index: 1;
    transition: background 0.3s linear;
  }

  
  /* Section Background with Smooth Transition */
  .section-title {
    font-size: 28px;
    color: #ffb300; /* Mango Yellow */
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
  
/* Section Background with Seamless Transition */
/* End-Cover Background */
.end-cover {
    color: #2f3238;
    padding: 60px 20px;
    text-align: center;
}
  
  /* Section Title */
  .section-title {
    font-size: 50px;
    color: #36454F;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 4.5px;
  }
  
  /* Four Simple Cards */
  .intro-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap; /* Responsive design */
    margin: 40px 0;
  }
  
  .card {
    background: #36454F;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 20px;
    width: 220px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  
  .card-heading {
    font-size: 30px;
    color: white;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .card-text {
    font-size: 18px;
    color: white; /* Subtle gray for text */
  }
  
  /* Footer */
  .footer {
    background: #2f3238; /* Charcoal gray */
    color: white;
    padding: 20px 0;
    font-size: 14px;
  }
  
  .footer-links a {
    color: #ffb300; /* Mango Yellow */
    text-decoration: none;
    margin: 0 10px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
.detailbut{
    background-color: #7FDBFF;
    color: white;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.footer-content{
    text-align: center;
}

@media (max-width: 768px) {
    .planyourbuild{
        margin: 48px 100px;
        height: 76%;
    }
    .circle-wrapper{
        display: block;
    }
    .renovatehometext h1{
        font-size: 200%;
    }
    .buildhometext h1{
        font-size: 200%;
    }

    .industrialheader{
        font-size: 131%;
    }
}