   /* Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
    body { background: #fff; color: #333; line-height: 1.6; overflow-x: hidden; }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }
    /* Navbar */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1001;
    }

    .logo img {
      margin-left: 10px;
      height: 35px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 55px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
      transition: 0.3s;
    }

    .nav-links li a:hover {
      color: #0077ff;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1002;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #333;
      border-radius: 5px;
    }

    /* Overlay for blur */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(5px);
      background: rgba(0, 0, 0, 0.3);
      display: none;
      z-index: 1000;
    }

    .overlay.active {
      display: block;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 220px;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        padding-top: 80px;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
        z-index: 1001;
      }

      .nav-links.active {
        transform: translateX(0);
      }

      .hamburger {
        display: flex;
      }
    }

  body {
    background: #f8faff;
    color: #333;
  }

  /* === HEADER WITH BACKGROUND IMAGE === */
  .c-header {
    margin-top: 40px;
    width: 100%;
    height: 250px;
    background: 
      linear-gradient(rgba(0, 0, 50, 0.6), rgba(0, 0, 70, 0.6)),
      url("https://www.shutterstock.com/image-photo/using-laptop-show-icon-address-600nw-2521386695.jpg")
      center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
  }

  .c-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .c-header p {
    font-size: 1rem;
    color: #d7d7d7;
  }


    .connect {
      text-align: center;
      max-width: 1100px;
      width: 100%;
      animation: fadeIn 1s ease;

    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    .connect h2 {
      text-align: center;
      font-size: 30px;
      color: #0044cc;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }

    .connect p {
      text-align: center;
      color: #666;
      font-size: 15px;
      margin-bottom: 40px;
    }

    .connect-container {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .connect-left, .connect-right {
      flex: 1;
      min-width: 320px;
    }

    /* Form Section */
    .connect-left {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 85, 214, 0.15);
      transition: 0.4s;
    }

    .connect-left:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 85, 214, 0.25);
    }

    .connect-left h3 {
      margin-bottom: 20px;
      font-size: 20px;
      color: #0044cc;
    }

    .connect-left input,
    .connect-left textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 15px;
      border: 1px solid #cfd8e3;
      border-radius: 8px;
      outline: none;
      transition: 0.3s;
    }

    .connect-left input:focus,
    .connect-left textarea:focus {
      border-color: #0044cc;
      box-shadow: 0 0 6px rgba(0, 85, 214, 0.3);
    }

    .connect-left textarea {
      height: 100px;
      resize: none;
    }

    .connect-left button {
      width: 100%;
      background: linear-gradient(90deg, #0044cc, #007bff);
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .connect-left button:hover {
      background: linear-gradient(90deg, #0036a5, #0066d6);
      transform: scale(1.02);
    }

    /* Contact Details */
    .connect-right h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #0044cc;
    }

    .connect-right p {
      text-align: left;
      margin-bottom: 25px;
      color: #555;
    }

    .info-box {
      display: flex;
      align-items: center;
      background: #fff;
      padding: 15px 18px;
      border-radius: 12px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 85, 214, 0.1);
      transition: 0.4s;
      position: relative;
      overflow: hidden;
    }

    .info-box::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(180deg, #0044cc, #007bff);
      transition: 0.3s;
    }

    .info-box:hover::before {
      width: 100%;
      opacity: 0.05;
    }

    .info-box:hover {
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(0, 85, 214, 0.2);
    }

    .info-box i {
      font-size: 20px;
      margin-right: 12px;
      color: #0044cc;
      z-index: 2;
    }

    .info-text {
      z-index: 2;
      font-size: 15px;
    }

    /* Social Links */
    .social {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social a {
      color: #0044cc;
      font-size: 20px;
      transition: 0.3s;
    }

    .social a:hover {
      color: #007bff;
      transform: translateY(-3px) scale(1.1);
    }

    /* Success Popup */
    .popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .popup-content {
      background: #fff;
      padding: 30px 40px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 85, 214, 0.3);
      animation: popIn 0.4s ease;
    }

    @keyframes popIn {
      from {transform: scale(0.8); opacity: 0;}
      to {transform: scale(1); opacity: 1;}
    }

    .popup-content h4 {
      color: #0044cc;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .popup-content button {
      background: #0044cc;
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      transition: 0.3s;
    }

    .popup-content button:hover {
      background: #0035a5;
    }

    @media (max-width: 768px) {
      body { padding: 20px; }
      .connect-container { flex-direction: column; }
      .connect-left, .connect-right { width: 100%; }
    }
      /*Footer Section*/

        footer {
      background: #1f2a37; /* dark background */
      color: #cbd5e1;
      padding: 60px 80px 30px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }

    .footer-logo h2 {
      color: #3b82f6;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .footer-logo p {
      line-height: 1.6;
      font-size: 15px;
    }

    .footer-links h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a {
      text-decoration: none;
      color: #cbd5e1;
      transition: 0.3s;
      font-size: 15px;
    }

    .footer-links ul li a:hover {
      color: #3b82f6;
    }

    .contact-info p {
      display: flex;
      align-items: center;
      margin: 10px 0;
      font-size: 15px;
    }

    .contact-info p i {
      margin-right: 10px;
      color: #3b82f6;
      font-size: 18px;
    }

    /* Social icons */
    .social-icons {
      margin-top: 20px;
    }

    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      margin-right: 10px;
      background: #273548;
      color: #cbd5e1;
      font-size: 18px;
      text-align: center;
      line-height: 40px;
      border-radius: 8px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: #ffffff;
      color: #fff;
    }

    /* Bottom */
    .footer-bottom {
      border-top: 1px solid #334155;
      margin-top: 40px;
      padding-top: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #94a3b8;
    }

    .footer-bottom a {
      text-decoration: none;
      margin-left: 15px;
      color: #94a3b8;
      transition: 0.3s;
    }
    
    .footer-logo img{
      height: 30px;
    }

    .footer-bottom a:hover {
      color: #3b82f6;
    }

    @media (max-width: 768px) {
      footer {
        padding: 40px 30px 20px;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
      }
    }

      @media (max-width: 480px) {
    nav {
      padding: 10px 15px;
    }
    .logo img {
      height: 28px;
      margin-left: 0;
    }
    .nav-links {
      width: 100vw;
      padding-top: 60px;
      font-size: 15px;
      gap: 15px;
    }
    .c-header {
      height: 160px;
      margin-top: 30px;
      padding: 0 10px;
    }
    .c-header h1 {
      font-size: 1.5rem;
    }
    .c-header p {
      font-size: 0.9rem;
    }
    .connect {
      padding: 0 5px;
    }
    .connect h2 {
      font-size: 22px;
    }
    .connect p {
      font-size: 13px;
      margin-bottom: 25px;
    }
    .connect-container {
      gap: 15px;
    }
    .connect-left, .connect-right {
      min-width: 0;
      padding: 15px;
      font-size: 14px;
    }
    .connect-left h3,
    .connect-right h3 {
      font-size: 16px;
    }
    .info-box {
      padding: 10px 12px;
      font-size: 13px;
    }
    .info-box i {
      font-size: 16px;
      margin-right: 8px;
    }
    .info-text {
      font-size: 13px;
    }
    .social a {
      font-size: 18px;
      gap: 10px;
    }
    .popup-content {
      padding: 18px 10px;
    }
    .popup-content h4 {
      font-size: 15px;
    }
    .footer-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    footer {
      padding: 25px 10px 15px;
    }
    .footer-logo h2 {
      font-size: 18px;
      margin-bottom: 10px;
    }
    .footer-logo p,
    .footer-links ul li a,
    .contact-info p {
      font-size: 13px;
    }
    .footer-links h3 {
      font-size: 15px;
      margin-bottom: 10px;
    }
    .social-icons a {
      width: 32px;
      height: 32px;
      font-size: 15px;
      line-height: 32px;
      margin-right: 6px;
    }
    .footer-bottom {
      font-size: 12px;
      margin-top: 20px;
      padding-top: 10px;
      gap: 5px;
    }
  }

