@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@200;300;400;500;600;700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+AU+SA:wght@100..400&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+AU+SA:wght@100..400&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Spartan", sans-serif;
    
}

body {
    
    margin: 0;
    padding: 0;
    background: #ffff;
    
}



  body.disabled {
    overflow: hidden;
  }
  
  

  /*navbar*/
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: all 0.3s ease;
  }
  
  .navbar.sticky {
    background: #1b1b1b;
    padding: 10px 0;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }
  
  .logo a {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .menu-list {
    display: inline-flex;
    align-items: center;
  }
  
  .menu-list li {
    list-style: none;
  }
  
  .menu-list li a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    text-decoration: none;
    padding: 10px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  
  .menu-list li a:hover {
    background-color: #1b1b1b;
  }
  
  .icon {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
  }
  
  /* Responsive Design */
  @media (max-width: 868px) {
    .icon {
      display: block;
    }
  
    .menu-btn.hide {
      display: none;
    }
  
    .navbar .menu-list {
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 300px;
      background: #222;
      top: 0;
      left: -100%;
      display: block;
      padding: 40px 0;
      text-align: center;
      transition: all 0.3s ease;
    }
  
    .navbar.show .menu-list {
      left: 0;
    }
  
    .menu-list .cancel-btn {
      display: block;
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 25px;
    }
  
    .menu-list li {
      margin-top: 45px;
    }
  
    .menu-list li a {
      font-size: 22px;
      margin-left: -100%;
      transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
  
    .navbar.show .menu-list li a {
      margin-left: 0;
    }
  }
  


#home-page {
    background: url(images/skyscraperr.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px; /* adjust as needed */
    height: 100vh;
}
/*Home container*/
.homecontainer {
    display: flex;
    flex-direction: row;
    padding: 40px;
    margin-top: 1px;

}

h1 {
   font-size: 25px;
    color:#fff; /* Def#ault text color */
    margin-top: 45px;
    margin-bottom: 35px;
    font-family: "Roboto", sans-serif;
    padding: 20px;
    
}

.highlight {
    font-family: "poppins", sans-serif;
    background: rgba(0, 72, 0, 0.938);
    color: white;
    padding: 5px 15px;
    font-size: 75px;
     font-size: 75px;
}


.homewriteup p {
    color: #fff;
    font-weight: bold;
    font-size: 75px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 10px 12px 5px rgba(0, 0, 0, 0.5);
}


.services {
    display: flex; /* Arranges items in one line */
    margin-bottom: 35px;
    gap: 20px; /* Adds space between the words */
    color: #ddd;
  }
  
  .service-item {
    display: flex;
    align-items: center;
  }
  
  .yellow-dot {
    width: 8px;
    height: 8px;
    background-color: yellow;
    border-radius: 50%; /* Makes the dot circular */
    margin-right: 8px; /* Adds space between the dot and the word */
  }
  

  
/*pop out effect*/
@keyframes popOut {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.homewriteup h1,
.services,
.homewriteup p,
.contact-btn {
    animation: popOut 0.8s ease-out forwards;
    opacity: 0; /* Initially hidden */
}

.homewriteup h1 {
    animation-delay: 0.2s;
}

.services {
    animation-delay: 0.4s;
}

.homewriteup p {
    animation-delay: 0.6s;
}

.contact-btn {
    animation-delay: 0.8s;
}

.contact-btn {
  display: inline-block;       /* Makes <a> behave like a button */
  padding: 12px 24px;          /* Adjust padding for size */
   background: rgba(0, 72, 0, 0.938);
  color: white;                /* Text color */
  font-size: 1rem;             /* Font size */
  font-weight: bold;           /* Bold text */
  border: none;                /* Remove borders */
  border-radius: 8px;          /* Rounded corners */
  text-decoration: none;       /* Remove underline */
  cursor: pointer;             /* Pointer cursor */
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background-color: darkgreen; /* Darker green on hover */
  color: #fff;
  transform: translateY(-2px); /* Slight lift effect */
}

.contact-btn:active {
  background-color: #004d00;   /* Even darker when pressed */
  transform: translateY(0);    /* Reset lift */
}


/*Brag section*/
/* Add general styles */
#brag {
    background: #ffffffa2;
    padding: 60px 5%;
    text-align: center;
    color: #ddd;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.change {
    margin-bottom: 50px;
}

.change h2 {
    font-weight: bolder;
    color: #111;
    font-size: 40px;
    padding-bottom: 20px;
}

.change h4 {
    font-weight: bolder;
     color: #111;
    font-size: 20px;
    padding-bottom: 30px;
}

.change-btn {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.change-btn a {
    background-color: green;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.change-btn a:hover {
    background-color: darkgreen;
    transform: translateY(-3px);
}

/* Stats Section */
.numbcontainer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.numbclass {
    background-color: #ffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    flex: 1 1 200px;
    min-width: 150px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: scale(0.8);
    margin-top: 30px;
}

.numbclass.show {
    opacity: 1;
    transform: scale(1);
}

.numb {
    
    font-size: 38px;
    font-weight: bold;
    color: green;
}

.numbw {
    font-size: 18px;
    color: #111;
    margin-top: 8px;
}


/* ✅ Responsive Styles */
@media screen and (max-width: 768px) {
    .numbcontainer {
        justify-content: space-around; /* Even spacing for smaller screens */
    }
    
    .numbclass {
        flex: 1 1 30%; /* Ensures 3 items fit in one row */
    }

    .numb {
        font-size: 35px; /* Adjust size for better fit */
    }

    .numbw {
        font-size: 14px;
    }
}



/*pit-stop section*/
/* PIT STOP SECTION */
#pit-stop {
    background: url(images/3533.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;   /* vertical centering */
    justify-content: center; /* horizontal centering */
    text-align: center;
}

.pit-stop-container {
    max-width: 900px;
    padding: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Pop out effect when in view */
.pit-stop-container.show {
    opacity: 1;
    transform: scale(1);
}

.pit-stop-writeup {
    color: #fff;
    padding: 20px;
}

.pit-stop-writeup p {
    color: #fff;          /* gold paragraph text */
    font-size: 18px;
    margin-bottom: 15px;
}

.pit-stop-writeup h3 {
    color: green;         /* green heading */
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Button styling */
.contact-btn {
    background: green;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: darkgreen;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #pit-stop {
        height: auto;
        padding: 60px 20px;
    }

    .pit-stop-writeup h3 {
        font-size: 28px;
    }

    .pit-stop-writeup p {
        font-size: 16px;
    }
}

/*why-us*/
#why-us {
    background-color: #ffff;
    padding: 60px 5%;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }
  
  #why-us .intro p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #111;
  }
  
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .card {
    background: #ffff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card i {
    font-size: 40px;
    color: #007b5e;
    margin-bottom: 15px;
  }
  
  .card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #111;
  }
  
  .card p {
    margin-bottom: 10px;
    font-size: 20px;
    color: #111;
  }
  



  /* Responsive behavior */
  @media (max-width: 1000px) {
    .card {
      flex: 1 1 45%;
    }
  }
  
  @media (max-width: 700px) {
    .card {
      flex: 1 1 100%;
    }
  }
  

/*Reviews*/
#reviews {
    padding: 40px 20px;
    text-align: center;
}

h3.title-line {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: bolder;
    color: green;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  h3.title-line::before,
  h3.title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
  }
  
  h3.title-line::before {
    left: -40px;
     background-color: #111;
    transform: translateY(-50%);
  }
  
  h3.title-line::after {
    right: -40px;
    transform: translateY(-50%);
    background-color: #111;
  }

.review-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: none; /* Initially hide all reviews */
}

.review-text {
    font-size: 18px;
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
    font-style: italic;
}

.stars {
    font-size: 30px;
    color: gold;
}

.stars .star {
    margin: 0 3px;
}

.reviewer-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

/* Buttons styling */
.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

button.review-nav {
    padding: 10px;
    background-color: #555;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: background-color 0.3s ease;
    margin: 0 15px;
}

button.review-nav:hover {
    background-color: #777;
}


  

/* Media query for smaller screens */
@media (max-width: 768px) {
    .review-container {
        width: 90%;
    }

    .review-text {
        font-size: 16px;
    }

    .stars {
        font-size: 25px;
    }
}




/* Footer styling */
.footer {
    margin-top: 3px;
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer p {
    margin: 10px 0;
}

.footer-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    color: green;
    font-size:20px ;
    font-weight: bolder;
}

.scroll-top {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #555;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.scroll-top:hover {
    background-color: #777;
}

/*responsive view*/

@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        
    }
    .navbar .menu-icon {
        display: block;
    }

    
.dropdown-menu {
    padding: 30px;
    color: #fff;
    flex-direction: column;
    width: 100%;
    background-color: #333;
    position: absolute;
    top: 100%;
    left: 0;
}

.dropdown-menu li a{
    color: #fff;
    text-decoration: none;
    gap: 40px;
}
/*Home page*/
#home-page {
    background: url(images/skyscraperr.jpeg);
    background-size: cover;
    background-position: center;
    
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    text-align: center;
    position: relative; 
}

/* Semi-transparent dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none; /* So it doesn't block clicks */
}


/* Ensure content stays above the overlay */
.homecontainer {
    position: relative;
    z-index: 2;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    text-align: center;
    position: relative; 
}


h1 {
    
    margin-bottom: 20px;
    padding: 0;
  }
  
.change h2{
    font-size: 25px;
}

.change h4{
    font-size: 15px;
}

.change-btn a {
    font-size: 10px;
}

#why-us .intro p {
    font-size: 15px;
}


.highlight {
    font-family: "poppins", sans-serif;
    background-color: transparent;
    display: flex;
    color: green;
    margin-left: 20px;

  padding: 5px 10px;
     font-size: 75px;
}

.services {

    font-size: 9px;
  }
  

  .homewriteup p{
    
    font-size: 30px;
}

.homeimg {
    margin-top: 20px;
    margin-left: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px; /* Adjust width */
    height: 280px; /* Adjust height */
background-color: #fff;
border-radius: 50%;
    overflow: hidden; /* Keeps image inside oval */
    padding: 0px; /* Optional, for spacing */
  }

  .homeimg img {
    width: 100%; /* Makes sure image scales inside */
    height: 100%;/* Keeps image within the oval */
    object-fit: cover; /* Ensures the image covers without distortion */
  }


  .pit-stop-container{
    display: flex;
    flex-direction: column-reverse;
    
}




.pit-stop-writeup{
    
    
    padding: 12px;

}

.pit-stop-writeup p{
    font-size: 14px;
  padding-bottom: 10px;
}


.pit-stop-writeup h3{
    font-size: 30px;
    color: green;
    font-size: 15px;
  
}

.pit-stop-img {
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 20px; /* Adjust for desired padding */
}

.pit-stop-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer {
    margin-top: 3px;
    background-color: #333;
    color: white;
    padding: 20px;
   
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .footer {
        padding: 15px; /* Adjust padding for mobile */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column; /* Stack links vertically on smaller screens */
        justify-content: flex-start; /* Align items to the left on small screens */
    }

    .footer-links li {
        margin: 5px 0; /* Reduce margin between links */
    }

    .scroll-top {
        margin-top: 10px;
        padding: 8px 15px; /* Smaller button padding for mobile */
    }
}



}

@media (max-width: 480px) {
    .footer p {
        font-size: 14px; /* Smaller text size for mobile */
    }

    .footer-links a {
        font-size: 14px; /* Smaller font size for links on mobile */
    }

    .scroll-top {
        font-size: 14px; /* Smaller font size for button */
        padding: 8px 12px; /* Adjust button padding */
    }
}
