body {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
    border-color: #45a6ca;
  }
  
  .navbar {
    background-color:#000a66;
  }
  
  .navbar .dropdown-menu {
    background-color: #000a66;
  }
  
  .navbar .dropdown-item {
    color: #fff;
  }
  
  .navbar .dropdown-item:hover {
    background-color: #004080;
  }
  
  .navbar-brand img {
    border-radius: 50%;
  }
  
  .card {
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-8px);
  }
  
  footer {
    background-color: #003366;
    color: white;
  }


  .hero-section {
    position: relative;
    height: 65vh;
    background: url('WhatsApp Image 2025-06-03 at 8.26.09 PM.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center; 
    color: white;
    padding: 0 15px;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }

.logo-img {
  border-radius: 0;
  max-height: 70px;
  height: 100%;    
  width: none;     
}

 .work-card {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .work-card:hover {
    transform: scale(1.03);
  }

  .work-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
  }

  .work-card:hover .overlay {
    opacity: 1;
  }

  .work-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .btn-primary {
    background-color: #ebcc18;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
  }

  #contact {
    background-color: #fff;
  }

  #contact h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
  }

  form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }

  .form-control {
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .form-control:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  }

  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }

  .btn-warning {
    background-color: #f0ad4e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .btn-warning:hover {
    background-color: #ec971f;
    transform: translateY(-2px);
  }

  .btn-warning:active {
    transform: scale(0.98);
  }


  #expertise {
    background: linear-gradient(to bottom right, #f9f9f9, #ffffff);
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    position: relative;
  }

  .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #f0ad4e;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .expertise-box {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .expertise-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

  .expertise-box .icon {
    font-size: 40px;
    color: #f0ad4e;
    margin-bottom: 15px;
  }

  .expertise-box h4 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .expertise-box p {
    font-size: 0.95rem;
    color: #666;
  }
  .map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }

  .footer {
    background-color: #111;
    color: #ddd;
    font-size: 0.95rem;
  }
  
  .footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: #f0ad4e;
  }
  
  .footer-link {
    display: block;
    margin-bottom: 8px;
  }
  
  .social-icon {
    display: inline-block;
    font-size: 1.2rem;
    color: #f0ad4e;
    background: #222;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: #f0ad4e;
    color: #111;
  }
  
  .footer h4, .footer h5 {
    color: #fff;
  }
  
  .insight-card {
    background-color: #f8f9fa;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }
  
  .insight-card h5 {
    color: #222;
    font-weight: 600;
  }
  
  .insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .insight-card p {
    font-size: 0.95rem;
    color: #555;
  }

  .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

 .whatsapp-float {
  display: none;
}
 
.custom-list {
  list-style-position: outside;
  padding-left: 0;
  margin-left: 0;
}
.custom-list li {
  margin-left: 1em;
}

#services {
  background-color: #f8f9fa;
  padding: 60px 0;
}

#services h2 {
  color: #003366;
  font-weight: 700;
  margin-bottom: 40px;
}

#services .card {
  background-color: #ffffff;
  border: none;
  border-left: 6px solid #ffc107; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(11, 63, 116, 0.2);
}

#services .card h4 {
  color: #07498b;
  font-weight: 600;
  margin-bottom: 15px;
}

#services .card p {
  color: #030607;
  font-size: 15px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  #services h2 {
    font-size: 28px;
  }

  #services .card {
    padding: 20px;
  }
}

.work-card {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.15);
}

.work-card img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 15px;
  padding: 20px;
}

.work-card:hover .overlay {
  opacity: 1;
}

.work-card h4 {
  font-weight: bold;
}

.btn-warning {
  background-color: #ffc107;
  border: none;
  color: #003366;
}

.btn-warning:hover {
  background-color: #ffca2c;
  color: #001f33;
}
.text-dark-blue {
  color: #104b84;
   
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float:hover {
    background-color: #128c3e;
    text-decoration: none;
    color: white;
  }


 
  
