 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: rgba(255,255,255,0.9);

    }

    /* ===== HEADER ===== */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background: rgba(255, 255, 255, 0.95);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    header img {
      height: 35px;
    }

    nav {
      flex: 1;
      display: flex;
      justify-content: flex-end;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 25px;
    }

    nav ul li a {
      text-decoration: none;
      color: #0047ab;
      font-weight: 500;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #1a73e8;
    }

    .lang-btn, .signin-btn {
      border: 1px solid #0047ab;
      background: transparent;
      padding: 6px 12px;
      border-radius: 4px;
      color: #0047ab;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .lang-btn:hover, .signin-btn:hover {
      background: #0047ab;
      color: #fff;
    }

    .signin-btn {
      margin-left: 10px;
    }

    /* ===== TOGGLE BUTTON ===== */
   .menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #0047ab;
  background: none;
  border: none;
  margin-left: auto;   /* Logo se dur rakhega */
}


    /* ===== MOBILE STYLE ===== */
    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
        animation: dropdown 0.3s ease forwards;
      }

      nav ul.active {
        display: flex;
      }

      @keyframes dropdown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
      }

       .menu-toggle {
    display: block;
    margin-left: auto; /* Logo ke right side se door karega */
    padding-right: 10px; /* thoda gap right side */
    margin-left: 70px;
  }
    }

   /* ===== MAIN SECTION ===== */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 60px;
  background: url('../img/bg-001.jpg') no-repeat center center/cover;
}

.left {
  max-width: 45%;
}

.left h2 {
  font-size: 28px;
  color: #0047ab;
  line-height: 1.4;
}

.left ul {
  list-style: none;
  padding: 0;
}

.left ul li {
  margin: 12px 0;
  font-size: 16px;
  color: #0047ab;
}

.left input[type="email"] {
  padding: 12px;
  width: 55%;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
}

.left button {
  padding: 12px 20px;
  background: #0047ab;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.left p {
  margin-top: 15px;
  font-size: 16px;
  color: #0047ab;
}

/* ===== PHONE WITH VIDEO ===== */
.right {
  position: relative;
  max-width: 45%;
}

.phone-container {
  position: relative;
  display: inline-block;
}

.phone-img {
   width: 350px; /* phone size */ 
  display: block; 
} 

.video-container {
   position: absolute; top: 8%; /* adjust vertical alignment */
    left: 12.8%; /* adjust horizontal alignment */ 
    width: 74%; 
    height: 74%; 
    overflow: hidden;
   } 
    
    
    .video-container video { 
      width: 50%; 
      height: 95%;
       object-fit: cover; 
       display: block; 
      }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container {
    padding: 50px 30px;
  }
  .left {
    max-width: 50%;
  }
  .phone-img {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .left h2 {
    font-size: 22px;
  }

  .left  p{
    font-size: 14px;

  }

  .left input[type="email"] {
    width: 70%;
    margin-bottom: 10px;
  }

  .left button {
    width: auto;
  }

  .right {
    max-width: 100%;
  }

  .phone-img {
    width: 260px;
  }

  .video-container {
    top: 8%;
    left: 12.5%;
    width: 75%;
    height: 74%;
  }
}

@media (max-width: 480px) {
  .left h2 {
    font-size: 20px;
  }

  .left ul li {
    font-size: 14px;
  }

  .left input[type="email"] {
    width: 70%;
    margin: 0 0 10px 0;
  }

  .phone-img {
    width: 220px;
  }
}



     .tutor-section {
      text-align: center;
      padding: 40px 20px;
    }
    .tutor-section h2 {
      color: #1d4ed8; /* blue heading */
      font-size: 28px;
      margin-bottom: 10px;
    }
    .tutor-section p {
      color: #555;
      margin-bottom: 30px;
      font-size: 16px;
    }

    /* Slider Container */
    .slider {
      position: relative;
      width: 90%;
      margin: auto;
      overflow: hidden;
    }
    .slide-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .slide {
      min-width: 200px;
      margin: 0 10px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      text-align: center;
      padding: 15px;
    }
    .slide img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 6px;
    }
    .slide h3 {
      margin: 10px 0 5px;
      font-size: 18px;
      color: #222;
    }
    .slide p {
      font-size: 16px;
      color: #444;
    }

    /* Arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
      border-radius: 50%;
      font-size: 18px;
    }
    .arrow.left { left: 10px; }
    .arrow.right { right: 10px; }


    .why-section {
      text-align: center;
      padding: 60px 20px;
      max-width: 900px;
      margin: auto;
    }

    .why-section img.icon {
      width: 70px;
      margin-bottom: 20px;
    }

    .why-section h2 {
      color: #1d4ed8; /* Blue heading */
      font-size: 28px;
      margin-bottom: 20px;
    }

    .why-section p {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .why-section img.devices {
      max-width: 90%;
      height: auto;
    }

       /* Section Container */
    .global-tutor-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 150px;
      gap: 40px;
    }

    /* Left Content */
    .global-tutor-text {
      flex: 1;
    }

    .global-tutor-text h2 {
      font-size: 24px;
      color: #0047ab; /* blue heading */
      margin-bottom: 20px;
    }

    .global-tutor-text p {
      font-size: 17px;
      line-height: 1.9;
      margin-bottom: 15px;
      color: #333;
    }

    /* Right Image */
    .global-tutor-image {
      flex: 1;
      text-align: center;
    }

    .global-tutor-image img {
      max-width: 100%;
      height: auto;
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .global-tutor-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
      }

      .global-tutor-text {
        margin-bottom: 30px;
      }
    }


     /* Section Container */
    .certificate-section {
      text-align: center;
      padding: 60px 20px;
    }

    /* Heading */
    .certificate-section h2 {
      font-size: 26px;
      color: #0047ab; /* Blue heading */
      margin-bottom: 20px;
    }

    /* Paragraph */
    .certificate-section p {
      font-size: 16px;
      color: #333;
      max-width: 800px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

   /* Certificate Image */
.certificate-image img {
  max-width: 700px;
  width: 100%; /* make it responsive */
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .certificate-image img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .certificate-image img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }
}


    /* Responsive */
    @media (max-width: 768px) {
      .certificate-section h2 {
        font-size: 22px;
      }

      .certificate-section p {
        font-size: 14px;
      }
    }

/* FAQ Section */
.faq-section {
  padding: 60px 120px;
  background: #fff;
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  color: #0047ab;
  margin-bottom: 40px;
}

/* FAQ Grid */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0047ab;
  position: relative;
  padding-left: 20px;
}

.faq-item h3::before {
  content: "■";
  color: #f7a700; /* orange square */
  position: absolute;
  left: 0;
  font-size: 27px;
  top: -10px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 40px 30px;
  }

  .faq-section h2 {
    font-size: 24px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 20px;
  }

  .faq-section h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .faq-item h3 {
    font-size: 15px;
    padding-left: 18px;
  }

  .faq-item h3::before {
    font-size: 22px;
    top: -8px;
  }

  .faq-item p {
    font-size: 14px;
    line-height: 1.7;
  }
}



.app-download-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: white;
  background-color: #1b5eac;
}

.app-phone-mockup {
  flex: 1 1 300px;
  text-align: center;
  margin-bottom: 20px; /* add spacing for stacked layout */
}

.app-phone-mockup img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.app-text-block {
  flex: 1 1 400px;
  padding: 20px;
  text-align: left;
}

.app-text-block h1 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.app-text-block p {
  font-size: 14px;
  margin-bottom: 25px;
}

.app-store-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* wrap icons on small screens */
  justify-content: flex-start;
}

.app-store-links img {
  height: 50px;
  width: auto;
  cursor: pointer;
}

/* Tablet responsiveness */
@media (max-width: 992px) {
  .app-text-block h1 {
    font-size: 32px;
  }
  .app-phone-mockup img {
    max-width: 220px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .app-download-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
  }

  .app-text-block {
    padding: 20px 10px;
    text-align: center;
  }

  .app-text-block h1 {
    font-size: 28px;
  }

  .app-store-links {
    justify-content: center;
    gap: 10px;
  }

  .app-phone-mockup img {
    max-width: 180px;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .app-text-block h1 {
    font-size: 24px;
  }

  .app-text-block p {
    font-size: 13px;
  }

  .app-store-links img {
    height: 45px;
  }

  .app-phone-mockup img {
    max-width: 150px;
  }
}


    
    .footer-section {
      background-color: #f5f5f5;
      padding: 20px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      font-size: 13px;
      color: #003366;
    }

    .footer-left,
    .footer-links,
    .footer-icons {
      flex: 1 1 100%;
      text-align: center;
      margin-bottom: 10px;
    }

    .footer-links a {
      margin: 5px 8px;
      display: inline-block;
      text-decoration: none;
      color: #003366;
      font-weight: 500;
    }

    .footer-icons a {
      display: inline-block;
      margin: 0 6px;
    }

    .footer-icons img {
      width: 28px;
      height: 28px;
      border-radius: 50%;
    }

    @media (min-width: 768px) {
      .footer-section {
        flex-direction: row;
        text-align: left;
      }

      .footer-left {
        flex: 1 1 200px;
        text-align: left;
      }

      .footer-links {
        flex: 2 1 400px;
        text-align: center;
      }

      .footer-icons {
        flex: 1 1 200px;
        text-align: right;
      }
    }



    /* /signup */



      .container-signup {
         
            font-family: Arial, sans-serif;
            background: #f7a94d;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

     .signup-box {
            background: #fff;
            width: 420px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
             margin: 30px auto;
        }

        .signup-header {
            padding: 15px;
            border-bottom: 1px solid #ddd;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
        }

        .signup-body {
            padding: 20px 30px;
        }

        .signup-body .logo {
            text-align: center;
            margin-bottom: 15px;
        }

        .signup-body h2 {
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .signup-body p {
            text-align: center;
            font-size: 13px;
            color: #444;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
            border-bottom: 1px solid #ddd;
        }

        .form-group input {
            width: 100%;
            padding: 10px 5px;
            border: none;
            outline: none;
            font-size: 14px;
        }

        .form-group input::placeholder {
            color: #888;
        }

        .btn {
            width: 100%;
            padding: 12px;
            background: #2358a5;
            border: none;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
        }

        .btn:hover {
            background: #163d75;
        }

        .terms {
            font-size: 12px;
            text-align: center;
            color: #555;
            margin-top: 10px;
        }

        .terms a {
            color: #2358a5;
            text-decoration: none;
        }

        .checkbox-wrap {
            margin: 10px 0;
            font-size: 13px;
            color: #444;
        }

        .footer {
            background: #2358a5;
            text-align: center;
            padding: 10px;
            font-size: 13px;
            color: #fff;
        }

        .footer a {
            color: #fff;
            font-weight: bold;
            text-decoration: none;
        }


        /* companies */

        
        /* Full Section Background Image and Overlay */
        .full-section {
            display: flex;
            min-height: 100vh;
            background-image: url('../img/n-home-1-slider-image-4.webp');
            /* Replace with your background image */
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* Dark Overlay for the background image */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            /* Dark overlay */
            z-index: 1;
        }

        .content {
            position: relative;
            z-index: 2;
            display: flex;
            flex: 1;
            justify-content: space-between;
            padding: 40px;
            align-items: center;
            width: 100%;
        }

        /* Left Form Section */
        .form-section {
            flex: 1;
            background-color: #ffffff;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-section h2 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #333;
        }

        .form-section p {
            font-size: 14px;
            margin-bottom: 20px;
            color: #007bff;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            font-size: 14px;
            margin-bottom: 5px;
            color: #333;
        }

        input,
        select,
        textarea {
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        button {
            padding: 12px;
            background-color: #5a93d6;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        button:hover {
            background-color: #3a6fa1;
        }

        /* Right Video Section */
        .video-section {
            flex: 1;
            text-align: center;
            padding: 20px;
        }

        .video-section h2 {
            font-size: 26px;
            margin-bottom: 20px;
            color: white;
        }

        .video-section iframe {
            width: 100%;
            height: 315px;
            border: none;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }

            .form-section,
            .video-section {
                flex: none;
                width: 100%;
            }

            .video-section iframe {
                height: 200px;
            }
        }

        /* privacy */

        .privacy-wrapper {
      background: #f7a94d;
      padding: 40px 20px;
    }

    .privacy-container {
      background-color: #fff;
      max-width: 1000px;
      margin: 0 auto;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.7;
    }

    .privacy-container h1,
    .privacy-container h2,
    .privacy-container h3 {
      color: #000;
    }

    .privacy-container h1{
        text-align: center;
        margin: 20px auto;
        font-size: 20px;
    }

    .privacy-container ul {
      padding-left: 20px;
    }

    .privacy-container ul li {
      margin-bottom: 10px;
    }

    @media screen and (max-width: 768px) {
      .privacy-container {
        padding: 20px;
      }
    }


    /* terms */

    .terms-wrapper {
      background: #f7a94d;
      padding: 40px 20px;
    }

    .terms-container {
      background-color: #fff;
      max-width: 1000px;
      margin: 0 auto;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.7;
    }

    .terms-container h1,
    .terms-container h2 {
      color: #000;
    }

    .terms-container h1{
        text-align: center;
        margin: 20px auto;
        font-size: 20px
    }

    .terms-container ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .terms-container ul li {
      margin-bottom: 10px;
    }

    @media screen and (max-width: 768px) {
      .terms-container {
        padding: 20px;
      }
    }


      .signin {
            background-color: #f7a94d;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .login-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
            padding: 30px;
        }

        h1 {
            text-align: center;
            margin-bottom: 25px;
            color: #333;
            font-weight: 600;
            font-size: 24px;
        }

        .social-login {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 25px;
        }

        .social-btn {
            padding: 12px;
           
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            
          
        }

        .facebook-btn {
             color: #f8f9ff;
            background-color: #3b5998;
        }

        .google-btn {
           color: #fff9f9;
            background-color: #dd4b39;
        }

        .divider {
            text-align: center;
            margin: 25px 0;
            position: relative;
            color: #777;
        }

        .divider::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-color: #e0e0e0;
            z-index: 1;
        }

        .divider span {
            background-color: white;
            padding: 0 15px;
            position: relative;
            z-index: 2;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 14px;
        }

        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: border 0.2s ease;
        }

        input[type="email"]:focus,
        input[type="password"]:focus {
            border-color: #6e8efb;
            outline: none;
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .remember-me {
            display: flex;
            align-items: center;
        }

        .remember-me input {
            margin-right: 8px;
        }

        .forgot-password {
            color: #6e8efb;
            text-decoration: none;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #4a6ee0;
            border: none;
            border-radius: 4px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .submit-btn:hover {
            background-color: #3a5ecc;
        }

        .signup-link {
            text-align: center;
            margin-top: 25px;
            color: #666;
            font-size: 14px;
        }

        .signup-link a {
            color: #4a6ee0;
            text-decoration: none;
            font-weight: 500;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        @media (max-width: 480px) {
            .login-container {
                padding: 25px 20px;
            }
        }