/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}



/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  display: none;
  z-index: 9;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 10;
  transition: 0.3s;
  overflow: auto;
}



.tab {
  flex: 1;
  padding: 8px;
  border: 1px solid #000;
  margin-right: 5px;
  background: #fff;
  cursor: pointer;
}

.tab.active {
  background: #000;
  color: #fff;
}





/* ================= FOOTER ================= */
.site-footer {
  background: #0b5c8a;
  color: #fff;
  margin-top: 40px;
}

.footer-container {
  width: 95%;
  margin: auto;
}

.footer-top {
  padding: 30px 0;
}

.footer-top .footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 6px;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  background: #083f60;
  padding: 12px 0;
  font-size: 13px;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {
  .top-inner,
  .header-inner {
    flex-direction: column;
    text-align: center;
  }


  .hamburger {
    display: block;
  }
}

@media(max-width:768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .footer-top .footer-container {
    grid-template-columns: 1fr;
  }

  .bottom-flex {
    text-align: center;
    gap: 8px;
  }
}


/*new*/
  /* ================= TOP UTILITY BAR ================= */
.top-utility {
  background: #f4f6f8;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

.top-inner {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.top-left {
  font-weight: 500;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-right a {
  text-decoration: none;
  color: #000;
}

.font-controls span {
  border: 1px solid #aaa;
  padding: 2px 6px;
  cursor: pointer;
}

.top-right select {
  padding: 3px;
  font-size: 12px;
}

/* ================= HEADER ================= */
.header-inner {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  background: #fff;
  
}

.header-left {
  display: flex;
  gap: 15px;
  align-items: center;
}

.emblem {
  width: 60px;
}

.title-text h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.title-text p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.4;
}

.header-right img {
  height: 55px;
  margin-left: 10px;
}



/* DROPDOWN */
.nav-item .dropdown {
  position: absolute;
  top: 48px;
  left: 0;
  min-width: 280px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  display: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* SHOW DROPDOWN ON HOVER OR JS OPEN */
.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  display: block;
  opacity: 1;
}

/* DROPDOWN LINKS */
.nav-item .dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #000 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #eee;
}

.nav-item .dropdown a:hover {
  background-color: #f0f0f0;
}
 /* ================= NAVIGATION BAR ================= */
.main-nav {
  background: #0a77b7;
  width: 100%;
  margin: auto;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;   /* thoda compact */
}

/* Navigation Links */
.main-nav a {
  color: #fff;
  font-size: 16px;      /* size decreased */
  font-weight: 400;     /* not bold */
  text-decoration: none;
  padding: 8px 12px;    /* compact button spacing */
  transition: 0.3s ease;
}

/* Hover Effect */
.main-nav a:hover {
  color: #ffdede;
}

/* Nav Item */
.nav-item {
  position: relative;
  cursor: pointer;
  
}



/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
  padding:10px 14px;
  color:#fff;
}

/* ================= SIDE MENU ================= */
.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  display:none;
  z-index:998;
}

.side-menu{
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;          /* full height */
  background: #fff;
  transition: 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column; /* important */
}

.side-menu.active {
  left: 0;   /* 👈 left se slide hoga */
}


/* HEADER inside side menu */
.side-header{
  flex-shrink: 0;        /* important */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #0b77b7;
}


.side-header .tab{
  background:none;
  border:none;
  color:#fff;
  font-size:14px;
  padding:8px 10px;
  cursor:pointer;
}

.side-header .tab.active{
  border-bottom:2px solid #fff;
}

.close-btn{
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  margin-left: auto;
}

/* SIDE CONTENT */
.side-content{
  display:none;
  padding:10px;
  flex: 1;  
  overflow-y: auto;
}

.side-content.active{
  display:block;
}

.side-content a{
  display:block;
  padding:10px;
  border-bottom:1px solid #eee;
  color:#333;
  text-decoration:none;
}
.dropdown {
  position: relative;
}

.sub-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
}

.sub-dropdown a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.sub-dropdown a:hover {
  background: #f1f1f1;
}

.dropdown-toggle {
  cursor: pointer;
}

/* ================= GOOGLE TRANSLATE HIDE ================= */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate{
  display:none !important;
}

.goog-tooltip,
.goog-text-highlight{
  display:none !important;
}

body{
  top:0px !important;
}

.accessibility{
  position: relative;
  display: inline-block;
  margin-left: 8px;
}

.accessibility-btn{
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.accessibility-menu{
  display: none;
  position: absolute;
  top: 28px;
  right: 0;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  z-index: 9999;
}

.accessibility-menu button{
  display: block;
  width: 45px;
  padding: 6px 0;
  background: #000;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.accessibility-menu button:hover{
  background: #ffc107;
  color: #000;
}





/* ================= DESKTOP ================= */
@media(min-width:769px){

  .hamburger{
    display:block;
  }

  /* Sirf MENU tab hide hoga */
  .side-header .tab:first-child{
    display:none;
  }

}


/* ================= MOBILE ================= */
@media(max-width:768px){
  .hamburger{
    display:block;
  }
  .side-header{
    display:flex;
  }
}

html, body{
  margin:0;
  padding:0;
  height:100%;
}

body{
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

.main-content{
  flex:1;
}