     .holder{ background-color: transparent;
            width: 300px;
            height: 230px;
            overflow: hidden;
            padding: 1px;
            font-family: Helvetica, serif;
            font-weight: bold;
            font-size: 14px;
        }

            .holder .mask {
                position: relative;
                left: 0px;
                top: 10px;
                width: 300px;
                height: 230px;
                overflow: hidden;
            }

            .holder ul {
                list-style: none;
                margin: 0;
                padding: 0;
                position: relative;
            }

                .holder ul li {
                    padding: 7px 0px;
                }

        .panel-heading {
            background-color: transparent !important;
            color: transparent !important;
        }

        .p-cb {
            background-color: transparent !important;
        } 
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        color: white;
      }
      :root {
        --navy: #0a2240;
        --navy-light: #123866;
        --gold: #c9960c;
        --gold-light: #f0b429;
        --teal: #0e7b6c;
        --teal-light: #1aaa96;
        --cream: #faf8f3;
        --white: #ffffff;
        --text: #1a1a2e;
        --muted: #556080;
        --border: rgba(0, 0, 0, 0.1);
        --card-shadow: 0 2px 12px rgba(10, 34, 64, 0.08);
      }
      body {
        font-family: "DM Sans", sans-serif;
      }

      /* Top bar */
      .topbar {
        background: #f9660a;
        color: white;
        font-size: 14px;
        padding: 6px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .topbar a {
        color: white;
        text-decoration: none;
        margin-left: 16px;
      }
      .topbar a:hover {
        color: var(--gold-light);
      }

      /* Header */
      header{
        background: var(--white);
        border-bottom: 3px solid var(--gold);
        padding: 16px 32px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 100;
      }
      .logo-area {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .logo-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .logo-circle svg {
        width: 36px;
        height: 36px;
      }
      .logo-text h1 {
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        letter-spacing: 0.5px;
      }
      .logo-text p {
        font-size: 11px;
        color: var(--muted);
        letter-spacing: 1px;
        text-transform: uppercase;
      }
      nav {
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      nav a {
        font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    padding: 7px 5px;
    border-radius: 4px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    text-transform: uppercase;
      }
      nav a:hover,
      nav a.active {
       background: #f9660a;
       color: white;
      }

      /* Hero */
      .hero {
        background: linear-gradient(
          135deg,
          var(--navy) 0%,
          var(--navy-light) 50%,
          #1a4a7a 100%
        );
        color: var(--white);
        padding: 64px 32px;
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      }
      .hero-inner {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .hero-badge {
        display: inline-block;
        background: var(--gold);
        color: var(--navy);
        font-size: 11px;
        font-weight: 600;
        padding: 4px 14px;
        border-radius: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
      }
      .hero h2 {
        font-size: 40px;
        font-weight: 300;
        margin-bottom: 16px;
        line-height: 1.2;
      }
      .hero h2 strong {
        font-weight: 600;
        color: var(--gold-light);
      }
      .hero p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.75);
        max-width: 560px;
        margin-bottom: 32px;
      }
      .hero-ctas {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }
      .btn-primary {
        background: var(--gold);
        color: var(--navy);
        padding: 12px 28px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s;
        display: inline-block;
      }
      .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-1px);
      }
      .btn-outline {
        border: 1.5px solid rgba(255, 255, 255, 0.5);
        color: var(--white);
        padding: 12px 28px;
        border-radius: 6px;
        font-weight: 500;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s;
        display: inline-block;
      }
      .btn-outline:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.08);
      }
      .hero-stats {
        margin-top: 48px;
        display: flex;
        gap: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 32px;
        flex-wrap: wrap;
      }
      .hero-stat .num {
        font-size: 28px;
        font-weight: 600;
        color: var(--gold-light);
      }
      .hero-stat .lbl {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 2px;
        letter-spacing: 0.5px;
      }

      /* Highlights */
      .highlights {
        background: var(--navy);
      }
      .highlights-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .highlight-item {
        padding: 40px 32px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
      }
      .highlight-item:last-child {
        border-right: none;
      }
      .highlight-num {
        font-size: 36px;
        font-weight: 600;
        color: var(--gold-light);
        line-height: 1;
        margin-bottom: 8px;
      }
      .highlight-lbl {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        letter-spacing: 0.5px;
      }
      section {
        padding: 25px 32px;
      }
      .section-label {
        font-size: 11px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 8px;
      }
      .section-title {
        font-size: 28px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .section-sub {
        font-size: 15px;
        color: var(--muted);
        margin-bottom: 40px;
        max-width: 600px;
      }
      .section-header-flex {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 16px;
      }
      .view-all {
        font-size: 13px;
        color: var(--teal);
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid currentColor;
      }

      /* Projects */
      .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .proj-card {
        background: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        cursor: pointer;
      }
      .proj-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 28px rgba(10, 34, 64, 0.14);
      }
      .proj-img {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        position: relative;
        overflow: hidden;
      }
      .proj-img.blue {
        background: linear-gradient(135deg, #e8f0fe, #c5d8f8);
      }
      .proj-img.green {
        background: linear-gradient(135deg, #e3f5ec, #b7e4c7);
      }
      .proj-img.amber {
        background: linear-gradient(135deg, #fff3cc, #fde68a);
      }
      .proj-img.teal {
        background: linear-gradient(135deg, #d0f0ee, #99e0da);
      }
      .proj-img.red {
        background: linear-gradient(135deg, #fee2e2, #fca5a5);
      }
      .proj-img.purple {
        background: linear-gradient(135deg, #ede9fe, #c4b5fd);
      }
      .proj-tag {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--navy);
        color: var(--white);
        font-size: 10px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 20px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }
      .proj-body {
        padding: 20px;
      }
      .proj-body h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .proj-body p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6;
      }
      .proj-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 16px;
        padding-top: 12px;
        border-top: 0.5px solid var(--border);
      }
      .proj-status {
        font-size: 11px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 20px;
      }
      .status-done {
        background: #dcfce7;
        color: #166534;
      }
      .status-progress {
        background: #fef9c3;
        color: #713f12;
      }
      .proj-icon {
        font-size: 18px;
      }

      /* News */
      .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .news-card {
        background: var(--white);
        border-radius: 10px;
        padding: 24px;
        box-shadow: var(--card-shadow);
        border-left: 4px solid #f9660a;
      }
      .news-date {
        font-size: 11px;
        font-weight: 600;
        color: var(--teal);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .news-card h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
        line-height: 1.4;
      }
      .news-card p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6;
      }
      .news-link {
        display: inline-block;
        margin-top: 14px;
        font-size: 13px;
        color: var(--teal);
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid currentColor;
      }

      /* Contact */
      
      .contact-info h3,
      .quick-links h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 16px;
      }
      .contact-row {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
        align-items: flex-start;
      }
      .contact-icon {
        width: 36px;
        height: 36px;
        background: #e8f0fe;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 16px;
      }
      .contact-detail strong {
        font-size: 13px;
        font-weight: 600;
        color: var(--navy);
        display: block;
      }
      .contact-detail span {
        font-size: 13px;
        color: var(--muted);
      }
      .quick-link-btn {
        display: block;
        background: var(--cream);
        border: 0.5px solid var(--border);
        border-radius: 8px;
        padding: 12px 16px;
        margin-bottom: 10px;
        text-decoration: none;
        color: var(--navy);
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
      }
      .quick-link-btn:hover {
        background: var(--navy);
        color: var(--white);
      }
      .quick-link-btn span {
        float: right;
        color: var(--teal);
      }
      .quick-link-btn:hover span {
        color: var(--gold-light);
      }

      /* Partners */
      .partners {
        background: var(--cream);
        padding: 40px 32px;
      }
      .partners-inner {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
      }
      .partners h3 {
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 28px;
      }
      .partner-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        align-items: center;
      }
      .partner-logo {
        background: var(--white);
        border: 0.5px solid var(--border);
        border-radius: 8px;
        padding: 10px 20px;
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
        letter-spacing: 0.5px;
      }

      /* Footer */
      footer {
        background: var(--navy);
        color: rgba(255, 255, 255, 0.75);
        padding: 48px 32px 24px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
      }
      .footer-brand p {
        font-size: 13px;
        line-height: 1.7;
        margin-top: 12px;
      }
      .footer-brand .brand-name {
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
      }
      .footer-brand .brand-sub {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .footer-col h4 {
        font-size: 12px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        margin-bottom: 10px;
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: var(--white);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.45);
        flex-wrap: wrap;
        gap: 8px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .social-links {
        display: flex;
        gap: 8px;
        margin-top: 16px;
      }
      .social-btn {
        width: 34px;
        height: 34px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        text-decoration: none;
        transition: background 0.2s;
      }
      .social-btn:hover {
        background: var(--gold);
      }
      @@media (max-width: 768px) {
        .topbar {
          flex-direction: column;
          gap: 6px;
          text-align: center;
          padding: 8px 16px;
        }
        header {
          flex-direction: column;
          gap: 16px;
          padding: 16px;
        }
        nav {
          justify-content: center;
        }
        .hero {
          padding: 40px 16px;
        }
        .hero h2 {
          font-size: 28px;
        }
        .hero-stats {
          gap: 24px;
        }
        section {
          padding: 40px 16px;
        }
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
        .highlights-inner {
          grid-template-columns: 1fr 1fr;
        }
        .highlight-item {
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
      }
      @@media (max-width: 480px) {
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .hero h2 {
          font-size: 24px;
        }
      }

     

      /* Left Label */
      .news-label {
        background: #e6530d;
        color: #fff;
        padding: 10px 20px;
        font-weight: bold;
        white-space: nowrap;
      }

      /* Right scrolling area */
      .news-marquee {
        flex: 1;
        background: linear-gradient(to right, #f9660a, #f9660a);
        color: #fff;
        overflow: hidden;
        position: relative;
      }

      /* Moving text */
      .news-track {
        display: inline-block;
        white-space: nowrap;
        padding-left: 100%;
        animation: scrollNews 18s linear infinite;
      }

      /* Animation */
      @@keyframes scrollNews {
        0% {
          transform: translateX(0%);
        }
        100% {
          transform: translateX(-100%);
        }
      }
      .news-marquee:hover .news-track {
        animation-play-state: paused;
      }
      .slider-container {
        position: relative;
        width: 100%;
        height: 450px;
        overflow: hidden;
        /* opacity: 0.5; */
      }

      /* Slides */
      .slides {
        display: flex;
        transition: transform 0.6s ease;
        height: 100%;
      }

      .slide {
        min-width: 100%;
      }

      .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* Arrows */
      .prev,
      .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.4);
        color: #fff;
        border: none;
        padding: 10px;
        cursor: pointer;
        font-size: 20px;
      }

      .prev {
        left: 10px;
      }
      .next {
        right: 10px;
      }

      /* Dots */
      .dots {
        position: absolute;
        bottom: 50px;
        width: 100%;
        text-align: center;
      }

      .dot {
        height: 10px;
        width: 10px;
        margin: 0 5px;
        background: #ccc;
        display: inline-block;
        border-radius: 50%;
        cursor: pointer;
      }

      .dot.active {
        background: #fff;
      }

      /* NEWS BAR */
      .news-bar {
            position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
      }

      .news-label {
        background: #e6530d;
        color: #fff;
        padding: 10px 15px;
        font-weight: bold;
      }

      .news-marquee {
        flex: 1;
        background: linear-gradient(to right, #f9660a, #ab1715);
        color: #fff;
        overflow: hidden;
      }

      .news-track {
        white-space: nowrap;
        display: inline-block;
        padding-left: 100%;
        animation: scroll 20s linear infinite;
        height: 41px;
        padding: 7px;
      }

      @@keyframes scroll {
        0% {
          transform: translateX(0%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      /* Mobile */
      @@media (max-width: 768px) {
        .slider-container {
          height: 250px;
        }
      }

      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      .banner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 20px 24px;
        background: #ffffff;
        /* border-bottom: 1px solid #e5e5e5; */
        overflow-x: auto;
        width: 100%;
      }

      .card {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        padding: 0 18px;
      }

      .avatar {
        width: 82px;
        height: 82px;
        border-radius: 50%;
        border: 2.5px solid #f9660a;
        padding: 4px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
        overflow: hidden;
      }

      .avatar img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        display: block;
      }

      .avatar .initials {
        font-size: 24px;
        font-weight: 500;
        color: #1a9e6e;
      }

      .info {
        min-width: 0;
      }

      .name {
        font-size: 14px;
        font-weight: 600;
        color: #111;
        white-space: nowrap;
      }

      .title {
        font-size: 11px;
        color: #1a9e6e;
        margin-top: 3px;
        white-space: normal;
        max-width: 160px;
        line-height: 1.4;
      }

      .divider {
        width: 1px;
        height: 60px;
        background: #ddd;
        flex-shrink: 0;
      }

     @@media (max-width: 700px) {
        .banner {
          justify-content: flex-start;
        }
        .card {
          padding: 0 12px;
        }
        .title {
          max-width: 120px;
        }
      }
      /* logo-marquee */
    .marquee-wrapper {
      width: 100%;
      overflow: hidden;
      background: #fff;
      border-bottom: 1px solid #e5e5e5;
      padding: 16px 0;
    }
    .marquee-wrapper:hover .marquee-track {
      animation-play-state: paused;
    }
    .marquee-track {
      display: flex;
      align-items: center;
      gap: 15px;
      width: max-content;
      animation: scroll-left 20s linear infinite;
    }
    @@keyframes scroll-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
   
      .logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #f9660a;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
    overflow: hidden;
}
    
    .logo-circle img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }  

     .news-section {
  background: #f8fafc;
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-label {
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
}

.view-all {
  text-decoration: none;
  color: #16a34a;
  font-weight: 600;
  transition: 0.3s;
}

.view-all:hover {
  color: #15803d;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.news-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.news-date {
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.news-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.news-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.news-link {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  transition: 0.3s;
}

.news-link:hover {
  color: #16a34a;
}

/* GRID UPDATE (3 column layout) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* QR SECTION */
.app-download {
  background: #f8fafc;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  width: 440px;
}

.app-download h3 {
  margin-bottom: 15px;
}

/* QR BOX */
.qr-box {
  background: white;
  padding: 12px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: -40%;
}

.qr-box img {
  width: 387px;
  height: 387px;
}

/* TEXT */
.app-download p {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}

/* STORE BUTTONS */
.store-buttons a {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #166534;
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.store-buttons a:hover {
  background: #14532d;
} 
   
   .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
}

/* Dropdown hidden by default */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}

.submenu li a {
  padding: 12px 15px;
  white-space: nowrap;
}

.submenu li a:hover {
  background: #f1f1f1;
}

/* Hover par dropdown show */
.dropdown:hover .submenu {
  display: block;
}   

.dropdown {
  position: relative;
}

.submenu {
  top: 100%;
  left: 0;
} 

 .logo-circle svg {
        width: 36px;
        height: 36px;
      }
      .logo-texts h1 {
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        letter-spacing: 0.5px;
      }
      .logo-texts p {
        font-size: 11px;
        color: var(--muted);
        letter-spacing: 1px;
        text-transform: uppercase;
      } 
.logo-areas {
        display: flex;
        align-items: center;
        gap: 18px;
      }
      .logo-circles {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      } 
	  
	  /* ==========================
   SHIMLA SMART CITY HEADER
========================== */

.sscl-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f3f3f3;
}

.sscl-logo-area {
    display: flex;
    align-items: center;
}

.sscl-logo-area img {
    width: 80px;
    height: auto;
    margin-right: 15px;
}

.sscl-logo-text h3 {
    margin: 0;
    color: #08254d;
    font-size: 22px;
    font-weight: 700;
}

.sscl-logo-text span {
    font-size: 12px;
    color: #666;
}

/* MENU */

.sscl-menu-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.sscl-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
	gap:7px;
	gap:7px;
}

.sscl-menu > li {
    position: relative;
    
}

.sscl-menu > li > a {
    text-decoration: none;
    color: #090909;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.sscl-menu > li:first-child > a {
    background: #ff6b00;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
}

/* DROPDOWN */

.sscl-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
    z-index: 9999;
}

.sscl-submenu li a {
    display: block;
    padding: 10px 15px;
    color: #139487 !important;
    text-decoration: none;
    font-size: 14px;
}

.sscl-submenu li a:hover {
    background: #f5f5f5;
}

.sscl-dropdown:hover .sscl-submenu {
    display: block;
}
	 
.topbar{
    background:#e36e25 !important;
    width:100%;
}

.sscl-topbar-wrap{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
    color:#fff;
    font-size:14px;
}

.sscl-topbar-left{
    display:flex;
    gap:30px;
    align-items:center;
}

.sscl-topbar-right{
    display:flex;
    gap:18px;
    align-items:center;
}

.sscl-topbar-right a{
    color:#fff;
    text-decoration:none;
}

.sscl-topbar-right a:hover{
    color:#f5f5f5;
}	 