/* ==========================
   Root Variables
========================== */
:root {
  /* Primary Palette */
  --color-primary: #1f2dac;
  --color-primary-light: #1D0F9F;
  --color-secondary: #0056d2;
  --color-accent: #FFCB00;

  /* Neutral Palette */
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-dark: #0c1b3a;
  --color-darker: #0a1530;
  --color-text: #555;
  --color-muted: #aaa;
  --color-border: #E5E7EB;
  --color-bg: #f5f8ff;

  /* Special Colors */
  --color-gradient-start: #092E72;
  --color-gradient-end: #0044A9;
  --color-hover-gradient-start: #BB8106;
  --color-hover-gradient-end: #FFCB00;

  --color-weather-weather-toggle: #f9d71c;
  --color-weather-sky: #87ceeb;

  --color-hover-bg: #1D7BD8;
  --color-card-shadow: rgba(0, 0, 0, 0.08);
  --color-card-shadow-hover: rgba(0, 0, 0, 0.15);
}

/* ==========================
   Dark Theme Overrides
========================== */
.dark-theme {
  --color-primary: #9ba8ff;
  --color-primary-light: #7a8aff;
  --color-secondary: #5da9ff;
  --color-accent: #ffd85a;

  /* --color-white: #121212; */
  --color-light: #1e1e1e;
  --color-dark: #b8b4b4;
  --color-darker: #000;
  --color-text: #ddd;
  --color-muted: #888;
  --color-border: #333;
  --color-bg: #181818;

  --color-hover-bg: rgba(155, 120, 255, 0.4);
  --color-card-shadow: rgba(255, 255, 255, 0.05);
  --color-card-shadow-hover: rgba(255, 255, 255, 0.1);
}

/* ==========================
   Base Styles
========================== */

html {
  font-size: 100%;
  /* 16px base */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: var(--color-bg);
}

/* Top black bar */
.top-bar {
  background: black;
  font-size: 0.8rem;
  padding: 5px 0;
}

/*brand name*/
.brand {
  gap: 10px;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: var(--color-white);
}

.brand-name span {
  font-size: 14px;
  font-weight: 500;
}

.card-img-top {
  height: 250px !important;
}

/* Navbar menu items */
.navbar-nav .nav-link {
  color: var(--color-white) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar {
  background-color: transparent !important;
  background: transparent !important;
  z-index: 999;
}

.navbar.fixed-top {
  background-color: #223044 !important;
}

.hero {
  margin-top: -5rem;
}

body.dark-theme .search-section {
  color: #fff;
}

body.dark-theme .navbar-light a.nav-link {
  color: #fff;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  color: var(--color-white) !important;
  background: var(--color-hover-bg);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 6px 12px;
}




/* Mega Menu */
.mega-dropdown:hover .mega-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu[data-bs-popper] {
  margin-top: 0;
}

.cust-container {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.region-page-title {
  margin-top: 40px;
}

.switch {
  position: relative;
  overflow: hidden;
  width: 100px;
  height: 40px;
}

.switch-wh {
  position: relative;
  overflow: hidden;
  width: 100px;
  height: 40px;
}

.switch input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}

.switch label {
  cursor: pointer;
}

.background {
  z-index: 1;
  position: absolute;
  width: 100px;
  height: 40px;
  left: 0;
  top: 0;
  border-radius: 2.5rem;
  border: 0.25rem solid #3b3838;
  background: linear-gradient(to right, #484848 0%, #202020 100%);
  transition: all 0.3s;
}

.stars1,
.stars2 {
  position: absolute;
  height: 0.4rem;
  width: 0.4rem;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s all ease;
}

.stars1 {
  top: 6px;
  right: 23px;
}

.stars2 {
  top: 40px;
  right: 48px;
}

.stars1:after,
.stars1:before,
.stars2:after,
.stars2:before {
  position: absolute;
  content: "";
  display: block;
  height: 0.25rem;
  width: 0.25rem;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.2s all ease;
}

.stars1:after {
  top: 8px;
  right: 20px;
}

.stars1:before {
  top: 18px;
  right: -12px;
}

.stars2:after {
  top: -8px;
  right: -16px;
}

.stars2:before {
  top: 6px;
  right: -26px;
}

.sun-moon {
  z-index: 2;
  position: absolute;
  left: -8px;
  top: -8px;
  display: inline-block;
  height: 40px;
  width: 40px;
  margin: 0.5rem;
  background: #FFFDF2;
  border-radius: 50%;
  transition: all 0.5s ease;

  /* Default to Moon */
  border: 0.25rem solid #DEE2C6;
}

.sun-moon .dots {
  position: absolute;
  top: 3px;
  left: 23px;
  height: 1rem;
  width: 1rem;
  background: #EFEEDB;
  border: 0.25rem solid #DEE2C6;
  border-radius: 50%;
  transition: 0.4s all ease;
}

.sun-moon .dots:after,
.sun-moon .dots:before {
  position: absolute;
  content: "";
  display: block;
  height: 0.25rem;
  width: 0.25rem;
  background: #EFEEDB;
  border: 0.25rem solid #DEE2C6;
  border-radius: 50%;
  transition: 0.4s all ease;
}

.sun-moon .dots:after {
  top: -4px;
  left: -26px;
}

.sun-moon .dots:before {
  top: 18px;
  left: -10px;
}

/* Corporate profile */
.corporate-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.image-box {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.circle-frame {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: conic-gradient(#0066cc 0deg 180deg, #ffcc00 180deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.text-box {
  flex: 2 1 500px;
}

.text-box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-box p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
  font-size: 15px;
}

/*Corporate profile end */

/*Organization Structure start */

/* Tabs styling */
    .nav-pills .nav-link {
      border-radius: 50px;
      color: #475569;
      border: 1px solid #cbd5e1;
      margin-right: 10px;
      padding: 8px 22px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .nav-pills .nav-link.active {
      background: linear-gradient(90deg, #4f46e5, #60a5fa);
      color: white !important;
      border: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Cards grid */
    .committee-cards {
      margin-top: 25px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      padding: 20px;
      transition: transform 0.2s;
    }

    .card:hover {
      transform: translateY(-4px);
    }

    .badge-role {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .badge-role.chairman {
      background: #a7f3d0;
      color: #065f46;
    }

    .badge-role.member {
      background: #dbeafe;
      color: #1e40af;
    }

    .card h5 {
      font-size: 15px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 14px;
      color: #475569;
      margin: 5px 0;
    }

    .contact {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
    }

    .contact p {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0;
    }

/*Organization Structure end */
/*Success Story */

.story-icon {
            width: 40px;
        }

        .story-container {
            border-radius: 8px;
            background: #FFF;
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
            padding: 28px 22px;
        }

        .story-label {
            border-radius: 33px;
            background: #BDF3FF;
            padding: 6px 15px;
            width: fit-content;
            max-width: 100%;
            color: #000;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
        }

        .story-label-warning {
            background: #FFE99D;
        }

        .story-label-info {
            background: #D0DCFF;
        }

/*Success Story end */

/* Transition to Sun */

.switch input:checked~.sun-moon {
  left: calc(100% - 52px);
  background: #F5EC59;
  border-color: #E7C65C;
  transform: rotate(-25deg);
}

.switch input:checked~.sun-moon .dots,
.switch input:checked~.sun-moon .dots:after,
.switch input:checked~.sun-moon .dots:before {
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.switch input:checked~.sun-moon .dots {
  height: 1.5rem;
  width: 1.5rem;
  top: 0px;
  left: -20px;
  transform: rotate(25deg);
}

.switch input:checked~.sun-moon .dots:after {
  height: 0.65rem;
  width: 0.65rem;
  top: 2px;
  left: -12px;
}

.switch input:checked~.sun-moon .dots:before {
  height: 0.4rem;
  width: 0.4rem;
  top: 6px;
  left: 14px;
}

.switch input:checked~.background .stars1,
.switch input:checked~.background .stars2 {
  opacity: 0;
  transform: translateY(2rem);
}

.switch input:checked~.background {
  border: 0.25rem solid #78C1D5;
  background: linear-gradient(to right, #78C1D5 0%, #BBE7F5 100%);
}

.mega-menu {
  display: none;
  width: 100vw !important;
  left: 0;
  top: 100%;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.dropdown-item {
  background: var(--color-white);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-weight: 500;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: #f0f0ff;
}

/* Weather toggle */
.weather-toggle {
  background: linear-gradient(to right, var(--color-weather-weather-toggle), var(--color-weather-sky));
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.weather-toggle.active {
  transform: rotate(180deg);
  color: var(--color-accent);
  background: linear-gradient(to right, var(--color-darker), var(--color-weather-sky));
}

.hero-carousel .item {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center;
}

.hero-carousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  text-align: center;
  padding-left: 10%;
}

.text-wrapper {
  max-width: 40%;
  text-align: start;
}

.hero-carousel h1 {
  font-size: 3rem;
  font-weight: bold;
}

.video-home-slide {
  width: 100%;
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  border: 0 solid var(--color-border);
  background: url("../images/footer_background.png") 50% / cover no-repeat;
  background-blend-mode: overlay;
  position: relative;
}

.footer h6 {
  font-size: 1rem;
  color: var(--color-white);
}

.footer p,
.footer a {
  font-size: 0.8rem;
  color: #dcdcdc;
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Footer Social */
.footer .social {
  color: var(--color-white);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer .social:hover {
  color: var(--color-accent);
}

/* Visitor Box */
.visitor-box {
  background-color: #1e2b4d;
  border-radius: 6px;
  color: var(--color-white);
}

/* Bottom Bar */
.footer-bottom {
  background: var(--color-darker);
  color: var(--color-muted);
  font-size: 0.7rem;
}

/* ==========================
   Sections
========================== */

/* Products */
.video-section {
  position: relative;
  min-height: 400px;
  height: 60vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.5); */
  z-index: 0;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 40, 0.7);
}

.owl-dots {
  position: absolute;
  left: 10%;
  bottom: 50px;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: #F9F9F9;
  width: 25px;
  height: 25px;
  border-radius: 4px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot span:hover {
  background-color: #FFCB00;
}

.products-section .container {
  position: relative;
  z-index: 2;
}

.tender-container {
  border: 0 solid #E5E7EB;
  background-color: #E5E7EB;
  backdrop-filter: blur(9px);
}

.product-card {
  background: var(--color-light);
  color: var(--color-dark);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px var(--color-card-shadow-hover);
}

.product-card .icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
}

.learn-link {
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: none;
}

.learn-link:hover {
  text-decoration: underline;
}

/* Awards */
.awards-section {
  text-align: center;
  padding: 30px 20px;
  background: url('../images/awardsbg.png') no-repeat center center/cover;
  background-size: cover;
}

.award-carousel .owl-dots {
  left: 0;
  bottom: -50px;
}

.awards-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.awards-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.award-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 10px 20px;
  width: 350px;
  height: 100%;
  box-shadow: 0px 5px 15px var(--color-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 20px var(--color-card-shadow-hover);
}

.award-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.award-card p {
  font-size: 0.8rem;
  color: var(--color-text);
}

#awardsCarousel .carousel-indicators {
  display: flex;
  gap: 10px;
  text-align: start;
  justify-content: flex-start;
  text-align: start;
  bottom: -70px;
  left: -100px;
}

#awardsCarousel .carousel-indicators button {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(29, 123, 216, 0.30);
}

#awardsCarousel .carousel-indicators button.active {
  background: #FFCB00;
}

/*Awards page*/
.custom-tabs {
            border-radius: 35px;
            background: #FFF;
            box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.25);
            display: inline-flex;
            padding: 5px;
            align-items: center;
            gap: 4px;
        }

        .custom-tabs .nav-link {
            display: flex;
            padding: 10px 23px;
            justify-content: center;
            align-items: center;
            gap: 18px;
            border-radius: 28px;
            color: #8F8F8F;
        }

        .custom-tabs .nav-link.active {
            background: #1B4766;
            color: #fff;
        }

        .awd-card {
            border-radius: 26px;
            background: #FFF;
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
        }

        .awd-card img {
            height: 250px;
            border-radius: 1rem 1rem 0px 0px;
        }

        .awd-card .card-badge {
            border-radius: 33px;
            background: #BDF3FF;
            padding: 6px 15px;
            width: fit-content;
            max-width: 100%;
        }

        .awd-card .card-text {
            color: #000;
            font-size: 14px;
        }

        .awd-card .card-body {
            background-color: #fff;
        }



/*Award page end*/



/* Menu Cards */
.menu-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 70px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-card i {
  font-size: 1.2rem;
}

.menu-card:hover {
  background: linear-gradient(90deg, var(--color-hover-gradient-start) 0%, var(--color-hover-gradient-end) 100%);
  transform: translateY(-4px);
}

/* Category Page  */
.video-banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  margin-top: -5rem;
}

.instagram-media,
#twitter-widget-0 {
  height: 260px !important;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #000;
}

.video-banner video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  background: linear-gradient(to right, rgba(7, 73, 172, 0.9), rgba(204, 177, 0, 0.9));
  display: flex;
  justify-content: start;
  align-items: center;
  color: white;
  text-align: start;
}

.video-banner .overlay h1 {
  font-size: 3rem;
  font-weight: bold;
}

.video-banner .overlay p {
  font-size: 1.2rem;
}

.breadcrumb {
  display: flex;
  font-size: 1.2rem;
  color: white;
  margin-top: 20px;
}

.breadcrumb .breadcrumb-item a {
  color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #ffc107;
}

.category-card .card-text {
  color: #4B5563;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.category-card .card-title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}

.category-card {
  border-radius: 12px;
  border: 0 solid #E5E7EB;
  background: #FFF;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
  height: 100%;
}

.detail-section1 {
  background-color: #FFFAFA;
}

.tab-container {
  max-width: 100%;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.nav-pills .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-weight: 500;
  color: #333;
  border-radius: 0;
  padding: 15px 20px;
  transition: 0.3s;
  border: 1px solid #E4E4E4;
  background: #F3F8FF;
}

.nav-pills .nav-link.active {
  border: 1px solid #E4E4E4;
  background: #FFF;
  color: #000;
}

.sidebar-nav .nav-pills .nav-link.active {
  color: #fff;
}

.nav-pills .nav-link:hover {
  border: 1px solid #E4E4E4;
  background: #FFF;
  color: #000;
}

.tab-content {
  padding: 25px 30px;
  font-size: 15px;
  line-height: 1.6;
}

.tab-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.tab-content ul li {
  margin-bottom: 8px;
}

/* Tenders*/
:root {
  --card-bg: #ffffff;
  /* card background */
  --muted: #6b7686;
  /* muted text color */
  --navy-1: #0b4b78;
  /* deep blue from header/side */
  --navy-2: #0a6db1;
  /* secondary blue */
  --accent: #ffc107;
  --footer-1: #0f233b;
  --footer-2: #081426;
  --max-width: 1366px;
  --sidebar-w: 270px;
  /* sidebar width tuned for screenshot */
  --card-radius: 14px;
  /* card radius matching screenshot */
  --card-shadow: 0 12px 30px rgba(10, 30, 60, 0.06)
}

.sidebar-nav .nav-pills .nav-link.active,
.sidebar-nav .nav-pills .show>.nav-link {
  background-color: #053687;
  font-size: .9rem;
}

.sidebar-nav .nav-pills .nav-link {
  border-radius: 0rem;
}

.sidebar-nav .nav-link {
  font-size: .9rem;
  color: #000;
  padding: .9rem;
}

.sidebar-nav .nav-pills .nav-link {
  border: 1px solid #ccc;
  margin-bottom: 1rem;
  text-align: left;
}

.sidebar-nav .nav {
  width: 100%;
}

/* Table CSS */

.tender-table-container {
  background: #fff;
  border-radius: 12px;
  /* padding: 20px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 20px;
}

.table thead {
  background: #082F74;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.table thead th {
  vertical-align: middle;
  text-align: center;
  /* font-weight: 600; */
}

.table tbody td {
  vertical-align: middle;
  text-align: center;
  background: #fff;
}

.table tbody tr:nth-child(even) td {
  background: #f8faff;
}

.table tbody tr:hover {
  background: #e9f2ff;
  transition: 0.3s ease-in-out;
}

.notice-link {
  color: #0d6efd;
  text-decoration: none;
  white-space: nowrap;
  /* font-weight: 500; */
}

.notice-link:hover {
  text-decoration: underline;
}

.subject-text {
  text-align: left;
}

.tender-table-container .table td,
.tender-table-container .table th {
  padding: 14px;
  text-align: start;
  font-size: 14px;
}

.navbar-light .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-light .navbar-toggler {
  border-color: #fff;
}

@media (max-width: 768px) {
  .tender-table-container {
    padding: 10px;
  }
  .video-section {
    height: auto;
  }

  .carousel-item .row {
    gap: 8px !important;
  }

  .footer p {
    padding: 0 !important;
  }

  .hero {
    margin-top: 0;
  }

}

/* Tenders end*/
/* ==========================
   Media Queries
========================== */
@media (max-width: 992px) {
  .mega-menu {
    position: static !important;
    box-shadow: none !important;
    padding: 1rem !important;
    margin-top: 2px !important;
  }
   #block-cdot-main-menu {
    position: absolute;
    top: 70px;
    background: #223044;
    left: 0;
    width: 100%;
    text-align: right;
    padding-right: 30px;
  }
   .hero-carousel .item {
    height: 50vh;
  }
  .dropdown-item{
    white-space: normal;
  }

  .video-home-slide {
    object-fit: cover;
    height: 100%;
  }
  .navbar {
    background-color: #223044 !important;
  }

  .mega-menu .row>div {
    text-align: left;
  }

  .mega-menu img {
    display: none;
  }

  .text-wrapper {
    max-width: 80%;
  }

  .text-wrapper h1 {
    font-size: 2rem;
    ;
  }
}