*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}
body {
	overflow-x: hidden;
}
body li{
	list-style: none;
}
body a{
	text-decoration: none;
}
body p{
	margin-bottom: 0%;
}
:root{
	--primary:#a43321;
	--secondary:#423674;
	--black:#222;
	--white:white;
	--lightgray:lightgray;
  --gray:gray;
	--red:red;
}
.font{
  font-family: "Tinos", serif;
  font-weight: 700;
}
.flex-center{
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex-center-column{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.grid{
	width:90%;
	margin: auto;
}
.gap{
	margin-top: 4%;
}
.goog-te-combo {
  background-color: var(--white);
  border: none;
  padding: 7px;
}
.goog-logo-link {
  display:none !important;
} 
.goog-te-gadget{
  color: transparent!important;
}
.VIpgJd-ZVi9od-l4eHX-hSRGPd{
  display: none;
}
.move{
  position: absolute;
  content:"";
  border:none;
  outline: none;
  height:40px;
  width:40px;
  border-radius: 50%;
  background: var(--primary);
  bottom:3%;
  left:2%;
  color:var(--white);
  z-index: 1000;
  position: fixed;
}
.common{
  height:180px;
  background-color: var(--black);
  color:var(--white);
}
.common h5{
  font-size: 25px;
  margin-bottom: 1%;
}
.common a{
  color:var(--white);
}
.whatsapp,.pulse {
  background: #1ab744;
  position: fixed;
  right:2.5%;
  bottom:6%;
  font-size: 35px;
  text-align: center;
  padding-top: 3px;
  z-index: 99;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: pointer;
  color: var(--white);
}
.pulse:nth-child(1) {
  animation: pulse 2s infinite
}
.pulse:nth-child(2) {
  animation: pulse 2s infinite .3s
}
.pulse:nth-child(3) {
  animation: pulse 2s infinite .6s
}
@keyframes pulse {
0% {
  transform: scale(.1);
  opacity: 0
}
50% {
  opacity: .3
}
100% {
  transform: scale(1.8);
  opacity: 0
}
}


/*navbar part start */
.first{
	background: var(--black);
	height:40px;
}
.first-one{
	text-align: right;
}
.second{
	height:100px;
}
.logo{
	height:90px;
	width:90px;
	object-fit: contain;
}
nav{
    height: 60px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.nav-link {
    color:var(--black)!important;
}
.nav-link:hover{
    color:var(--primary)!important;
}
.nav-item {
    padding-right: 60px;
}
.nav-item:last-child {
    padding-right: 0px;
}
.dropdown{
    transition: 3s!important;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: .5s!important;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(7px);
    opacity: 1;
    visibility: visible;
}
.dropdown-item{
    font-size: 15px;
}
.dropdown-item:hover{
    background-color: transparent!important;
    color:var(--black)!important;
}
.act{
    color:var(--primary)!important;
}

/*index part start */
.home-1{
    background: linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/a13.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:350px;
}
.home-2{
    background: linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/a7.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:350px;
}
.home-3{
    background: linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/a2.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:350px;
}
.second-content-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:25px;
}
.second-content{
	text-align: center;
	padding-inline:10px;
}
.second-content img{
	margin-bottom: 5%;
}
.second-content a{
	color:var(--black);
}
.modal-content{
  border-radius: 0%!important;
}
.m-btn{
  border: none;
  background-color: var(--white)!important;
}
/* Blog Card Styles */
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}
.blog-card:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}
.blog-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.blog-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
  transition: color 0.3s ease;
  cursor: pointer;
}
.blog-card-title-link:hover .blog-card-title,
.blog-card:hover .blog-card-title {
  color: var(--secondary);
}
.blog-description {
  margin-bottom: 20px;
  font-size: 15px;
}
.read-more-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary) 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  align-self: flex-start;
}
.read-more-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: white;
}
.read-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.read-more-btn:hover i {
  transform: translateX(5px);
}
.pagination {
  gap: 10px;
  margin-top: 20px;
}
.pagination .page-item .page-link {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  color: var(--secondary);
  padding: 12px 18px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pagination .page-item .page-link:hover {
  background: linear-gradient(135deg, var(--primary),var(--secondary));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--primary),var(--secondary));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.pagination .page-item.disabled .page-link {
  background: rgba(255, 255, 255, 0.5);
  color: #a0aec0;
  cursor: not-allowed;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*contact part start*/
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  width:75%;
  margin: auto;
  margin-top: 3%;
  gap:50px;
}
.contact-box{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding-inline: 25px;
  padding-block: 20px;
  padding-top: 30px;
}
.contact-box h5{
  margin-bottom: 5%;
}

/*support us part start */
.support-container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:20px;
}
.support-box{
  border:1px solid #999;
  padding-inline: 20px;
  padding-block: 20px;
}
.support-box h5{
  margin-bottom: 5%;
  color:var(--primary);
}

/*footer part start */
.recent{
	margin-top: 3%;
}
.reacent-article{
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	padding-block: 30px;
	padding-inline: 25px;
	font-size: 15px;
}
.reacent-article h5{
	margin-bottom: 2%;
}
.fa-arrow-right-long{
	color:var(--black);
	margin-right: 6px;
}
.fix-link{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:35px;
	margin-top: 4%;
}
footer{
	background-color: var(--black);
	color:var(--white);
	padding-block: 25px;
	gap:15px;
}
footer a{
	color: var(--white);
}

/*media part start */
.media-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
}

/*our team part start */
.president-grid{
  width:70%;
  margin: auto;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap:20px;
  margin-top: 5%;
}
.president-image{
  height:300px;
  width:300px;
  margin-bottom: 9%;
}
.pdf{
  height:380px;
  width: 100%;
}
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
  row-gap: 40px;
}
.team-grid h6{
  color:var(--primary);
  font-weight: 600;
}
.team-img{
  height:300px;
  width:260px;
  object-fit: cover;
  background: var(--lightgray);
  margin-bottom: 5%;
  transition: 0.8s;
}
.team-img:hover{
  transform: translateY(-8px);
}
.team-text{
  margin-top: 1%;
  margin-bottom: 2%;
  color: var(--gray);
}

/* sub page part start  */
.text-gap{
  display: flex;
  flex-direction: column;
  gap:20px;
}

/* admin part  */
.login{
  height:770px;
}
.login-grid{
  width:40%;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding:25px;
}
.dashboard{
  background-color: var(--secondary);
  color:var(--white);
  padding-block: 10px;
  padding-left: 10px;
}
.dashboard h5{
  margin-bottom: 0%;
  font-size: 25px;
}
.admin-left{
  background-color: var(--black);
  height:720px;
}
.admin-sub{
  background-color: var(--white);
  padding: 7px 21px;
  margin-top: 5%;
}
.admin-sub a{
  color:var(--black);
}
.admin-form{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding:15px;
}
.form-group{
  margin-top: 1.5%;
}
.form-control{
  margin-top: 0.8%;
  border-radius: 0%!important;
}
.submit-btn{
  background-color: var(--primary)!important;
  color:var(--white)!important;
}
.fa-ban{
  color: red;
}


/*responsive part start */
@media(max-width:1024px){
nav{
  height:50px;
}
.nav-item {
  padding-right: 50px;
}
.team-grid{
  grid-template-columns: repeat(3, 1fr);
}
.president-grid{
  width:90%;
}
.contact-grid{
  width:90%;
}
.common h5{
  margin-bottom: 1%;
}
.login{
  height:680px;
}
.admin-left{
  height:630px;
}
}

@media(max-width:768px){
nav{
  height:50px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}
.res-nav{
  margin-top: -0.4%;
}
.navbar-toggler{
  border-radius: 0%!important;
}
.navbar-toggler:focus{
  box-shadow: none!important;
  outline:none!important;
}
.nav-item {
  padding-right: 0px;
  padding-left: 10px;
}
.dropdown-menu{
  transform: translateY(7px);
  opacity: 1;
  margin-bottom: 3%!important;
  visibility: visible;
}
.second-content-grid{
  grid-template-columns: 1fr 1fr;
}
.common h5{
  margin-bottom: 1.5%;
}
.president-grid{
  grid-template-columns: 1fr;
}
.president-image{
  margin-bottom: 3%;
}
.team-grid{
  grid-template-columns: repeat(2, 1fr);
}
.media-grid{
  grid-template-columns: 1fr 1fr;
}
.support-container{
  grid-template-columns: 1fr 1fr;
}
.contact-grid{
  gap:20px;
}
.login-grid{
  width:60%;
}
}

@media(max-width:425px){
  .whatsapp,.pulse {
    right:4.5%;
    font-size: 30px;
    height: 50px;
    width: 50px;
  }
  .res-nav{
    width:98%!important;
    margin-top: -0.6%!important;
  }
  .home-1{
    background: linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/a13.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:270px;
  }
  .home-2{
    background: linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/a7.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:270px;
  }
  .home-3{
    background: linear-gradient(rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.0)),url('images/a2.jfif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:270px;
  }
  .second-content-grid{
    grid-template-columns: 1fr;
  }
  .fix-link{
    grid-template-columns: repeat(1, 1fr);
  }
  .flex-center-column{
    text-align: center;
  }
  .common{
    height:150px;
  }
  .common h5{
    margin-bottom: 3%;
  }
  .pdf{
    height:280px;
  }
  .team-grid{
    grid-template-columns: 1fr;
  }
  .media-grid{
    grid-template-columns: 1fr;
  }
  .support-container,.contact-grid{
    grid-template-columns: 1fr;
  }
  .dashboard{
    text-align: center;
  }
  .admin-left{
    height:140px;
  }
  .admin-sub{
    text-align: center;
  }
  .login-grid{
    width:90%;
  }
}

@media(max-width:375px){
  .res-nav{
    margin-top: -0.8%!important;
  }
}


