body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/*
.hero {
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
}


.services .card {
  transition: transform 0.3s;
}

.services .card:hover {
  transform: translateY(-5px);
}
*/

/* home */

/* Top Bar */

.container {
  width: 80%;
  margin: auto;
}
@media (max-width: 768px) {
  .container {
    width: 92%;
  }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: white;
  color: black;
  font-size: 14px;
}
.top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.top-left span {
  margin-right: 20px;
}
.top-right a {
  margin-left: 15px;
  color: black;
  transition: 0.3s;
}
.top-right a:hover {
  opacity: 0.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  background: #0b1a4a;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 50px;
}
.company-name {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

/* MENU */
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  color: #fff;
  padding: 18px 15px;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #f4b400;
  color: #000;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  cursor: pointer;
}
.dropdown-content {
  position: absolute;
  background: #fff;
  min-width: 220px;
  top: 100%;
  left: 0;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 10;
}
.dropdown-content a {
  color: #333;
  padding: 12px;
  display: block;
}
.dropdown-content a:hover {
  background: #f4b400;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* SEARCH */
.search-box {
  position: relative;
}
.search-box input[type="text"] {
  padding: 7px 10px;
  border-radius: 4px;
  border: none;
  outline: none;
  width: 180px;
  transition: width 0.3s ease;
}
.search-box input[type="text"]:focus {
  width: 250px;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* ===== MOBILE DESIGN ===== */
@media (max-width: 768px) {
  .top-content {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .search-box {
    display: none;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    background: #0b1a4a;
    position: absolute;
    top: 70px;
    left: 0;
    display: none;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  /* Mobile dropdown */
  .dropdown-content {
    position: static;
    display: none;
    background: #16245c;
  }
  .dropdown-content a {
    color: #fff;
  }
  .dropdown.active .dropdown-content {
    display: block;
  }
  .company-name {
    font-size: 16px;
  }
  .logo img {
    height: 40px;
  }
}


.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}


 .hero-bg {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .service-card .btn {
    transition: all 0.3s ease;
  }
  .service-card .btn:hover {
    transform: translateY(-2px);
  }


/* CSS for Hover Effect */

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
}
.text-warning i {
  margin-right: 2px;
}

.project-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.project-card .overlay:hover {
  opacity: 1;
  cursor: pointer;
}

/* contact */
 #contact a {
    transition: color 0.3s ease;
  }
  #contact a:hover {
    color: #0a58ca !important;
    text-decoration: underline;
  }
  .fw-medium {
    font-weight: 500;
  }
  .btn-gradient {
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.6);
  }
  .btn-gradient:hover {
    background: linear-gradient(90deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.7);
    transform: translateY(-3px);
  }
  @media (max-width: 767.98px) {
    #contact .btn-lg {
      width: 100%;
      text-align: center;
    }
  }



.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background-color: #25D366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  color: white;
}

/* footer start */
.footer {
    background: #0b0b0b;
    color: #ccc;
    padding: 60px 0 20px;
}
.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer a {
    color: #ccc;
    text-decoration: none;
}
.footer a:hover {
    color: #ffc107;
}
.footer .icon {
    color: #ffc107;
    margin-right: 10px;
}

/* FIXED BOTTOM */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    background: #0b0b0b;
    color: #ccc;
}

.footer-bottom-inner {
    width: 80%;
    margin: 0 auto; /* centers horizontally */
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-left {
    text-align: left;
    flex: 1 1 auto;
}

.footer-bottom-right {
    text-align: right;
    flex: 1 1 auto;
}

.footer-bottom-right a {
    margin-left: 15px;
    color: #ccc;
    text-decoration: none;
}

.footer-bottom-right a:hover {
    color: #ffc107;
}

/* Responsive: Stack on small screens */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center;
        flex: unset;
    }
    .footer-bottom-right a {
        margin-left: 10px;
        margin-right: 10px;
    }
}


/* WhatsApp */
.wa-box {
    margin-top: 10px;
}
.wa-input {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
}
.wa-input::placeholder {
    color: #aaa;
}
.wa-input:focus {
    border-color: #25D366;
    box-shadow: none;
}
.wa-btn {
    background: #25D366;
    color: #fff;
    border: none;
}
.wa-btn:hover {
    background: #1ebe5d;
}

/* Social */
.social-links a {
    margin-left: 15px;
}

/* Mobile */
@media (max-width: 576px) {
    .wa-box {
        flex-direction: column;
    }
    .wa-btn {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        width: 95%;
    }
}


#topBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 10%;
    padding: 8px 16px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s;
}

#topBtn:hover {
    background: #e0a800;
}

/* Optional: smaller on mobile */
@media (max-width: 576px) {
    #topBtn {
        padding: 10px 14px;
        font-size: 16px;
    }
}

/* footer end */


/* about start  */

.about-hero { 
      background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?construction,renovation') center/cover no-repeat;
      color: white; 
      position: relative;
    }
    .about-hero::after {
      content: "";
      position: absolute; 
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }
    .about-hero-content { position: relative; z-index: 1; }
    .feature-icon { font-size: 3rem; color: #0d6efd; }
    .project-card img { border-radius: 10px; }
    .testimonial { background: #f8f9fa; padding: 2rem; border-radius: 10px; }
    .cta { background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat; color: white; position: relative; }
    .cta::after { content: ""; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); }
    .cta-content { position: relative; z-index: 1; }
    .stats { background:; color: #000;; padding: 3rem 0; }
    .stats h3 { font-size: 2.5rem; margin-bottom: 0.5rem; }

    /* about end */


   /*  blog start */

   /* Hero */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('https://images.unsplash.com/photo-1503387762-592deb58ef4e');
    background-size: cover;
    color: white;
    padding: 100px 0;
}

/* Blog Cards */
.blog-card {
    border: none;
    transition: 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-img {
    height: 200px;
    object-fit: cover;
}

/* Sidebar */
.sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

   /* blog end */


   /*  contact start */

   .contact-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('https://images.unsplash.com/photo-1503387762-592deb58ef4e');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

/* Cards */
.contact-card {
    border: none;
    border-radius: 10px;
    transition: 0.3s;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Form */
.form-control {
    border-radius: 8px;
}

/* Button */
.btn-custom {
    padding: 12px 25px;
    font-weight: 500;
}

   /* contact end */
