 /* top nav start */

/* Section */




a{
  text-decoration: none;
}

/* top header */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001f3f;
  padding: 6px 15px;
  font-family: Arial, sans-serif;
  color: white;
  font-size: 14px;
  user-select: none;
  flex-wrap: wrap; /* important for mobile */
}

.top-bar-left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-btn {
  background-color: #0073e6;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 5px 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.india-flag {
  background-color: #2a5d9f;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-link {
  color: white;
  text-decoration: none;
}

.top-link:hover {
  text-decoration: underline;
}

.social-icon {
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.social-icon:hover {
  color: #69a1ff;
}

.language-select {
  background-color: #004080;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 4px 8px;
  font-size: 14px;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: space-between;
  }

  .top-bar-right {
    flex-wrap: wrap;
    gap: 8px;
  }

  .social-icon {
    font-size: 16px;
  }

  .tag-btn {
    padding: 4px 8px;
    font-size: 12px;
  }

  .language-select {
    font-size: 12px;
    padding: 3px 6px;
  }
}

/* ✅ EXTRA SMALL DEVICES */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* Optional: remove arrow for consistent look */
/* .language-select::-ms-expand { display: none; } */
/* .language-select::-webkit-inner-spin-button, .language-select::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; } */



.info-section {
  /* padding: 60px 20px; */
  background: #f4f7fb;
  
}
/* Images */
.side-img {
  width: 230px;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  /* background: white; */
  padding: 10px;
  transition: 0.3s;
}

.side-imgg {
  width: 130px;
  max-height: 130px;
  object-fit: contain;
  border-radius: 12px;
  padding: 10px;
  transition: 0.3s;

  display: block;
  margin: 0 auto;   /* ✅ centers horizontally */
}   

/* Content */
.content-box {
  padding: 20px;
}

.content-box h5 {
  font-size: 25px;
  font-weight: 700;
  color: #0800ff;
  line-height: 1;
}

.content-box h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  
}

.content-box p {
  font-size: 15px;
  color: #555;
}

/* Button */
.btn-main {
  padding: 10px 20px;
  border: none;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
  border-radius: 25px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* Stack layout */
  .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Order change (IMPORTANT) */
  .col-md-3:first-child {
    order: 1;
  }

  .col-md-6 {
    order: 2;
  }

  .col-md-3:last-child {
    order: 3;
  }

  /* Center everything */
  .content-box {
    text-align: center;
    /* padding: 15px; */
  }

  /* Smaller images */
  .side-img {
    max-height: 70px;
    /* margin-bottom: 15px; */
  }

    .side-imgg {
    max-height: 70px;
    margin-bottom: 15px;
  }

  /* Better spacing */
  .content-box h5 {
    font-size: 14px;
  }

  .content-box h6 {
    font-size: 12px;
  }
}

/* Navbar */
//* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: center; /* ✅ center menu */
  align-items: center;
  padding: 15px 30px;
  background: #003E6F;
}

/* ================= LINKS ================= */
.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  font-weight: 600;
}

/* ✅ Active + Hover */
.nav-links a:hover,
.nav-links a.active {
  color: #ff0000;
  
}

/* Navbar always on top */
.navbar {
  position: relative;
  z-index: 9999;
}

/* Submenu above everything */
.submenu {
  z-index: 9999;
}

/* Fix Bootstrap carousel */
.carousel {
  position: relative;
  z-index: 1;
}

/* ================= DROPDOWN ================= */
.dropdown .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a1f44;
  list-style: none;
  min-width: 160px;
}

.submenu li a {
  display: block;
  padding: 10px;
  color: white;
   
}

.submenu li a:hover {
  color: rgb(155, 0, 0);
}

/* Show on hover (desktop) */
.dropdown:hover .submenu {
  display: block;
}

/* ================= MENU BUTTON ================= */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= CLOSE BUTTON ================= */
.close-btn {
  display: none;
  font-size: 22px;
  margin-bottom: 15px;
  cursor: pointer;
  text-align: right;
}

/* ================= OVERLAY ================= */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  display: none;
  z-index: 999;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #0a1f44;
    flex-direction: column;
    padding: 30px 20px;
    gap: 10px;
    transition: 0.4s;
    z-index: 1001;
  }

  .nav-links.active {
    top: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px;
    font-size: 18px;
  }

  /* Dropdown mobile */
  .submenu {
    position: static;
    display: none;
    background: none;
    padding-left: 15px;
  }

  .submenu.active {
    display: block;
  }

  /* Show buttons */
  .menu-toggle {
    display: block;
  }

  .close-btn {
    display: block;
  }

  .overlay.active {
    display: block;
  }
}
/* Finished Navbar */


/* notice left-right*/
/* ================= NOTICE BOX ================= */
/* ================= NOTICE ================= */
.notice {
  width: 100%;
  background: #fcff38;
  color: rgb(6, 0, 121);
  overflow: hidden;
}

/* Title */
.notice-title {
  background: #002b4f;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: white;
  
}

/* Area */
.notice-area {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* ✅ prevent overflow */
  padding: 0 10px;
}

/* Text */
.notice-text {
  display: inline-block;
  max-width: 100%;        /* ✅ limit width */
  text-align: center;
  animation: moveSafe 6s ease-in-out infinite alternate;
}

.notice-text .register-btn{
    font-weight: bold;
    text-decoration: none;
     font-style: italic;
    animation: blinkColor 0.3s infinite;
    
}

/* Blinking animation */
@keyframes blinkColor {
    0%   { color: red; }
    50%  { color: blue; }
    100% { color: red; }
}

/* Items */
.notice-text span {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  font-size: 14px;
  flex-wrap: wrap;        /* ✅ wrap if needed */
}

/* Icon */
.notice-text img {
  width: 35px;
  margin-right: 5px;
}



/* ✅ SAFE SMALL MOVEMENT */
@keyframes moveSafe {
  0% { transform: translateX(-5%); }
  100% { transform: translateX(5%); }
}

/* Pause on hover */
.notice-area:hover .notice-text {
  animation-play-state: paused;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .notice-text {
    font-size: 13px;
  }

  .notice-area {
    height: auto;   /* allow wrapping */
    padding: 10px;
  }
}

/* about us */



/* .about-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-box h4 {
  color: #003E6F;
  margin-bottom: 15px;
  font-weight: bold;

}

.about-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
     text-align: justify;
}


.read-more-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #0056b3;
} */
/* latest announcement start */


/* Card Style */
.custom-card {
  padding: 3px;
  border-radius: 5px;
  text-align: center;
  color: white;
 animation: smoothBlink 0.8s ease-in-out infinite;
}

@keyframes smoothBlink {
  0%   { background: #003E6F; }   /* dark blue */
  50%  { background: #f05454; }   /* soft red */
  100% { background: #003E6F; }
}

/* Hover effect */
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Title */
.custom-card h5 {
  margin-bottom: 0px;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

/* Text */
.custom-card p {
  color: rgb(251, 255, 0);
  font-size: 15px;
  font-weight: 700;
}

/* Sidebar Menu Box */
.sideemenu .info-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Title */
.sideemenu h5 {
    background: #0a4da3;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
}

/* List */
.sideemenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* sidemenu near notice */

/* List Items */

.sideemenu ul li {
    /* padding: 5px 12px; */
    margin-bottom: 8px;
    background: #f4f7fb;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    font-weight: 600;
}
/* REMOVE restriction from side menu */
.sideemenu ul {
  max-height: 450px;
  overflow-y: auto;
}

/* Arrow icon */
.sideemenu ul li::before {
    content: "➤";
    color: #0a4da3;
    margin-right: 8px;
}

/* Hover effect */
.sideemenu ul li:hover {
    background: #0a4da3;
    color: #000000;
    transform: translateX(5px);
}

/* Hover arrow color */
.sideemenu ul li:hover::before {
    color: #000000;
}



/* notice and tender strt */

/* Common box */
.info-box {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
height: auto;
}

/* Box hover effect */
.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Titles */
.info-box h5 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid transparent;
}

/* Different header styles */
.notice-box h5 {
  color: #ffffff;
  background: red;
  border-radius: 7px;
  padding: 10px 10px;
  border-image: linear-gradient(to right, #e1ff01, #fbff00);
  border-image-slice: 1;
  border-bottom-width: 3px;
}

.notice-box ul li{
  color: #000315;
  font-size: 15px;
  font-weight: 600;
}

.tender-box  ul li{
   color: #000315;
  font-size: 15px;
  font-weight: 600;
}
.tender-box h5 {
  color: #ffffff;
  border-image: linear-gradient(to right, #eeff00, #e5ff00);
  border-image-slice: 1;
  border-bottom-width: 3px;
  background: red;
  padding: 10px 10px;
  border-radius: 7px;
}

.other-box h5 {
  color: #ffffff;
  
  border-image: linear-gradient(to right, #2a9d8f, #48cae4);
  border-image-slice: 1;
  border-bottom-width: 3px;
  background: rgb(0, 26, 96);
}

/* List styling */
.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #0d1b2a;
  font-size: 14px;

}


/* Apply scroll ONLY to Notice & Tender */
.notice-box ul,
.tender-box ul {
  max-height: 220px;
  overflow-y: auto;
}



/* Scrollbar for long lists */
.info-box ul::-webkit-scrollbar {
  width: 6px;
}

.info-box ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.info-box ul::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.info-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.info-box ul li:hover {
  background: #f9f9f9;
  border-radius: 5px;
}

/* Add emoji icons before list items */
.notice-box ul li::before {
  content: "📝";
}

.tender-box ul li::before {
  content: "📄";
}
/* 
.other-box ul li::before {
  content: "💡";
} */


/* you tube video */

.video-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-box h5 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #d62828; /* Can match your tender color theme */
  text-align: center;
}

.video-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Responsive video wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-box h5 {
  background: linear-gradient(135deg, #75b8ff 0%, #2e3192 100%);
  border-radius: 5px;
  color: #fff;
  margin: 0;
  padding: 3px 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* end you tube video */




/* side socil icon */

.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0; /* change to right:0; for right side */
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 9999;
}

.social-sidebar a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  margin: 5px 0;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  transition: 0.3s;
}

/* Colors */
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0077b5; }
.yt-icon{background: red;}
.wpt{background: #25D366 ;}

/* Hover effect */
.social-sidebar a:hover {
  padding-left: 25px;
}

/* side social icon end */





/* footer side menu location beside*/

.sidebar-menu {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.sidebar-menu h5 {
  margin-bottom: 10px;
  border-bottom: 2px solid #ff0000;
  padding-bottom: 5px;

}

.sidebar-menu ul {
  list-style: none;
  padding: 0;
}

.sidebar-menu ul li {
  margin: 8px 0;
}

.sidebar-menu ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 6px;
  border-radius: 5px;
  transition: 0.3s;
}

.sidebar-menu ul li a:hover {
  background: #007bff;
  color: #fff;
}



/* footer side menu location beside*/

/* footer carousal */

/* Reduce height */
.owl-carousel .item {
  height: 120px;
  /* background: #fff; */
  padding: 8px;
  border-radius: 10px;
  /* box-shadow: 0 3px 6px rgba(0,0,0,0.2); */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image fit */
.owl-carousel .item img {
  max-height: 90px;
  width: 100%;
  object-fit: contain;
}

/*carousal dots */
.owl-nav button {
    background: #001f3f;    /* navy background */
    color: #fff;            /* white arrow */
    padding: 10px 15px;
    border-radius: 50%;
    border: none;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 20px;
    z-index: 1000;
    opacity: 1;             /* make sure visible */
}

.owl-nav button:hover {
    background: #0a4da3;    /* hover color */
}

.owl-nav .owl-prev {
    left: -25px;            /* adjust position */
}

.owl-nav .owl-next {
    right: -25px;           /* adjust position */
}

.owl-nav button span {
    display: none;          /* hide default text if using navText */
}


/* footer carousal end */



/* map */


  .map {
    margin-bottom: 20px;
  }

  .map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .address-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 25px;
    font-family: 'Segoe UI', sans-serif;
    border-right: 4px solid navy;
    border-bottom: 4px solid navy;
    height: 100%;
  }

  .address-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
  }

  .address-text {
    line-height: 1.7;
    color: #333;
  }

  /* Mobile spacing */
  @media (max-width: 768px) {
    .address-card {
      margin-top: 15px;
    }
  }













/* address */

.address-card {
  /* background: #c4c4c4; */
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease;

  border-right: 4px solid #007bff;
  border-bottom: 4px solid #007bff;
}
  

  .address-card:hover {
    transform: translateY(-5px);
  }

  .address-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }

  .address-title i {
    margin-right: 10px;
    color: #000000;
  }

  .address-text {
    font-size: 15px;
    color: #007bff;
    line-height: 1.8;
    font-weight: 600;
  }

  .address-text strong {
    color: #007bff;
  }


/* footer */
/* Footer */
.footer {
  background: #003E6F;
  color: white;
  padding: 40px 0 20px;
}

/* Headings */
.footer h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
  text-align: left;
  padding-left: 0;
  /* text-decoration: underline 3px ; */
}

/* Lists */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

/* Links */
.footer a {
  color: #cce6ff;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #c3cbcd;
}

/* Contact text */
/* .footer p {
  font-size: 14px;
  line-height: 1.6;
} */

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  
}

/* .webmail {
  background-color: #001f3f; 
  color: #FFD700;            
  padding: 12px 20px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  border-radius: 6px;        
  display: inline-block;    
} */