
    /* Section Titles */
    .section-title {
      color: #222;
      font-weight: 700;
      font-size: 2.75rem;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      position: relative;
    }
    .section-title .highlight {
      color: #007bff;
    }
    .section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #007bff;
      margin-top: 12px;
      border-radius: 2px;
      opacity: 0.9;
    }

    /* Contact Section */
    section.py-5 {
      background: #f9fbff;
      padding-top: 4.5rem !important;
      padding-bottom: 4.5rem !important;
    }
    p.text-primary {
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 1.2px;
      color: #007bff !important;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
    }
    p.mb-5 {
      font-size: 1.05rem;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
      color: #555;
    }

    /* Contact Cards */
    .contact-card {
      border-radius: 12px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      background-color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    iframe {
      border-radius: 12px 12px 0 0;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .contact-box {
      background: #007bff;
      color: #fff;
      padding: 20px 30px;
      border-radius: 0 0 12px 12px;
      display: flex;
      justify-content: space-around;
      font-weight: 600;
      letter-spacing: 0.03em;
    }
    .contact-box div {
      text-align: center;
      user-select: none;
      transition: color 0.3s ease;
    }
    .contact-box div:hover {
      color: #d1e9ff;
      cursor: default;
    }

    /* Contact Form Inputs */
    form input.form-control,
    form select.form-control,
    form textarea.form-control {
      border-radius: 0.5rem;
      border: 1.5px solid #ddd;
      padding: 15px 20px;
      font-size: 1rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    form input.form-control:focus,
    form select.form-control:focus,
    form textarea.form-control:focus {
      border-color: #007bff;
      box-shadow: 0 0 6px #a3d2ff;
      outline: none;
    }
    form select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath fill='%23007bff' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 12px 7px;
      padding-right: 40px;
    }
    form textarea.form-control {
      resize: none;
    }

    /* Submit Button */
    form button.btn-primary {
      background: linear-gradient(45deg, #0069d9, #0056b3);
      border: none;
      padding: 14px 0;
      font-weight: 700;
      font-size: 1.1rem;
      border-radius: 50px;
      transition: background 0.4s ease;
      letter-spacing: 0.05em;
    }
    form button.btn-primary:hover,
    form button.btn-primary:focus {
      background: linear-gradient(45deg, #004a8f, #00376f);
      box-shadow: 0 5px 15px rgba(0,123,255,0.6);
      outline: none;
    }

    /* Footer */
    footer.footer {
      background: #0c1e3a;
      color: #d1d5db;
      padding: 60px 0 40px 0;
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.03em;
      user-select: none;
    }
    footer.footer h4,
    footer.footer h5 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      position: relative;
    }
    footer.footer h5::after {
      content: "";
      display: block;
      width: 40px;
      height: 3px;
      background: #007bff;
      margin-top: 6px;
      border-radius: 2px;
      opacity: 0.8;
    }

    .footer .social-icons a {
      display: inline-block;
      background: #1f2f55;
      color: #fff;
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      border-radius: 50%;
      margin: 0 8px 10px 0;
      font-weight: 700;
      transition: background 0.3s ease, color 0.3s ease;
      font-size: 1rem;
      text-decoration: none;
      box-shadow: 0 3px 6px rgba(0,0,0,0.12);
    }
    .footer .social-icons a:hover {
      background: #007bff;
      color: #fff;
      box-shadow: 0 8px 20px rgba(0,123,255,0.6);
      text-decoration: none;
    }

    /* Quick Links */
    .footer .quick-links ul {
      list-style: none;
      padding-left: 0;
    }
    .footer .quick-links ul li {
      margin-bottom: 12px;
      cursor: pointer;
      color: #cbd5e1;
      transition: color 0.25s ease;
    }
    .footer .quick-links ul li:hover {
      color: #007bff;
      text-decoration: underline;
    }

    /* Contact Info */
    .footer > .container > .row > div p {
      color: #a0aec0;
      line-height: 1.5;
    }

    /* Newsletter */
    .newsletter p {
      color: #a0aec0;
      margin-bottom: 1rem;
    }
    .newsletter .input-group input.form-control {
      border-radius: 25px 0 0 25px;
      border: none;
      padding-left: 20px;
      font-size: 0.95rem;
      box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
      transition: box-shadow 0.3s ease;
    }
    .newsletter .input-group input.form-control:focus {
      box-shadow: 0 0 8px #007bff;
      outline: none;
    }
    .newsletter .input-group button.btn-primary {
      border-radius: 0 25px 25px 0;
      padding-left: 24px;
      padding-right: 24px;
      font-weight: 700;
      font-size: 1.2rem;
      background: #007bff;
      border: none;
      transition: background 0.3s ease;
    }
    .newsletter .input-group button.btn-primary:hover {
      background: #0056b3;
    }
    .form-check-label a {
      color: #7aa7f7;
      text-decoration: underline;
    }
    .form-check-label a:hover {
      color: #004a8f;
      text-decoration: none;
    }

    /* Footer Bottom */
    .footer-bottom {
      background: #081529;
      padding: 15px 0;
      text-align: center;
      font-size: 0.9rem;
      color: #94a3b8;
      letter-spacing: 0.05em;
    }
    .footer-bottom a {
      color: #7aa7f7;
      text-decoration: none;
      margin: 0 8px;
      transition: color 0.3s ease;
    }
    .footer-bottom a:hover {
      color: #004a8f;
      text-decoration: underline;
    }

    /* Responsive tweaks */
    @media (max-width: 767.98px) {
      .contact-box {
        flex-direction: column;
        gap: 12px;
      }
      .footer .social-icons a {
        margin-right: 12px;
        margin-bottom: 12px;
      }
      .section-title {
        font-size: 2rem;
      }
    }