     :root {
      --primary: #0f172a;
      --secondary: #1e293b;
      --accent: #06b6d4;
      --accent-dark: #0891b2;
      --highlight: #f97316;
      --light-bg: #f8fbff;
      --muted: #64748b;
      --white: #ffffff;
      --shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      --radius: 22px;
    }

    * {
      box-sizing: border-box; 
    }
    
    
    

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      /*background: linear-gradient(180deg, #f8fbff 0%, #eef6fb 100%);*/
      color: #1f2937;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    section {
      padding: 80px 0;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .section-subtitle {
      max-width: 760px;
      color: var(--muted);
      margin: 0 auto;
      font-size: 1rem;
    }

    .custom-navbar {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    }

    .navbar-brand-box {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      background: linear-gradient(135deg, #0f172a 0%, #0ea5e9 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(14, 165, 233, 0.25);
      flex-shrink: 0;
    }

    .brand-title {
      font-size: 1rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.1;
      margin: 0;
    }

    .brand-subtitle {
      font-size: 0.72rem;
      letter-spacing: 1.5px;
      color: var(--muted);
      text-transform: uppercase;
      margin: 0;
    }

    .navbar .nav-link {
      font-weight: 600;
      color: var(--secondary);
      margin-left: 10px;
      transition: 0.3s ease;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
      color: var(--accent-dark);
    }

    .hero-section {
      position: relative;
      padding: 120px 0 90px;
      background:
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.18), transparent 24%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.14), transparent 22%),
        linear-gradient(135deg, #0f172a 0%, #111827 60%, #0b3b52 100%);
      color: var(--white);
      overflow: hidden;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: #fff;
      padding: 10px 18px;
      border-radius: 50px;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: clamp(2.4rem, 6vw, 2.6rem);
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: 18px;
    }

    .hero-text {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 28px;
      max-width: 620px;
    }

    .custom-btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      border: none;
      padding: 14px 26px;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(6, 182, 212, 0.3);
      transition: 0.3s ease;
    }

    .custom-btn-primary:hover {
      transform: translateY(-2px);
      color: #fff;
    }

    .custom-btn-outline {
      border: 1px solid rgba(255, 255, 255, 0.28);
      color: white;
      padding: 14px 26px;
      border-radius: 50px;
      font-weight: 700;
      background: transparent;
      transition: 0.3s ease;
    }

    .custom-btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 18px;
      padding: 20px;
      height: 100%;
      backdrop-filter: blur(10px);
    }

    .stat-card h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .stat-card p {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 0;
    }

    .hero-panel {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 28px;
      padding: 24px;
      backdrop-filter: blur(10px);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    }

    .hero-panel-inner {
      background: rgba(255, 255, 255, 0.96);
      border-radius: 22px;
      padding: 24px;
      color: #1f2937;
    }

    .hero-panel-inner h3 {
      color: var(--primary);
      font-weight: 800;
      margin-bottom: 20px;
    }

    .feature-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .feature-row:last-child {
      border-bottom: none;
    }

    .feature-icon {
      min-width: 46px;
      height: 46px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #e0f7fa, #dbeafe);
      font-size: 1.25rem;
    }

    .feature-row strong {
      display: block;
      color: var(--primary);
      font-size: 0.98rem;
      margin-bottom: 4px;
    }

    .feature-row span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .card-box {
      background: rgba(255, 255, 255, 0.94);
      border-radius: var(--radius);
      padding: 30px 20px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(15, 23, 42, 0.06);
      height: 100%;
      transition: 0.3s ease;
    }

    .card-box:hover {
      transform: translateY(-6px);
    }

    .icon-box {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      background: linear-gradient(135deg, #e0f7fa, #dbeafe);
      color: var(--accent-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .card-box h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .card-box p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .about-panel {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: white;
      border-radius: 28px;
      padding: 36px;
      height: 100%;
      box-shadow: var(--shadow);
    }

    .about-panel h3 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .about-panel p {
      color: rgba(255, 255, 255, 0.84);
    }

    .about-list {
      padding-left: 0;
      margin-top: 20px;
      margin-bottom: 0;
      list-style: none;
    }

    .about-list li {
      padding: 14px 16px;
      margin-bottom: 12px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .special-section {
      background: linear-gradient(135deg, #ecfeff 0%, #eff6ff 100%);
    }

    .special-card {
      background: #fff;
      border-radius: 28px;
      padding: 36px;
      box-shadow: var(--shadow);
      height: 100%;
    }

    .tag-pill {
      display: inline-block;
      background: #fff7ed;
      color: var(--highlight);
      font-size: 0.85rem;
      font-weight: 700;
      padding: 8px 14px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .check-item {
      background: #f8fafc;
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 14px;
      padding: 12px 16px;
      margin-bottom: 12px;
      font-weight: 600;
      color: var(--secondary);
    }

    .special-highlight {
      background: linear-gradient(135deg, #0ea5e9, #06b6d4);
      color: white;
      border-radius: 24px;
      padding: 30px;
      height: 100%;
      box-shadow: 0 20px 40px rgba(14, 165, 233, 0.22);
    }

    .special-highlight h3 {
      font-weight: 800;
      margin-bottom: 12px;
    }

    .step-card .step-number {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .cta-section {
      padding-top: 0;
    }

    .cta-box {
      background: linear-gradient(135deg, #0f172a 0%, #0b3b52 100%);
      color: white;
      border-radius: 30px;
      padding: 42px;
      box-shadow: 0 28px 60px rgba(15, 23, 42, 0.2);
    }

    .cta-box h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .cta-box p {
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 0;
    }

    .footer {
      background: #0b1220;
      color: rgba(255, 255, 255, 0.82);
      padding: 70px 0 25px;
    }

    .footer .brand-title {
      color: #fff;
    }

    .footer p,
    .footer a {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.95rem;
    }

    .footer h5 {
      color: white;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .footer a:hover {
      color: white;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 30px;
      padding-top: 18px;
      text-align: center;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
    }

    @media (max-width: 991.98px) {
      .hero-section {
        padding: 100px 0 70px;
      }

      .navbar .nav-link {
        margin-left: 0;
      }

      .special-card,
      .special-highlight,
      .about-panel,
      .cta-box {
        padding: 28px;
      }
    }

    @media (max-width: 767.98px) {
      section {
        padding: 70px 10px;
      }

      .hero-title {
        font-size: 2.3rem;
      }

      .brand-title {
        font-size: 0.9rem;
      }

      .brand-subtitle {
        font-size: 0.68rem;
      }

      .hero-buttons .btn,
      .hero-buttons a {
        width: 100%;
        text-align: center;
      }

      .cta-box {
        text-align: center;
      }
    }
    
    @media (max-width: 575px) {
         #about .about-img img {
    height: 300px !important;
    margin-bottom: 30px;
}

 body img.logo-main {
        width: 255px !important;
    }
    }
    
    
    /*-----------*/
    
    img.logo-main {
        width: 315px !important;
    }
    
    #about .row {
        align-items: center;
    }
    
    #about .about-img img {
    height: 465px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}
    
    #about .about-content ul {
        padding-left: 20px;
    }
    
    #about .about-content ul li {
        padding-top: 5px;
    }
    
    section#services, section#specialized, section#industries {
        background: linear-gradient(180deg, #f8fbff 0%, #eef6fb 100%);
    }