/* Gnanadeepam customized stylesheet */

.header .logo img {
    max-height: 60px;
}
.hero .content .why-box {
  background: transparent;
}
.hero img {
    /*height: auto;*/
}
.sponsor-btn {
    color: #E0015E;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    display: inline-block;
    padding: 10px 30px 10px 30px;
    border-radius: 50px;
    transition: all ease-in-out 0.3s;
}
.sponsor-btn:hover {
    color: #ffffff;
    background-color: #E0015E;
    border: 1px solid #ffffff;
    transition: all ease-in-out 0.3s;
}
.btn-gd-primary {
  color: #ffffff;
  background-color: #4e43bb;
  border: 1px solid #4e43bb;
  display: inline-block;
  padding: 10px 30px 10px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.3s;
}
.btn-gd-primary:hover {
  background-color: #ffffff;
  border: 1px solid #4e43bb;
  color: #4e43bb;
  transition: all ease-in-out 0.3s;
}
.btn-gd-secondary {
  color: #ffffff;
  background-color: #169f5f;
  border: 1px solid #198754;
  display: inline-block;
  padding: 10px 30px 10px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.3s;
}
.btn-gd-secondary:hover {
  background-color: #157347;
  border: 1px solid #157347;
  color: #ffffff;
  transition: all ease-in-out 0.3s;
}
.about-bg {
  background-image: url(/assets/img/about-icon-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  /* max-height: 500px; */
}
.brand-text-red {
  color: #E31E24;
}
.tax-dec-info {
    width: 250px;
    text-align: center;
    margin: auto;
    line-height: normal;
    margin-top: 6px;
    font-size: 14px;
}

/* Circle animation starts*/
.circle {
	position: relative;
	width: 200px;
	height: 200px;
	border-radius: 100vmax;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo {
	position: absolute;
	width: 140px;
	height: 140px;
	/*background: url("/assets/img/25-Years.png");*/
	background-size: cover;
	border-radius: 100vmax;
	background-position: center;
}

.text {
	position: absolute;
	width: 100%;
	height: 100%;
	font-family: consolas;
	color: #000;
	font-size: 17px;
	animation: textRotation 8s linear infinite;
  text-transform: capitalize;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes textRotation {
	to {
		transform: rotate(360deg);
	}
}

.text span {
	position: absolute;
	left: 50%;
	font-size: 1.2em;
	transform-origin: 0 100px;
}
/* Circle animation ends*/

.text-justify {
  text-align: justify;
}

#departments h3 {
  color: #4e43bb;
}
.note-sec {
    background: #F6F6EB;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
    display: inline-block;
}
.light-background {
    background-color: #f1f7fc;
}
.light-yellow-bg {
  background: #F6F6EB;
}
.white-bg {
  background-color: #ffffff;
}
.appointment .php-email-form .form-group {
    padding-bottom: 14px;
}
.bank-details-block {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 6px; 
  border: 1px solid rgba(29, 61, 90, 0.10);
  background: rgba(241, 247, 252, 0.75);
  height: 374px;
}
.bank-details-block h4 {
  font-size: 24px;
  font-weight: 600;
}
.bank-details-block h5 {
  font-size: 18px;
  font-weight: 600;
}
.info-item i {
  color: #ffffff;
  background: #4e43bb;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.highlighted {
  border: 1px solid rgba(25, 119, 204, 0.75);
  background: #F1F7FC;
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px
}
.gd-list ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0; /* Adjust padding as needed */
}

.gd-list ul li {
  background-image: url("/assets/img/patch-check-fill.svg");
  background-repeat: no-repeat;
  background-position: 0 center; /* Adjust position */
  background-size: 20px 20px; /* Adjust size */
  padding-left: 32px; /* Create space for the custom bullet */
  margin-bottom: 20px;
  text-align: left;
}
.gd-list h3 {
  text-align: left;
}

.gallery-head {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-top: 16px;
}
.img-fluid {
  width: 100%;
  cursor: pointer;
}

/* Marque animation css */
    .marque-ani {
    height: 100px;	
    overflow: hidden;
    position: relative;
    background-color: #E0015E;
    /*border-top: 1px solid #d7e0e5;
    border-bottom: 1px solid #d7e0e5;*/
    }
    .marque-ani ul {
      list-style: none;
      display: ruby-text;
    }
    .marque-ani h3 {
    font-size: 1.2em;
    color: #ffffff;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    /* Starting position */
    -moz-transform:translateX(100%);
    -webkit-transform:translateX(100%);	
    transform:translateX(100%);
    /* Apply animation to this element */	
    -moz-animation: marque-ani 20s linear infinite;
    -webkit-animation: marque-ani 20s linear infinite;
    animation: marque-ani 20s linear infinite;
    }
    /* Move it (define the animation) */
    @-moz-keyframes marque-ani {
    0%   { -moz-transform: translateX(100%); }
    100% { -moz-transform: translateX(-100%); }
    }
    @-webkit-keyframes marque-ani {
    0%   { -webkit-transform: translateX(100%); }
    100% { -webkit-transform: translateX(-100%); }
    }
    @keyframes marque-ani {
    0%   { 
    -moz-transform: translateX(100%); /* Firefox bug fix */
    -webkit-transform: translateX(100%); /* Firefox bug fix */
    transform: translateX(100%); 		
    }
    100% { 
    -moz-transform: translateX(-100%); /* Firefox bug fix */
    -webkit-transform: translateX(-100%); /* Firefox bug fix */
    transform: translateX(-100%); 
    }
    }
    .marque-ani h3 img {
      padding-left: 40px;
    }
  /* Marque animation css ends */

  .footer-contact p {
    text-align: justify;
  }
  .tab-content p {
    text-align: justify;
  }