/* ===== GLOBAL ===== */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        background: url("https://plus.unsplash.com/premium_photo-1671411374149-8af6acdb5148?w=700&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjgxfHxtZWRpY2FsJTIwd2FsbHBhcGVyfGVufDB8fDB8fHww")
          no-repeat center center/cover;
        color: black;
      }

      a {
        text-decoration: none;
        color: inherit;
      }
      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 0;
      }
      h2,
      h3 {
        font-weight: 600;
        color: #0072ce;
      }
      p {
        color: #555;
      }
      .btn {
        padding: 12px 25px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s;
        display: inline-block;
        text-align: center;
      }
      .btn-primary {
        background: #0072ce;
        color: #fff;
        border: none;
      }
      .btn-primary:hover {
        background: #005bb5;
      }
      .btn-secondary {
        background: #e0e0e0;
        color: #333;
        border: none;
      }
      .btn-secondary:hover {
        background: #c2c2c2;
      }

      /* ===== NAVBAR ===== */
      nav {
        background: black;
        padding: 15px 0;
      }
      nav .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
      }
      nav .logo {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
      }
      nav ul {
        display: flex;
        gap: 20px;
        list-style: none;
      }
      nav ul li a {
        color: #fff;
        font-weight: 500;
        padding: 8px 12px;
        border-radius: 5px;
        transition: background 0.3s;
      }

      
       nav ul li a:hover,
      nav ul li a.active {
        background: #027df8;
      }
      /* Hamburger */
      .hamburger {
        display: none;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
      }
      @media (max-width: 768px) {
        nav ul {
          position: absolute;
          top: 60px;
          right: 0;
          background: rgba(0, 9, 15, 0.95);
          flex-direction: column;
          width: 200px;
          padding: 10px 0;
          display: none;
          border-radius: 8px;
        }
        nav ul.active {
          display: flex;
          /*color: #057df5;*/
        }
        .hamburger {
          display: block;
        }
      }

      /* ===== SECTION TITLES ===== */
      .section-title {
        text-align: center;
        margin-bottom: 50px;
      }
      .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
      }
      .section-title p {
        font-size: 1.1rem;
      }
      #section-titles{
        color: white;
      }

      /* ===== FEATURES ===== */
      .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }
      .feature-card {
        background: #fff;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
      }
      .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
      }
      .feature-icon {
        font-size: 3rem;
        color: #0072ce;
        margin-bottom: 20px;
      }
      .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
      }
      .feature-card p {
        font-size: 1rem;
        margin-bottom: 15px;
        color: black;
      }

      /* ===== PARTNERS ===== */
      .partners {
        margin-top: 60px;
      }
      .partners h2 {
        margin-bottom: 30px;
        justify-content: center;
      }
      .partners-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
        text-align: center;
      }
      .partner-card {
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
      }
      .partner-card:hover {
        transform: translateY(-5px);
      }
      .partner-card i {
        font-size: 2.5rem;
        color: #0072ce;
        margin-bottom: 10px;
        display: block;
      }
      .partner-card h4 {
        margin-top: 10px;
        font-size: 1.1rem;
        text-align: center;
      }

      /* ===== CSR ===== */
      .csr {
        margin-top: 60px;
        text-align: center;
      }
      .csr h2 {
        margin-bottom: 30px;
      }
      .csr p {
        font-size: 1rem;
        max-width: 900px;
        margin: 0 auto;
        color: white;
      }

      /* ===== FORM ===== */
      .contact-form {
        max-width: 700px;
        margin: 80px auto 0;
        background: rgba(0, 0, 0, 0.808);
        color: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      }
      .contact-form h3 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2rem;
        color: #0187f5;
      }
      .form-group {
        margin-bottom: 20px;
      }
      .form-control {
        width: 100%;
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 1rem;
        transition: border-color 0.3s;
      }
      .form-control:focus {
        outline: none;
        border-color: #0072ce;
      }
      textarea.form-control {
        min-height: 120px;
        resize: vertical;
      }

      /* ===== FOOTER ===== */
      footer {
        background: #111;
        color: #fff;
        padding: 50px 0 20px;
      }
      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
      }
      .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #fff;
      }
      .footer-links {
        list-style: none;
        padding: 0;
      }
      .footer-links li {
        margin-bottom: 10px;
      }
      .footer-links li a {
        font-size: 0.95rem;
        color: #ccc;
      }
      .footer-links li a:hover {
        color: #0072ce;
      }
      .newsletter {
        display: flex;
        gap: 10px;
        margin-top: 10px;
      }
      .newsletter input {
        flex: 1;
        padding: 10px 15px;
        border-radius: 8px;
        border: none;
      }
      .newsletter button {
        padding: 10px 20px;
        border-radius: 8px;
        border: none;
        background: #0072ce;
        color: #fff;
        cursor: pointer;
        transition: background 0.3s;
      }
      .newsletter button:hover {
        background: #005bb5;
      }
      .footer-bottom {
        text-align: center;
        margin-top: 40px;
        font-size: 0.9rem;
        color: #888;
      }

      /* ===== STICKY QUOTE ===== */
      .sticky-quote {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: rgb(33, 216, 33);
        color: #fff;
        padding: 15px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transition: background 0.3s, transform 0.2s;
      }
      .sticky-quote:hover {
        background: green;
        transform: translateY(-3px);
      }

      @media (max-width: 768px) {
        .features {
          gap: 20px;
        }
        .feature-icon {
          font-size: 2.5rem;
        }
      }
      @media (max-width: 480px) {
        .section-title h2 {
          font-size: 1.7rem;
        }
        .feature-card {
          padding: 25px 15px;
        }
      }
      .testimonials {
        text-align: center;
        margin: 60px 0;
      }
      .testimonial-container {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
      }
      .testimonial {
        display: none;
        background: rgba(0, 0, 0, 0.747);
        padding: 30px 25px;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      }
      .testimonial.active {
        display: block;
      }
      .testimonial p {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: white;
      }
      .testimonial h4 {
        font-weight: 600;
        color: #0072ce;
      }
     .logo {
  display: flex;
  align-items: center;
}


.logo-link {
  text-decoration: none;
}

.logo-img {
  height: 110px; /* adjust as needed */
  width: auto;
  border-radius: 20px; /* optional for smoother corners */
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}
