 
    .hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("images/construction.jpg") no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 80px 20px;
      border-radius: 15px;
      margin-bottom: 40px;
    }
    .section-title {
      text-align: center;
      margin: 40px 0 20px;
      font-weight: bold;
    }
    .service-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s;
    }
    
    .service-card:hover {
      transform: translateY(-8px);
    }
    .service-icon {
      font-size: 50px;
      margin-bottom: 15px;
      color: #0d6efd;
    }
    .pricing-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .pricing-card:hover {
      transform: translateY(-8px);
    }
    .pricing-header {
      background: #0d6efd;
      color: white;
      padding: 20px;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      text-align: center;
    }
    .price {
      font-size: 32px;
      font-weight: bold;
      margin: 15px 0;
    }
    .card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
      padding: 25px;
      text-align: center;
      width: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
    }
    .card i {
      font-size: 40px;
      margin-bottom: 15px;
      color: #007bff;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .card:hover i {
      color: #28a745; /* Green on hover */
      transform: scale(1.2);
    }
    .card h3 {
      margin-bottom: 12px;
      font-size: 20px;
      color: #333;
    }
    .btn-group {
      display: flex;
      justify-content: center;
      gap: 10px;
    }
    .btn {
      padding: 8px 15px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: bold;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .btn-quote {
      background: #007bff;
      color: white;
    }
    .btn-quote:hover {
      background: #0056b3;
      transform: scale(1.05);
    }
    .btn-book {
      background: #28a745;
      color: white;
    }
    .btn-book:hover {
      background: #1e7e34;
      transform: scale(1.05);
    }
.content * {
  all: unset;             /* remove all inline styles */
  font-size: 16px !important;
  font-family: Arial, sans-serif !important;
  color: #333 !important;
  line-height: 1.6 !important;
  width: 50px;
}
  .footer{
margin-bottom: 0%;
clear: both;
width: 100%;
            bottom: 0;
            position: relative;
            margin-top: 20px;

            
        }
        
      
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f4f4f4;
    }

    
  


     img{
        height: 200px;
     } 
     .card:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
        background-color: #f0eded;
     .row g4{
        margin: 20px 0; 
     } 
        
     } 
     .card{
      
     } 

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f5f7fa;
      color: #333;
    }

    header {
      background: #0f172a;
      color: #fff;
      padding: 20px 0;
      text-align: center;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: 1px;
    }
.portfolio-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-header h2 {
  font-size: 2rem;
  color: #0f172a;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ Exactly 3 cards per row */
  gap: 30px;
}

.portfolio-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-item-content {
  padding: 20px;
}

.portfolio-item-content h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.portfolio-item-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.portfolio-item-content a {
  text-decoration: none;
  background: #2563eb;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s;
}

.portfolio-item-content a:hover {
  background: #1d4ed8;
}

/* ✅ Responsive: Show fewer cards on smaller screens */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}


 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f5f7fa;
      color: #333;
    }

    header {
      background: #0f172a;
      color: #fff;
      padding: 20px 0;
      text-align: center;
      font-size: 1.8rem;
      font-weight: 600;
    }

    .pricing-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }

    .pricing-section h2 {
      font-size: 2.2rem;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .pricing-section p {
      color: #666;
      margin-bottom: 50px;
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      padding: 40px 20px;
      transition: all 0.3s ease;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .card h3 {
      color: #0f172a;
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .card .price {
      font-size: 2.5rem;
      color: #2563eb;
      font-weight: 700;
      margin: 15px 0;
    }

    .card ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .card ul li {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      color: #555;
    }

    .card ul li:last-child {
      border-bottom: none;
    }

    .card a {
      display: inline-block;
      margin-top: 20px;
      text-decoration: none;
      background: #2563eb;
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .card a:hover {
      background: #1d4ed8;
    }

    .featured {
      border: 2px solid #2563eb;
      transform: scale(1.05);
    }

   /* ===== Sticky Header ===== */
    

  
    .contact-info span {
      margin-right: 20px;
    }

    .contact-info i {
      color: #60a5fa;
      margin-right: 6px;
    }

    .social-icons a {
      color: #fff;
      margin-left: 12px;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 16px;
    }

    .social-icons a:hover {
      color: #60a5fa;
    }

    body {
      background: #f8f9fa;
    }
    .hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/laptop.png") no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 80px 20px;
      border-radius: 15px;
      margin-bottom: 40px;
    }
    .section-title {
      text-align: center;
      margin: 40px 0 20px;
      font-weight: bold;
    }
    .team-card {
      border: none;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      border-radius: 15px;
      transition: transform 0.3s;
    }
    .team-card:hover {
      transform: translateY(-5px);
    }
    .team-card img {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
     

    /* Logo */
    /* .logo {
  display: inline-block;
} */
    .logo.img {
      
       display: inline-block;
      width: 10px;
      height: 10px;
      
      
    }

    /* Links */
    

    .nav-links a:hover {
      color: #1abc9c;
    }


    .btn-login {
      background: transparent;
      border: 1px solid #1abc9c;
      color: #1abc9c;
    }

    .btn-login:hover {
      background: #1abc9c;
      color: #fff;
    }

    .btn-register {
      background: #1abc9c;
      color: #fff;
      border: 1px solid #1abc9c;
    }

    .btn-register:hover {
      background: #16a085;
    }

    /* Button (for mobile menu) */
    .menu-btn {
      display: none;
      font-size: 25px;
      cursor: pointer;
    }

    /* Responsive */
 
      
/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 26px;
  background: #4c4ca0;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 99999;
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background: #444;
  transform: translateY(-3px);
}
 .contact-container {
      max-width: 1000px;
      margin: 50px auto;
      background: #fff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    }
    .contact-container h2 {
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }
    .info-box {
      background: #f1f1f1;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
          }
    iframe {
      border-radius: 10px;
      width: 100%;
      height: 250px;
    }
    /* TOP BAR */
.top-bar {
    width: 100%;
    background: linear-gradient(to right, #002b5b, #005792);
    display: flex;
    justify-content: space-between;
    padding: 8px 40px;
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    letter-spacing: .5px;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.top-bar i {
    margin-right: 6px;
}

.top-bar .social-icons a {
    color: white;
    margin-left: 12px;
    transition: 0.3s;
}

.top-bar .social-icons a:hover {
    color: #c3e8ff;
    transform: translateY(-2px);
}

/* NAVBAR */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 999;
}

nav .logo img {
    height: 70px;
    width: 200px;
    object-fit: contain;
}

/* NAV LINKS */
nav .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav .nav-links li a {
    color: #5a5757ff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s ease;
}

/* Hover Glow */
nav .nav-links li a:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: 0px 4px 15px rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    font-size: 32px;
    color: black;
    cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 115px; /* below top bar */
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.4s ease;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    nav .nav-links li a {
        font-size: 20px;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
}
.footer {
    background: linear-gradient(to right, #0a1f35, #003b65);
    color: #fff;
    padding: 60px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin: 20px 10px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.footer-col h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #00baff;
    position: absolute;
    left: 0;
    bottom: -5px;
    border-radius: 5px;
}

.footer-col p,
.footer-col li a {
    color: #d7e9ff;
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin: 8px 0;
}

.footer-col li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-col li a:hover {
    color: #00c8ff;
    padding-left: 5px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00baff;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    color: #536e91;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }
}