 /* all common */
 
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

      :root {
      --primary: #3b82f6;
      --secondary: #020617;
      --light: #0f172a;
      --text: #cbd5e1;
      --white: #111827;
      --border: #1e293b;
      --card: #111827;
      --card-hover: #1e293b;
      --heading: #f8fafc;
    }

     body {
      font-family: 'Inter', sans-serif;
      background: #020617;
      color: var(--text);
      line-height: 1.6;
    }
      a {
      text-decoration: none;
      color: inherit;
    }
 
      .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }
     header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(2, 6, 23, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

     nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--heading);
    }
      .logo span {
      color: var(--primary);
    }


      .nav-links {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    .nav-links a {
      font-weight: 500;
      color: #cbd5e1;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

     .btn {
      display: inline-block;
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 10px;
      transition: 0.3s;
      font-weight: 600;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

    .hero {
      padding: 100px 0;
      background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    }

.about-page .hero{
      text-align: center;
    }
     .hero h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      color: var(--heading);
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #94a3b8;
    }
.about-page .hero p {
     max-width: 850px;
     margin: auto;
}
     .mobile-menu {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }


     @media(max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: #0f172a;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        display: none;
      }

      .nav-links.active {
        display: flex;
      }

      .mobile-menu {
        display: block;
      }
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      color: #f8fafc;
      cursor: pointer;
    }

    @media(max-width:768px) {

     .enq-btn{
      display: none !important;
     }
      nav {
        position: relative;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 18px;
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 18px;
        z-index: 999;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        color: #f8fafc;
        font-size: 1rem;
        padding: 10px 0;
        border-bottom: 1px solid #1e293b;
      }

    }

 
 /* WhatsApp Floating Button */

.whatsapp-float {
      position: fixed;
      width: 62px;
      height: 62px;
      bottom: 25px;
      right: 25px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
      z-index: 9999;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: translateY(-5px) scale(1.05);
    }
  /*end WhatsApp Floating Button */


  /* Floating Enquiry Button  */

   .enquiry-btn {
      position: fixed;
      bottom: 100px;
      right: 25px;
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      color: white;
      border: none;
      padding: 14px 22px;
      border-radius: 50px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
      z-index: 9999;
      transition: all 0.3s ease;
    }

    .enquiry-btn:hover {
      transform: translateY(-4px);
    }

    .enquiry-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      padding: 20px;
    }

    .enquiry-popup-box {
      position: relative;
      width: 100%;
      max-width: 900px;
      height: 505px !important;
      background: #0f172a;
      border: 1px solid #1e293b;
      border-radius: 24px;
      overflow: hidden;
      padding: 25px;
    }

    .enquiry-popup-box h2 {
      color: #f8fafc;
      margin-bottom: 10px;
    }

    .enquiry-popup-box p {
      color: #94a3b8;
      margin-bottom: 20px;
    }

    .enquiry-popup-box iframe {
      width: 100%;
      height: calc(100% - 90px);
      border: none;
      border-radius: 16px;
      background: white;
    }

    .popup-close {
      position: absolute;
      top: 14px;
      right: 18px;
      background: transparent;
      border: none;
      color: #f8fafc;
      font-size: 34px;
      cursor: pointer;
    }

  /* END Floating Enquiry Button  */


/* Career */
  .careers-btn {
      position: fixed;
      bottom: 170px;
      right: 25px;
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      color: white;
      border: none;
      padding: 14px 22px;
      border-radius: 50px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
      z-index: 9999;
      transition: all 0.3s ease;
    }

    .careers-btn:hover {
      transform: translateY(-4px);
    }

    .careers-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10001;
      padding: 20px;
    }

    .careers-popup-box {
      position: relative;
      width: 100%;
      max-width: 900px;
      height: 655px !important;
      background: #0f172a;
      border: 1px solid #1e293b;
      border-radius: 24px;
      overflow: hidden;
      padding: 25px;
    }

    .careers-popup-box h2 {
      color: #f8fafc;
      margin-bottom: 10px;
    }

    .careers-popup-box p {
      color: #94a3b8;
      margin-bottom: 20px;
    }

    .careers-popup-box iframe {
      width: 100%;
      height: calc(100% - 90px);
      border: none;
      border-radius: 16px;
      background: white;
    }

    .popup-close {
      position: absolute;
      top: 14px;
      right: 18px;
      background: transparent;
      border: none;
      color: #f8fafc;
      font-size: 34px;
      cursor: pointer;
    }
/* End Career */
