body {
  font-family: Arial, sans-serif;
}

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    background:#25D366;
    color:white;
    text-decoration:none;

    padding:12px 18px;
    border-radius:50px;

    box-shadow:0 5px 15px rgba(0,0,0,0.3);

    font-weight:600;
    font-size:15px;

    transition:0.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.05);
    color:white;
}

.whatsapp-float img{
    width:32px;
    height:32px;
}


.card {
  border: none;
}

.project-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}
.project-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.project-card img {
  height: 260px;
  object-fit: cover;
}

.modal-content {
  border-radius: 20px;
}

.modal-body img {
  width: 100%;
  border-radius: 16px;
}

.testimonials-section{
    background: linear-gradient(135deg, #0d6efd, #003b8f,#003b8f) !important;
    padding: 80px 0;
}

.testimonials-section .section-title{
    color: rgb(0, 0, 0);
}

.testimonial-card{
    border: none;
    border-radius: 18px;
    background: rgb(0, 5, 51);
    backdrop-filter: blur(8px);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.testimonial-card:hover{
    transform: translateY(-6px);
      box-shadow: 0 15px 30px rgb(255, 255, 255);
}

.testimonial-card h6{
    color: #ffffff;
}

    body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    .navbar {
      background-color: rgba(0, 0, 0, 0.85);
    }

    .section-title {
      font-weight: 700;
      margin-bottom: 1rem;
      color: #ffffff;
    }

    .service-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      border-radius: 18px;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgb(255, 255, 255);
    }

    .stats-section {
        background: linear-gradient(
        135deg,
        #0066ff,
        #0099ff
    );
        
    }

    .gallery img {
      border-radius: 16px;
      height: 250px;
      object-fit: cover;
      width: 100%;
    }

    .testimonial-card {
      border-radius: 18px;
      border: none;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    footer {
      background-color: #111;
      color: #ddd;
    }

    .btn-primary {
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
    }
.whatsapp-float{
position:fixed!important;
bottom:20px!important;
right:20px!important;
width:60px!important;
height:60px!important;
z-index:99999!important;
display:flex!important;
align-items:center!important;
justify-content:center!important;
background:#25D366!important;
border-radius:50%!important;
overflow:hidden!important;
}

.whatsapp-float img{
width:35px!important;
height:35px!important;
object-fit:contain!important;
display:block!important;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;

    min-width: 100%;
    min-height: 100%;

    width: auto;
    height: auto;

    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;

    padding-top: 180px;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    width: 420px;
    display: block;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
}

.contact-section {
    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),
        url("images/contact.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    padding: 100px 0;
}
.services-section {
    background: linear-gradient(135deg, #0d6efd, #003b8f,#003b8f) !important;
    padding: 80px 0;
}
.service-card {
    background: #06003b !important;
    color: white !important;
    border: none !important;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.service-card h5 {
    color: white !important;
}

.service-card p {
    color: rgba(255,255,255,0.9) !important;
}
.job-title {
      font-weight: 700;
      margin-bottom: 1rem;
      color: #002fff;
    }

    .project-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.project-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s ease;
    cursor: pointer;
}

.project-gallery img:hover {
    transform: scale(1.03);
}

.modal-xl {
    max-width: 95%;
}
#fullImage {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
}


.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    font-size: 3rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;

    z-index: 99999;      /* increase */
    pointer-events: auto;
}

.gallery-arrow-left {
    left: 25px;
}

.gallery-arrow-right {
    right: 25px;
}
#fullImage {
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 768px) {

    .hero-content {
        padding-top: 60px !important;
    }

    .hero-logo img {
        width: 220px !important;
        max-width: 80%;
    }

    .hero-content h1 {
        font-size: 2.3rem !important;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1rem !important;
        padding: 0 20px;
    }

}