*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.heading1{
    text-align: center;
    border-bottom: 4px solid blue;
    padding:  0.5rem 0;
    margin-bottom: 1rem;
    /* margin: 0 auto 1rem auto ; */
    width: fit-content;
}
.carddesign{
    border: 2px solid whitesmoke;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.carddesign img{
    transition: 0.3s;
}
.carddesign img:hover{
    transform: scale(0.8);
}
.heading2{
    font-size: 5rem;
    margin-bottom: 1rem;
}
.heading3{
    font-size: 1.1rem;
}
#services .service-card {
    padding: 1.5rem;
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    height: 100%;
}
#services .service-card:hover {
    transform: translateY(-5px) scale(1.03);
    border: 1px solid #007bff;
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
}

#services .service-icon {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}
#services .service-card:hover .service-icon {
    transform: scale(1.1);
}
.partner-section {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 20px;
    overflow: hidden;
}

.partner-section .underline-heading {
    display: inline-block;
    border-bottom: 3px solid white;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.partner-img-container {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 40% 0 40% 0;
    overflow: hidden;
    display: inline-block;
}

.partner-img-container:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
}

.partner-img {
    border-radius: 40% 0 40% 0;
}

.about-section {
  background: linear-gradient(to right, #1e3a8a, #2563eb);
  color: white;
  border-radius: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.section-heading {
  font-size: 2.5rem;
  border-left: 5px solid #ffffff;
  padding-left: 15px;
  font-weight: 700;
}

.about-section ul li {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }

  .about-section {
    text-align: center;
  }
}


.main-logo {
  width: 180px;
  max-width: 100%;
  transition: transform 0.3s ease;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}

.main-logo:hover {
  transform: scale(1.05);
}

.custom-header {
  background: white; /* Blue gradient */
  border-bottom: 3px solid #fff;
}

/* Head Office Section */
.office {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6); /* blue gradient */
  color: white;
  padding: 50px 20px;
  border-radius: 12px 12px 0 0;
}

.office-heading {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 3px solid #ffffff88;
  display: inline-block;
  padding-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #0f172a; /* dark navy */
  color: #ccc;
  font-size: 16px;
  padding: 30px 20px;
}

.footer p {
  margin: 5px 0;
}

.footer strong {
  color: #facc15; /* golden highlight */
}

.section.office {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
}
.office-heading {
  font-size: 2.2rem;
  font-weight: bold;
}

.footer {
  background-color: #1f2937;
  color: white;
  font-size: 1rem;
}

.footer a {
  display: inline-block;
  margin-top: 10px;
  color: #00cfff;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Navbar Styles */
.navbar-custom {
  background-color: #ffffff;
  border-bottom: 2px solid #e5e7eb;
  padding: 1rem 0;
}

.navbar-custom .navbar-nav .nav-link {
  color: #000000 !important;  /* Black text */
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
  color: #000000 !important; /* Stay black even on hover/active */
  text-decoration: underline;
}

.navbar-brand {
  color: #000000 !important;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.object-fit-cover {
  object-fit: cover;
}