  /* ===================== GLOBAL STYLES ===================== */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
     font-family: 'Jost', sans-serif;
     }

      body {

        line-height: 1.6;
        background: url("https://images.unsplash.com/photo-1585421514738-01798e348b17?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8bWVkaWNhbHxlbnwwfHwwfHx8MA%3D%3D")
          no-repeat center center/cover;
        color: #333;
        
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
      }

      /* ===================== NAVBAR ===================== */
      header {
        background: black;
        color: #fff;
        
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 20px;
      }

      .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
      }

      .nav-links a:hover {
        color: #0080ff;
      }

      .hamburger {
        display: none;
        font-size: 1.8rem;
        cursor: pointer;
      }

      @media (max-width: 768px) {
        .nav-links {
          position: absolute;
          top: 65px;
          right: 0;
          background: #00050a;
          flex-direction: column;
          width: 220px;
          display: none;
          padding: 20px;
          border-radius: 0 0 8px 8px;
        }

        .nav-links.active {
          display: flex;
        }

        .hamburger {
          display: block;
        }
      }

      /* ===================== SECTION TITLES ===================== */
      .section-title {
        text-align: center;
        margin: 50px 0;
      }

      .section-title h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #0077cc;
        margin-bottom: 10px;
      }

      .section-title p {
        font-size: 1.1rem;
        color: black;
      }

      /* ===================== ABOUT CONTENT ===================== */
      .about-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        align-items: center;
        margin-bottom: 60px;
      }

      .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #e6f0fa;
        border-radius: 20px;
        padding: 30px;
      }

      .about-image i {
        color: #0077cc;
        font-size: 5rem;
      }

      .about-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #0077cc;
      }

      .about-content p {
        margin-bottom: 15px;
        color: black;
      }

      .btn {
        display: inline-block;
        background: #0077cc;
        color: #fff;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        transition: 0.3s;
      }

      .btn:hover {
        background: #005fa3;
      }

      /* ===================== FEATURE CARDS ===================== */
      .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
      }

      .feature-card {
        background: black;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-10px);
      }

      .feature-icon {
        font-size: 2.5rem;
        color: #0077cc;
        margin-bottom: 15px;
      }

      .feature-card h3 {
        color: #0077cc;
        margin-bottom: 10px;
      }

      .feature-card p {
        color: white;
        font-size: 0.95rem;
      }

      
      /* ===== 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;
        color: #005fa3;
      }
      .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;
        color: #005fa3;
      }
      .csr p {
        font-size: 1rem;
        max-width: 900px;
        margin: 0 auto;
        color: black;
      }

      /* ===== 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;
      }
/*tstimonial*/
        .testimonials {
        text-align: center;
        margin: 60px 0;
      }

      .testimonials h2{
        color: #005fa3;
      }
      .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;
}

      /* ===================== FOOTER ===================== */
      footer {
        background: black;
        color: #fff;
        padding: 60px 0 20px;
        margin-top: 80px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-column h3 {
        margin-bottom: 15px;
        font-size: 1.2rem;
        border-left: 4px solid #0077cc;
        padding-left: 10px;
        color: #005fa3;
      }

      .footer-column p,
      .footer-links li {
        font-size: 0.95rem;
        color: #ddd;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: #ddd;
        text-decoration: none;
        transition: 0.3s;
      }

      .footer-links a:hover {
        color: #fff;
      }

      .newsletter {
        display: flex;
        gap: 10px;
      }

      .newsletter input {
        flex: 1;
        padding: 10px;
        border-radius: 5px;
        border: none;
      }

      .newsletter button {
        background: #0077cc;
        border: none;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
      }

      .newsletter button:hover {
        background: #005fa3;
      }

      .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 15px;
      }

      /* ===================== STICKY QUOTE ===================== */
      .sticky-quote {
        position: fixed;
        right: 20px;
        bottom: 20px;
        background: rgb(33, 216, 33);
        color: #fff;
        padding: 12px 20px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        z-index: 999;
      }
      .sticky-quote p {
        color: white;
      }

      .sticky-quote:hover {
        background: green;
      }

      /* ===================== RESPONSIVE ===================== */
      @media (max-width: 768px) {
        .about-content {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .about-image {
          margin-bottom: 20px;
        }

        .newsletter {
          flex-direction: column;
        }

        .newsletter input,
        .newsletter button {
          width: 100%;
        }
      }
       .logo {
  display: flex;
  align-items: center;
}


.logo-link {
  text-decoration: none;
}

.logo-img {
  height: 100px; /* adjust as needed */
  width: auto;
  border-radius: 20px; /* optional for smoother corners */
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

