@charset "utf-8";
/* Normal CSS */
body {
  color: #000;
  font-family: Arial, sans-serif;
  line-height: 1.42857143;
  font-size: 18px;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
html, body {
  overflow-x: hidden;
}
*, *:focus {
  outline: none;
}
a {
  color: #9b242d;
  transition: all ease .4s;
  text-decoration: underline;
}
a:focus {
  outline: none;
  outline-offset: 0;
}
a:hover, a:focus {
  color: #0e55a4;
  text-decoration: none;
}
img {
  max-width: 100%;
}
iframe {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  border: none;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 600;
  line-height: 1.3;
}
p {
  /*color: #000;
 /* font-weight: 300;*/
  /*font-size: 16px;*/
  /*line-height: 26px;*/
}
p strong {
  font-weight: 500;
  color: #000000;
  font-weight: bold;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
video {
  display: block;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
}
audio, canvas, progress, video {
  vertical-align: middle;
}
figure {
  margin: 0;
}
::selection {
  background: #a5101d;
  color: #ffffff;
}
::-webkit-selection {
  background: #0E55A4;
  color: #ffffff;
}
::-moz-selection {
  background: #0E55A4;
  color: #ffffff;
}
::-o-selection {
  background: #0E55A4;
  color: #ffffff;
}
::-ms-selection {
  background: #0E55A4;
  color: #ffffff;
}
/* Reseted CSS */

/* Buttons CSS */
.btn {
  padding: 6px 35px 10px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 50px;
  transition: all ease .4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.btn-border {
  border: 1px solid #0E55A4;
  color: #0E55A4;
}
.btn-border:hover, .btn-border:focus {
  background: #0E55A4;
  color: #fff;
}
.error404 section.page-banner{
    display: none;
}
.btn-blue {
    color: #fff;
    background: linear-gradient(to right, #0e55a4, #3c8ad9);
    background-size: 200% 200%;
    animation: gradientAnimation 2s ease-in-out infinite;
    border-radius: 5px;
    padding: 5px 15px;
    font-weight: 600;
}
.btn-blue:hover, .btn-blue:focus {
  background: #EE343F;
  color: #fff;
}
.main.page-not-found-error{
        margin-top:12%;
        margin-bottom:12%;
    }
@font-face {
    font-family: 'Comic Sans MS';
    src: url('../fonts/ComicSansMS.eot');
    src: url('../fonts/ComicSansMS.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ComicSansMS.woff2') format('woff2'),
        url('../fonts/ComicSansMS.woff') format('woff'),
        url('../fonts/ComicSansMS.svg#ComicSansMS') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Section Title Css */
.section-title {
  margin-bottom: 25px;
}
.section-title span {
  font-size: 30px;
  line-height: 40px;
  color: #3d3d3d;
  font-weight: 300;
  display: flex;
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: 45px;
  color: #104c40;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Georgia', sans-serif;
}

/* Form CSS */
select::-ms-expand {
  display: none;
}
select.form-control {
  padding: 10px 40px 10px 20px;
  background-image: url(../images/dropdown-arrow.png);
  background-position: 95% 22px;
  background-repeat: no-repeat;
  background-size: 20px auto;
  cursor: pointer;
  text-indent: 0px;
  text-overflow: '';
}
textarea.form-control {
  height: 55px;
  width: 100%;
  resize: none;
}

.form-control {
  width: 100%;
  height: 46px;
  padding: 0 50px;
  border-radius: 50px;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none !important;
  font-size: 14px;
  color: #6F9DD0 !important;
  font-weight: 300;
  box-shadow: none !important;
  border: 1px solid rgba(14, 85, 164, 0.5) !important;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #6F9DD0 !important;
  opacity: 1 !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #6F9DD0 !important;
  opacity: 1 !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #6F9DD0 !important;
  opacity: 1 !important;
}
:-moz-placeholder { /* Firefox 18- */
  color: #6F9DD0 !important;
  opacity: 1 !important;
}

/* Header CSS */
header {
  position: static;
  width: 100%;
  transition: all ease .4s;
}
header .container {
  padding: 20px 0 0px 0;
  position: relative;
}
header.sticky {
  position: fixed;
  top: 0;
  background: #000;
  padding: 15px 0;
}
header.sticky .container a > img {
  max-width: 80%;
}
header.sticky nav > ul > li > a {
  padding: 20px 0;
  font-size: 15px;
  transition: all ease .4s;
}
header .container {  
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .form-control {
  background-image: url(../images/search.svg) !important;
  background-repeat: no-repeat !important;
  background-position: 20px 50% !important;
  min-width: 750px;
}
.search-bar {
	margin-left: 200px;
}
.header-left {
  display: inline-flex;
  align-items: center;
}
.navbar-toggler {
  background: #0E55A4;
  margin-left: 50px;
  margin-right: 50px;
  padding: 12px 25px;
  display: block;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.navbar-toggler:hover span {
  background: #EE343F;
}
.navbar-toggler-icon {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  margin-top: -2px;
  margin-right: 6px;
}
.navbar-toggler-icon:before, .navbar-toggler-icon:after {
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 2px;
  background: #ffffff;
  content: "";
  transition: all ease .4s;
  border-radius: 10px;
}
.navbar-toggler-icon:before {
    top: 6px;
  }
nav {
  display: flex;
  align-items: center;
  padding-left: 0;
  font-size: 17px;
  margin-right: 0;
}
nav ul {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 30px;
}
nav > ul > li {
  position: relative;
  padding: 10px 0
}
nav > ul ul.sub-menu {
  position: absolute;
  right: 0;
}
nav > ul > li:hover > a:before {
  width: 100%;
}
nav > ul > li:hover > a {
  color: #ffffff;
}
nav > ul > li > a {
  display: block;
  font-size: 16px;
  color: #ffffff;
  position: relative;
  font-weight: 600;
}
nav > ul > li > a:hover {
  color: rgb(223, 159, 80);
}
.nav-toggle {
  display: inline-flex;
  vertical-align: middle;
  width: 100px;
  height: 100px;
  background: #79adcd;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 40px;
  height: 4px;
  background: #ffffff;
  position: relative;
  transition: all ease .4s;
}
.nav-toggle span:before, .nav-toggle span:after {
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffffff;
  content: "";
  transition: all ease .4s;
  z-index: 1;
}
.nav-toggle span:after {
  top: 12px;
}
.nav-toggle.active span {
  background: none;
}
.nav-toggle.active span:before {
  top: -6px;
  transform: translateY(7px) rotateZ(-45deg)
}
.nav-toggle.active span:after {
  top: 6px;
  transform: translateY(-5px) rotateZ(45deg)
}
.menu-tab {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #0E55A4;
  padding: 15px;
  z-index: 99;
  display: none;
}
.menu-tab .nav-tabs {
  margin-bottom: 20px;
  border: none !important;
}
.nav-tabs .nav-link {
  background: transparent !important;
  border: none !important;
  padding: 7px 20px !important;
  font-size: 14px !important;
}
.nav-tabs .nav-link {
  color: #fff !important;
  border-radius: 30px !important;
}
.nav-tabs .nav-link img {
  width: 18px;
  margin-right: 3px;
  filter: brightness(0) invert(1);
}
.nav-tabs .nav-link.active {
  background: #004594 !important;
}

.megamenu-tabs li span.list-title {
	padding: 10px 25px !important;
	cursor: pointer;
	border-radius: 40px;
	
}
.megamenu-tabs li.active span.list-title, .megamenu-tabs li:hover span {
	background: #004594 !important;
}

.megamenu-tabs {
	flex-direction: column;
}
.megamenu-tabs,
.megamenu-tabcontent-innerlist {
  list-style-type: none;
  margin: 0px;
  padding: 0;
}
.megamenu-tabcontent-innerlist {
  display: flex;
  flex-wrap: wrap;
}
.megamenu-tabcontent-innerlist li {
  width: 25%;
}
.megamenu-tabs li {
  position: relative; 
  overflow:hidden; 
  display: flex;
  justify-content: stretch;
  align-items: center;
  
}
.megamenu-tabs li:last-child {
  border-bottom-width: 0px; 
}
.megamenu-tabs li span.list-icon,
.megamenu-tabs li span.list-title{
  padding: 15px 0;
  display: flex;
  text-decoration: none;
  color: #fff;
}

.megamenu-tabs li .arrow-icon {
  display: none;
  position: absolute;
  right: 15px;
}

.megamenu-tabs li .arrow-icon i {
  font-size: 18px;
}

.megamenu-tabs li span.list-icon {
  text-align:center;
  width:60px;
}

.megamenu-tabs li span.list-icon .mm-tab-list-icon {
  color:#19202e;
  font-size: 32px;
}

.megamenu-tabs li span.list-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.megamenu-tabs li:hover span.list-icon .mm-tab-list-icon,
.megamenu-tabs li.active span.list-icon .mm-tab-list-icon,
.megamenu-tabs li:hover span,
.megamenu-tabs li.active span{ color:#fff; }
.megamenu-tabs li.active span.arrow-icon {
  display: block;
}

/**********************
       Tab Content       
**********************/
.megamenu-tabcontent {
  padding: 0 0 0 20px;
  display: none;
}
.megamenu-tabcontent.active {
  display: block;
}

.megamenu-tabcontent-innerlist li{
  padding: 20px 0;
}

.megamenu-tabcontent-innerlist li a {
  color:#fff;
  text-decoration:none;
}
.megamenu-tabcontent-innerlist li a:hover{
  color:#fff;
}

.megamenu-tabcontent-innerlist li p.product-short-description {
  margin: 5px 0;
  font-size: 16px;
  color:#777;
}

.mm-tab-head {
  color: #fff !important; 
  font-size: 26px !important;
  font-weight: 600 !important;
  margin: 0 0 15px 0 !important;
}

.mm-tab-innerhead {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #19202e !important; 
  margin: 0px 0 15px;
}

.mm-tab-innerpara {
  font-size: 16px;
  color: #19202e
}





/* Page Banner CSS */
.page-banner {
  padding: 70px 0;
  background: #0e55a4;
}
.top-banner .banner-background:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  z-index: 0;
}
.banner-background {
  display: flex;
  background-image: url(../images/background1.jpg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner-background > * {
  position: relative;
  z-index: 1;
}
.banner-title {
  margin-bottom: 25px;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.breadcrumb {
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.breadcrumb li a, .breadcrumb-item.active {
  color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.sidebar {
 /* background: rgba(233, 243, 255, 1);*/
 background : #0e55a4;
  padding: 1px 1px 10px !important;
  border-radius: 15px;
}
.sidebar h3 {
  font-weight: 500;
  /*margin-bottom: 40px;*/
  margin-bottom: 20px;
}
.sidebar ul li {
    border-bottom: 1px #ffffff dashed;
    padding: 7px 0px 7px 10px;
}
.sidebar ul li a {
  color: #000;
  text-decoration: none;
}

/* About Us CSS */
.about-us {
  padding: 0 0 15px 18px;
  position: relative;
}
.about-us .row {
  position: relative;
  z-index: 1;
}
.about-us [class*="col"] > img {
  width: 100%;
}
.about-content {
  padding-right: 100px;
  margin-bottom: 0px;
  text-align: left;
}
.about-content ul {
  display: flex;
  align-items: center;
  margin-top: 70px;
}
.about-content ul li {
  display: flex;
  align-items: center;
  padding-right: 45px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
}
.about-content ul li:last-child {
  padding-right: 0;
}
.about-content ul li img {
  padding-right: 24px;
}

/* Boxes info CSS */
.boxes-info [class*="col-"] {
  padding-bottom: 30px;
}
.box.grade-link-item1 {
    transition-duration: .4s;
}
.box.grade-link-item1:hover {
    box-shadow: 0 0 8px #0e55a4;
}
.box.grade-link-item1 img {
    width: 58%;
    height: 142px;
    margin-bottom: 8px;
}
.box.topic-link-item1 {
    transition-duration: .4s;
}
.box.topic-link-item1:hover {
    box-shadow: 0 0 8px #0e55a4;
}
.box.topic-link-item1 img {
    width: 58%;
    height: 142px;
    margin-bottom: 8px;
}
.box {
 /* background: rgba(193, 213, 255, 1);*/
  padding: 15px 0px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #0c55a4;
  /*box-shadow: 1px 2px 15px 5px rgba(24, 84, 29, 0.03);*/
}
.box img {
  /*padding: 10px;*/
  background: #fff;
  /*border-radius: 100%;*/
  /*margin-bottom: 30px;*/
  /*width: 110px;*/
  /*height: 110px;*/
  object-fit: contain;
}
.box h2 {
  margin-bottom: 0;
}
.box a {
  font-size: 32px;
  text-transform: uppercase;
  color: #000;
}
.yellow {
 /* background: rgba(255, 243, 193, 1);*/
}

/* Footer CSS */
footer {
  background: rgba(234, 244, 255, 1);
  border-radius: 50px 50px 0 0;
  padding: 50px 0;
}
img.footer-logo {
    margin-bottom: 10px;
    width: 65%;
}
footer p.f1 {
    margin: 0;
    font-weight: 600;
    font-size: 18px !important;
}
footer h3 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
}
.socials {
  display: flex;
  align-items: center;
}
.socials li {
  margin: 0 20px 0 0;
}
.socials li a:hover {
  opacity: 0.5;
}
.menu li {
  margin-top: 10px;
}
.menu li a {
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.menu li a:hover {
  color: #EE343F;
}
.half {
  display: flex;
  flex-wrap: wrap;
}
.half li {
  width: 50%;
}

/* Copyright CSS */
.copyright {
  background: rgba(14, 85, 164, 1);
  padding: 27px 0;
}
.copyright p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

/* CSS added by Gauri */
.container.top-spacing {
    margin-top: 40px;
}

.wpcf7 label{
	display: none;
}

section.about-us.form-section {
    padding: 50px 0;
}

.nav {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    display: flex; /* Align items horizontally */
    gap: 15px; /* Space between menu items */
}

.nav li {
    display: inline-block; /* Ensures horizontal layout */
}

.nav li a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    /*background-color: #f8f9fa;*/
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav li a:hover,.current-menu-item.current_page_item a {
    background-color: #0E55A4;
    color: white !important;
}

.navbar {
/*   background: #0E55A4; */
	
}
.nav-link {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-link:hover, .nav-link:focus {
  color: #fff;
}

.about-content.full-width{
	padding-right:0px;
}
.boxes-info.post-listing [class*="col-"] {
    padding-top: 30px;
    padding-bottom: 0px;
}

.more-ex-margin-bottom {
    margin-bottom: 0;
}

nav.navigation.pagination {
    /* margin: 0 auto; */
    display: block;
    float: unset;
    text-align: center;
    margin: 50px;
}

.box a.read-more {
    font-size: 17px;
    text-decoration: underline;
    text-transform: none;
	transition: font-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

a.read-more:after{
	content:"->"
}

.box a.read-more:hover {
    font-size: 20px; /* Increased font size on hover */
    color: #EE343F; /* Optional: Change color on hover */
}
section.list{
    padding : 50px 0;
}
section.list h2{
    margin-bottom:20px;
}
section.list .item{
    padding: 10px 15px;
}
.list .item a{
    text-decoration: underline;
}
.list-of-subtopics img {
    width: 75%;
    padding: 25px;
}

.subtopics-list h2{
    padding-bottom : 15px;
    color: #0e55a4;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}
.subtopics-list ul {
    list-style: inside;
}
.subtopics-list ul li {
    margin-bottom: 10px;
}
.breadcrumbs a {
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
}

nav.breadcrumbs {
    margin: 0 auto;
    display: block;
    padding-top: 0;
}
.sidebar img {
    margin-bottom: 20px;
}

/* Sub Topic page PDF section */
/* Ensure PDF Section is positioned correctly */
.pdf-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

/* Overlay Effect */
.pdf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Open PDF Button (Centered on Image) */
.btn-open-worksheet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: none;
}

/* Social Share Buttons (Initially Hidden) */
.social-share {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show Overlay, Open Button & Social Icons on Hover */
.pdf-wrapper:hover .pdf-overlay {
    opacity: 1;
}

.pdf-wrapper:hover .btn-open-worksheet {
    display: block;
}

.pdf-wrapper:hover .social-share {
    opacity: 1;
}

.box {
  position: relative;
}

.box::after {
  /*content: "";*/
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Move the actual <a> above the pseudo-element */
.box h2 a {
  position: relative;
  z-index: 2;
  color: inherit;
  text-decoration: none;
   /*pointer-events: none;*/ /* Let the .box::after handle the click */
}

/* Make the whole box clickable */
.box::after {
  cursor: pointer;
}
.dropdown-toggle::after {
	position: relative;
  top: 2px;
}
.navbar-nav {
	border: none !important;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
	width: 100% !important;
  left: 0 !important;
	box-shadow: none;
	border-radius: 0;
	border: none !important;
	top: 75% !important;
	margin: 0 auto;
}
.dropdown span {
	position: relative;
  top: 2px;
  right: 0;
  width: 20px;
  height: 20px;
  z-index: 11;
  cursor: pointer;
  margin-left: -23px;
}
.nav-item.dropdown.dropdown-mega small {
	font-size: 100%;
	position: relative !important;
}
.nav-item.dropdown.dropdown-mega {
	/*margin-right: 20px;*/
	margin-right: 19px;
	display: flex;
	align-items: center;
}
.nav-item.dropdown.dropdown-mega:nth-child(2n) {
	border-bottom-color: #EE343F !important;
}
.navbar-expand-lg .navbar-nav {
margin-bottom: 10px !important;	
	flex-wrap: wrap;
}
.list-group-item:hover {
	color: #EE343F !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}
.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}
.list-group-item {
  padding-left: 0;
  border: none;
}
.navbar {
    background: #26549f0f;
    padding-bottom: 0;
    border-bottom: 3px solid #0e55a4;
}
.nav-link {
  color: #000;
}
.nav-link:hover, .nav-link:focus {
  color: #000;
  text-decoration: underline;
}
.logo-section{
    margin: 0 auto;
    padding: 0px 0 8px 0;
    width: 16%;
}
.navbar-nav li:nth-child(1) .nav-link{
  color: #C63166;
}

.navbar-nav li:nth-child(2) .nav-link{
  color: #9F9D3F;
}

.navbar-nav li:nth-child(3) .nav-link{
  color: #428EBF;
}
.navbar-nav li:nth-child(4) .nav-link{
  color: #B78239;
}

.navbar-nav li:nth-child(5) .nav-link{
  color: #1303BD;
}

.navbar-nav li:nth-child(6) .nav-link{
  color: #B13E87;
}
.navbar-nav li:nth-child(7) .nav-link{
  color: #AB2A25;
}
.navbar-nav li:nth-child(8) .nav-link{
  color: #9F9D3F;
}
.navbar-nav li:nth-child(9) .nav-link{
  color: #428EBF;
}
#searchDropdown::after {
    display: none !important;
}
#searchformul{
    right:20%;
}
.sidebar h2{
    /*margin-top: -55px;*/
    background: #fff;
    padding: 4px 4px;
    border: 1px solid #0e55a4;
    /*border-radius: 50px;*/
    font-weight: 600;
    text-align: center;
    border-radius: 15px 15px 0px 0px;
}
.main{
    margin-top: 50px;
    margin-bottom: 50px;
}
.sidebar ul li a{
    color:#fff;
}
.sidebar li.active-item a{
    color:#fff;
}

/*.main-content p {
  margin-bottom: 1.2em;
}
*/
.main-content ul,
.main-content ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}

.main-content ul li {
  list-style-type: disc;
  margin-bottom: 0.5em;
}

.main-content ol li {
  list-style-type: decimal;
  margin-bottom: 0.5em;
}

/* Gauri css for new mobile menu */

header.mobile-header, .mobile-navbar,.mobile-menu-container{
    display: none;
}
.sidebar-toggle{
    display: none;
}

.about-content.extra-content h2{
    color: #1d6161;
    text-transform: capitalize;
    padding-bottom: 30px;
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}
.about-content.extra-content ul{
    display: list-item;
    margin-top: 0;
    margin-bottom:1rem;
    /*list-style :disc;*/
}
.about-content.extra-content ul li{
    list-style-type: unset;
}
.show-in-mobile{
    display: none;
}



@media screen and (max-width: 991px) {
.show-in-mobile{
    display: block;
    order:3;
}
.show-in-desktop{
    display: none;
    
}
.show-in-mobile .Worksheet-group {
    margin-top: 20px;
}
.row.align-items-center {
    display: flex;
    flex-direction: column;
  }

  .row.align-items-center > .col-lg-7 {
    order: 1; /* Show title and description first */
  }

  .row.align-items-center > .pdf-section {
    order: 2; /* Show image second */
  }
   /* .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background-color: #0e55a4;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease;
    z-index: 1000;
    }
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: block;
        position: fixed;
        top: 70px;
        left: 10px;
        background-color: #0e55a4;
        color: #fff;
        border: none;
        padding: 10px 15px;
        z-index: 1100;
        cursor: pointer;
    }
    #sidebar-toggle.clicked{
    left: 250px;
    }*/
    
    
    .sidebar {
    position: fixed;
    top: 70px;
    left: -250px; /* hidden initially */
    width: 250px;
    height: 95%;
    background: #0e55a4;
    transition: left 0.3s ease;
    z-index: 1000;
    }
    
    .sidebar.active {
        left: 0;
        top: 20px;
    }
    
    .sidebar-toggle {
        display: block;
        position: fixed;
        top: 70px;
        left: 10px;
        background-color: #0e55a4;
        color: #fff;
        border: none;
        padding: 10px 15px;
        z-index: 1100;
        cursor: pointer;
        transition: left 0.3s ease;
    }
    
    .sidebar-toggle.clicked {
        left: 260px; /* Moves button with sidebar */
    }
    header.desktop-header{
    display: none;
    }
    header.mobile-header, .mobile-navbar,.mobile-menu-container{
    display: block;
    }
    .desktop-menu{
        display: none;
    }
    
    .container {
      max-width: 100%;
      padding-left: 15px;
      padding-right: 15px;
    }

    .mobile-navbar {
      background-color: #EAF4FF;
      color: white;
      padding: 10px 0;
    }

    .mobile-navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    .menu-toggle {
      cursor: pointer;
      display: inline-block;
      width: 30px;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      margin-bottom: 5px;
      background: #0F55A5;
    }

    .mobile-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      background: #0F55A5;
      display: none;
    }

    .mobile-menu li {
      border-top: 1px solid #EAF4FF;
    }

    .mobile-menu li a {
      display: block;
      color: white;
      text-decoration: none;
      padding: 12px 15px;
    }

    .mobile-menu li a:hover {
      background: #EE2F3F;
    }

    .submenu {
      display: none;
      background: #05000061;
    }

    .submenu li a, .no-topic {
      padding-left: 30px;
      font-size: 0.95em;
    }

    .has-submenu::after {
      content: ' ▾';
      float: right;
    }

    .mobile-menu li.open > .submenu {
      display: block;
    }

    .mobile-menu li.open > a {
      background: #666;
    }

    strong {
      font-weight: bold;
      color: #7bff00a6;
    }
    
    li.grade-link {
    padding-left: 8px;
    }
    
    .search-form{
      padding: 1px 20px;
    }
    
    .search-form input[type="text"]{
        height: 50px;
        border: 1px solid #EAF4FF !important;
    }
    
    .search-form input[type="text"]::placeholder {
      color: #888;
      opacity: 1;
    }
    
    .search-form input[type="text"]:-ms-input-placeholder {
      color: #888;
    }
    
    .search-form input[type="text"]::-ms-input-placeholder {
      color: #888;
    }
    
    .search-form input[type="text"]::-webkit-input-placeholder {
      color: #888;
    }
    
    nav.breadcrumbs {
    margin-top: 20px;
    }

}