html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 5px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/*  */
.about-us {
  background-color: #f8f9fa;
}
.about-title {
  color: #2c3e50;
  font-weight: 700;
  border-bottom: 3px solid #DE0000;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.about-text {
  color: #34495e;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 768px) {
  .float-md-start {
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
  }
}
/* Servces */
* Services Section Styling */
.services-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #DE0000;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-icon {
    width: 60px;  /* Image container size */
    height: 60px; /* Adjusted to be smaller */
    margin: -45px auto 1rem;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), 
                0 2px 5px rgba(0,0,0,0.05),
                inset 0 2px 3px rgba(255,255,255,0.2); /* Added inner shadow */
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15),
                inset 0 2px 3px rgba(255,255,255,0.3);
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-heading {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
    font-size: 1.1rem;
}

.service-text {
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-icon {
        width: 50px;
        height: 50px;
        margin: -35px auto 1rem;
        border-width: 2px;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-heading {
        font-size: 1rem;
    }
    
    .service-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .service-icon {
        width: 45px;
        height: 45px;
        margin: -30px auto 1rem;
    }
}
/* end of services */
/* start navbar dropdown  */
/* Add these styles to your CSS file */
.navbar .nav-link {
  font-family: "Helvetica", sans-serif;
  font-style: oblique;
  font-weight: bold;
  font-size: 18px;
  color: #0045e3 !important;
  transition: all 0.3s ease;
}

/* Hover dropdown functionality */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
  }
  
  .dropdown-menu {
      border: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
}

/* Dropdown item styling */
.dropdown-item {
  font-family: "Helvetica", sans-serif;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #0035b0 !important;
  padding-left: 1.5rem !important;
}
/* end navbar  */