*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html{
    scroll-behavior:smooth;
}


    a{
      text-decoration:none;
    }

    ul{
      list-style:none;
    }
/*
.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%;
  }
  
  
}



/* =================service==================*/

/* SERVICE CARD */
.service-card{
  border:0;
  border-radius:15px;
  transition:0.3s;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  background:#fff;
  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* BIG IMAGE */
.service-img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition:0.4s;
}

.service-card:hover .service-img{
  transform:scale(1.05);
}

/* CONTENT */
.service-body{
  padding:20px;
  text-align:center;
}

.service-title{
  font-size:18px;
  font-weight:700;
  margin-top:10px;
}

.service-text{
  font-size:14px;
  color:#666;
  margin:10px 0 15px;
}

.btn-service{
  border-radius:30px;
  padding:6px 18px;
}



/* ================= TOP BAR ================= */

    .top-bar{
      background:#00b4d8;
      color:#fff;
      padding:10px 7%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      font-size:14px;
    }

    .top-left{
      display:flex;
      gap:25px;
      flex-wrap:wrap;
    }

    .top-left a{
      color:#fff;
      transition:0.3s;
    }

    .top-left a:hover{
      color:#ffd54f;
    }

    .top-right{
      display:flex;
      gap:15px;
    }

    .top-right a{
      width:35px;
      height:35px;
      background:#ffffff20;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      transition:0.3s;
    }

    .top-right a:hover{
      background:#fff;
      color:#00b4d8;
      transform:translateY(-3px);
    }

    /* ================= HEADER ================= */

    header{
      position:sticky;
      top:0;
      z-index:999;
      background:#fff;
      box-shadow:0 2px 10px rgba(0,0,0,0.08);
    }

    .navbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:15px 7%;
      position:relative;
    }

    /* LOGO */

    .site-logo{
  height:55px;
  width:auto;
  object-fit:contain;
}

    /* NAV MENU */

    .nav-menu{
      display:flex;
      align-items:center;
      gap:30px;
    }

    .nav-menu li{
      position:relative;
    }

    .nav-menu li a{
      color:#222;
      font-weight:500;
      transition:0.3s;
      padding:10px 0;
      display:block;
    }
    
    .nav-menu li a.active {
  color: #00b4d8;        
  font-weight: 600;
  position: relative;
}

    .nav-menu li a:hover{
      color:#00b4d8;
    }

    /* DROPDOWN */

    .dropdown{
      position:absolute;
      top:100%;
      left:0;
      width:230px;
      background:#fff;
      box-shadow:0 5px 20px rgba(0,0,0,0.1);
      border-radius:10px;
      opacity:0;
      visibility:hidden;
      transform:translateY(15px);
      transition:0.3s;
      overflow:hidden;
    }

    .dropdown li{
      border-bottom:1px solid #eee;
    }

    .dropdown li:last-child{
      border-bottom:none;
    }

    .dropdown li a{
      padding:14px 18px;
      display:block;
    }

    .dropdown li a:hover{
      background:#00b4d8;
      color:#fff;
      padding-left:24px;
    }

    .nav-menu li:hover .dropdown{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    /* SEARCH BAR */

    .search-box{
      position:relative;
      margin-left:20px;
    }

    .search-box input{
      width:230px;
      padding:11px 45px 11px 18px;
      border:1px solid #ddd;
      border-radius:30px;
      outline:none;
      transition:0.3s;
    }

    .search-box input:focus{
      border-color:#00b4d8;
      box-shadow:0 0 8px rgba(13,110,253,0.2);
    }

    .search-box button{
      position:absolute;
      right:5px;
      top:5px;
      width:36px;
      height:36px;
      border:none;
      background:#00b4d8;
      color:#fff;
      border-radius:50%;
      cursor:pointer;
      transition:0.3s;
    }

    .search-box button:hover{
      background:#084298;
    }

    /* MOBILE MENU */

    .menu-toggle{
      display:none;
      font-size:28px;
      cursor:pointer;
      color:#222;
    }
    
   
    /* HERO */

    .index-hero{
      height:90vh;
      background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
      url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') center/cover;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:#fff;
      padding:20px;
    }

    .index-hero-content h1{
      font-size:55px;
      margin-bottom:20px;
    }

    .index-hero-content p{
      font-size:18px;
      max-width:700px;
      margin:auto;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:1100px){

      .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:20px 7%;
        gap:0;
        display:none;
      }

      .nav-menu.active{
        display:flex;
      }

      .nav-menu li{
        width:100%;
      }

      .nav-menu li a{
        width:100%;
        padding:14px 0;
      }

      .dropdown{
        position:static;
        width:100%;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        margin-top:5px;
        border-radius:0;
      }

      .nav-menu li:hover .dropdown{
        display:block;
      }

      .search-box{
        width:100%;
        margin-top:15px;
        margin-left:0;
      }

      .search-box input{
        width:100%;
      }

      .menu-toggle{
        display:block;
      }

      .hero-content h1{
        font-size:38px;
      }
    }

    @media(max-width:768px){

      .top-bar{
        flex-direction:column;
        gap:10px;
        text-align:center;
      }

      .top-left{
        justify-content:center;
      }

      .index-hero-content h1{
        font-size:20px;
      }

      .hero-content p{
        font-size:16px;
      }
    }

 /* ================= RESPONSIVE ================= */

    
/*   service  */


/* SERVICE CARD */

/* SERVICE CARD */
.service-card{
  border:0;
  border-radius:15px;
  transition:0.3s;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  background:#fff;
  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* BIG IMAGE */
.service-img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition:0.4s;
}

.service-card:hover .service-img{
  transform:scale(1.05);
}

/* CONTENT */
.service-body{
  padding:20px;
  text-align:center;
}

.service-title{
  font-size:18px;
  font-weight:700;
  margin-top:10px;
}

.service-text{
  font-size:14px;
  color:#666;
  margin:10px 0 15px;
}

.btn-service{
  border-radius:30px;
  padding:6px 18px;
}




/* 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: #00b4d8;
    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 */


   /* gallery start */

.service-gallery .filter-btns button {
  border: none;
  padding: 8px 16px;
  margin: 3px;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.service-gallery .filter-btns button.active,
.service-gallery .filter-btns button:hover {
  background: #0b1a4a;
  color: #fff;
}

/* GALLERY CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

/* IMAGE BIG + CLOSE LOOK */
.gallery-card img {
  width: 100%;
  height: 260px;   /* BIG IMAGE */
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER ZOOM */
.gallery-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.gallery-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

/* CLOSE GAP GRID */
.gallery .row {
  row-gap: 10px !important;
  column-gap: 10px !important;
}

/* MOBILE */
@media(max-width:768px){
  .gallery-card img {
    height: 200px;
  }
}
/* gallery end */




