/* CSS Document*/
html, body{height:100%;}
::-webkit-input-placeholder {color:#999;}
::-moz-placeholder{color:#333;} /* firefox 19+ */
:-ms-input-placeholder {color:#999;} /* ie */
input:-moz-placeholder {color:#333;}
input, input:focus, textarea:focus{outline:none;}
input:focus, textarea:focus{-webkit-tap-highlight-color:rgba(0,0,0,0);}
ul, ol {
   list-style:none; 
   margin:0; 
   padding:0;
}
h1,h2,h3,h4,h5,h6{
   color:#333333; 
   font-weight:500; 
   margin:0; 
   line-height:1.3;
}
a {
   text-decoration:none; 
   color:#000; 
   cursor:pointer; 
   outline:none; 
   transition: all 0.3s ease 0s;
}
a:hover {
   text-decoration:none; 
   color:#999;
}
img {
   max-width: 100%; 
   height: auto;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* Buttons */
.btn-primary {
   background-color: #ff5733;
   border-color: #ff5733;
   font-weight: 600;
}
.btn-primary:hover {
   background-color: #eb522f;
   border-color: #eb522f;
}
.btn-secondary {
    background: linear-gradient(135deg,#fd7e14 0% 100%);
    border: none;
    border-radius: 8px;
    padding: .75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all .2s ease;
    height: auto;
}
.btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg,#fd7e14 0% 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px #667eea4d;
}
.btn-warning {
    background-color: #ff6b35;
    border-color: #ff6b35;
    font-weight: 600;
}
.btn-warning:hover {
    background-color: #e55a2e;
    border-color: #e55a2e;
}
.btn-dark {
   background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
   color: #fff;
   box-shadow: rgba(102, 126, 234, 0.3) 0px 8px 25px;
    transition: 0.3s;
    border: none;
    padding: 15px;
}
.btn-info {
   background-color: #2f1b69;
   border-color: #2f1b69;
   color: #fff;
}
.btn-info:hover {
   background-color: #3f2199;
   border-color: #3f2199;
   color: #fff;
}
/* Buttons */
.wrapper{
   width:100%; 
   min-height:800px;
   padding-top: 110px;
}
/* Header / Navigation */
.navbar-toggler {
   position: relative;
   float: right; 
   margin-top: 8px;
   margin-bottom: 8px; 
   background-color: transparent; 
   background-image: none; 
   border: 1px solid transparent; 
   border-radius: 4px;
}
.navbar-toggler:focus{
   box-shadow: none;
}
.navbar-brand img {
   max-height: 80px;
}
.header .navbar-nav .nav-link {
   transition: all 0.3s ease 0s;
}
.header .navbar-nav .nav-link:hover {
   background-color: #fd7e14 !important;
   color: white !important;
   border-radius: 4px !important;
}
.header .navbar {
   border-top: 4px solid #ff5733;
}
.header .dropdown-item:focus, .header .dropdown-item:hover {
   background-color: #fd7e14 !important;
   color: white !important;
   border-radius: 4px !important;
}
.header .dropdown-toggle::after {
   background: url(../images/dropdown-arrow.svg) no-repeat center;
   border: none;
   width: 10px;
   height: 10px;
   background-size: 10px;
   vertical-align: middle;
}
.header .btn-block {
    width: 23% !important;
    justify-content: flex-end;
}
/* Footer */
.angled-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg,#f15700,#f73);
}
.custom-badge {
    font-family: Inter,sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 4.3px;
    text-transform: capitalize;
    background-color: #fdd1b0;
    color: #000;
    width: 209px;
    height: 27px;
    opacity: .99;
    display: inline-block;
}
.phone-container {
    background: #191970e6;
    color: #fff;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.Footer-Bottom {
    background-color: #f15700;
}
.quick-links-container {
    margin-left: 4%;
    margin-right: 16%;
    border-left: 1px solid rgba(255,255,255,.082);
    border-right: 1px solid rgba(255,255,255,.082);
    padding: 0;
}
.container {
    max-width: 1200px;
}
.translate-middle {
    transform: translate(-50%,-53%)!important;
}
.phone-number {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}
.main-heading {
   color: #fd7e14;
   font-weight: 700;
}
.main-heading span{
   color: #011659;
}
.empowering-wrap {
   background: url(../images/gradient-bg.png) no-repeat bottom center;
   background-size: cover;
   min-height: 650px;
   padding: 15px;
}
.empowering-wrap .main-heading {
   color: #333;
   margin-bottom: 25px;
}
.card-item {
   background-color: #fff;
   border: 1px solid #ccc;
   border-radius: 5px;
   padding: 10px;
   min-height: 660px;
}
.card-item img {
   width: 100%;
}
.custom-card-wrapper {
   min-height: 550px;
   margin-top: 80px;
}
.card-content {
   background-color: #F8F9FA;
   margin-top: 20px;
   padding: 24px;
}
.card-content h3, .card-content time {
   margin-bottom: 15px;
   display: inline-block;
}
.card-content h3 {
   width: 100%;
}
.card-content p {
   line-height: 1.6;
}
.card-content .btn {
   padding: 10px 50px;
}
.custom-card {
   border: none;
   border-radius: 10px;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px inset;
   position: relative;
   min-height: 480px;
   transition: all 0.3s ease 0s;
   position: relative;
}
.custom-card i {
   top: 0;
   right: 20px;
   position: absolute;
}
.custom-card:hover {
   margin-top: -5px;
}
.custom-card .main-heading {
   margin: 15px 0;
}
.custom-card .main-heading.goal-heading {
   margin-bottom: 35px;
}
.goal-list li {
   transition: all 0.3s ease 0s;
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
   padding: 10px;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
}
.goal-list li:hover {
    background-color: #ffe7d5;
}
.goal-list li svg {
   margin-right: 10px;
}
.goal-list li:hover svg {
   color: #28a745!important;
}
.goal-list li span {
    max-width: 80%;
}
.text-green {
   color: #0bb72b !important;
}
.text-blue {
   color: #3353f6 !important;
}
.medal-icon {
   background: url(../images/AchimentBadgeIcon-BnudD_hl.svg) no-repeat;
   background-size: 47px;
   width: 47px;
   height: 64px;
}
.goal-icon {
   background: url(../images/GoalsIcon-B4EKkcVY.svg) no-repeat;
   background-size: 47px;
   width: 47px;
   height: 64px;
   margin-top: 5px;
}
.opportunities-icon {
   background: url(../images/OpportunitiesIcon-D07b7jSj.svg) no-repeat;
   background-size: 47px;
   width: 47px;
   height: 64px;
   margin-top: 5px;
}
.goal-text-bar-wrapper {
    position: relative;
    width: 100%;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.goal-text-row {
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: color .3s;
}
.segmented-progress-line {
    width: 100%;
    display: flex;
    height: 3px;
    border-radius: 2px;
    background: none;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}
.segmented-progress-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    display: flex;
    flex-direction: row;
    border-radius: 4px;
    overflow: hidden;
    z-index: 10;
    transition: height .4s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.segment.orange {
    background: #fd7e14;
}
.segment.green {
    background: #28a745;
}
.segment.blue {
    background: #3b3bff;
}
.segmented-progress-line .segment {
    height: 100%;
}
.list-item {
   width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
}
.list-item:hover {
    background: none;
}
.next-goal-list.goal-list li:hover svg {
   color: #222 !important;
}
.goal-item:hover .goal-text, .goal-item:hover .arrow, .goal-item:focus-within .goal-text, .goal-item:focus-within .arrow {
    color: #fff;
}
.goal-item:hover .segmented-progress-overlay, .goal-item:focus-within .segmented-progress-overlay {
    height: 100%;
    pointer-events: auto;
}
.next-goal-list li:hover {
   background-color: transparent;
}
.next-goal-list.goal-list li{
   border: none;
   padding: 0;
   margin: 0;
}
.next-goal-list.goal-list li span {
    max-width: inherit;
    white-space: nowrap;
}
.segmented-progress-overlay .segment {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    transition: background .3s;
}
.segment-label {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translate(-50%);
    font-size: 13px;
    color: #fff;
    opacity: .8;
    pointer-events: none;
    z-index: 3;
    font-weight: 500;
    white-space: nowrap;
}
.overlay-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 20;
    justify-content: flex-start;
    padding-left: 0;
}
.arrow {
    color: #000;
    transition: color .3s;
    margin-right: 10px;
    flex-shrink: 0;
}
.about-us-subtitle {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.flagship-container {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
}
.flagship-container .main-heading {
   font-size: 32px;
}
.arrow-icon {
    background-color: #011659;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.button-container {
    display: flex;
    align-items: center;
}
.button-container .btn {
   padding: 8px 55px;
   margin-right: 8px;
}
.about-us-content {
    font-size: 1.1rem;
    color: #495057;
    margin-top: 1rem;
    line-height: 1.6;
}
.flagship-swiper {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px #0000001f;
}
.flagship-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.flagship-image img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

.flagship-title {
    font-size: clamp(1.4rem,3vw,2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #fff;
}
.flagship-desc {
    font-size: clamp(1rem,2vw,1.1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: .95;
}
.flagship-cta {
    background-color: #fff;
    color: #333!important;
    text-decoration: none!important;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    align-self: flex-start;
    transition: all .3s ease;
    box-shadow: 0 8px 20px #00000026;
}
.flagship-text {
    color: #fff;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 0 20px 20px;
    position: relative;
}
.flagship-slide {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 400px;
}
.flagship-badge img {
    height: clamp(60px,6vw,100px);
    width: auto;
    max-height: none;
}
.flagship-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.3));
}
.flagship-swiper .swiper-pagination-bullet {
    width: 12px!important;
    height: 12px!important;
    background: #fff9!important;
    opacity: .8!important;
    margin: 0 8px!important;
    transition: all .3s ease!important;
}
.flagship-swiper .swiper-pagination-bullet-active {
    background: #ff5733!important;
    opacity: 1!important;
    transform: scale(1.2);
}
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: .9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.hero-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}
.timeline-wrapper .main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,.4);
    position: relative;
    z-index: 1;
}
.timeline-item {
    position: relative;
    margin-bottom: 120px;
    min-height: 300px;
}
.timeline-item:before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    background: #fd7e14;
    border-radius: 50%;
    z-index: 100;
    box-shadow: 0 0 10px #0000001a;
}
.timeline-year {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%);
    font-weight: 700;
    color: #333;
    font-size: 24px;
    z-index: 101;
    background: #fff;
    padding: 10px 20px;
}
.timeline-content {
    position: absolute;
    top: 120px;
    width: 40%;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
.timeline-image {
    position: absolute;
    top: 120px;
    width: 35%;
    overflow: hidden;
    box-shadow: 0 8px 25px #00000026;
}
.timeline-item.odd .timeline-image {
    right: 5%;
}
.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}
.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: .95rem;
}
.timeline-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
    margin: 0;
    min-height: 620px;
    margin-top: 60px;
}
.timeline:before {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    margin-top: -40px;
    background: #89898b;
}
.timeline-item.even .timeline-image {
    left: 5%;
}
.timeline-item.even .timeline-content {
    right: 5%;
    text-align: left;
}
.timeline-slider {
   position: relative;
}
.timeline-slider .arrows {
    width: 100%;
    position: absolute;
}
.arrows .arrowbtn {
   position: absolute;
   left: 47.5%;
   z-index: 9;
   width: 50px;
   height: 50px;
}
.arrows .arrowbtn.next {
   top:20px;
}
.gradientbg {
    background: linear-gradient(145.38deg, rgb(241, 87, 0) 9.1%, rgb(1, 22, 89) 95.63%);
    padding: 20px;
    color: white;
    font-family: Arial, sans-serif;
}
.sm-title {
   color: #fff;
   border-bottom: 2px solid #fff;
   padding-bottom: 8px;
   margin-bottom: 15px;
   padding-right: 10px;
   display: inline-block;
}
.white-title {
   font-size: 48px;
   color: #fff;
}
.white-subtitle {
   font-size: 32px;
   color: #fff;
}
.event-schedule-wrap {
   margin-top: 40px;
}
.event-schedule {
   display: flex;
   margin-bottom: 25px;
}
.event-schedule:last-child {
   margin-bottom: 0;
}
.event-date {
    background-color: white;
    color: black;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.event-date label {
   font-size: 28px;
   font-weight: bold;
}
.event-date small {
   font-size: 14px;
}
.event-schedule-text h4 {
   color: #fff;
   margin-bottom: 10px;
   font-size: 20px;
}
.event-schedule-text i {
   font-style: normal;
   margin-right: 5px;
   width: 35px;
   display: inline-block;
   text-align: center;
}
.sidebar .swiper-slide img {
   min-height: 650px;
   object-fit: cover;
}
.youtube-swiper-wrap {
   margin-top: 25px;
}
.youtube-swiper-wrap iframe {
   width: 100%;
   height: 667px;
   padding-bottom: 35px;
}
.swiper-pagination-bullet-active {
   background-color: #000;
}
.moments-gallery-wrapper {
   margin-bottom: 50px;
}
.moments-gallery-wrapper .title-wrapper .btn {
   padding: 8px 45px;
}
.moments-gallery-wrapper .title-wrapper .main-heading {
   margin-bottom: 8px;
}
.moments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin:40px auto;
}
.grid-column {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}
.column-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.abcd {
    margin-top: -70px;
}
.image-container {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    height: 100%;
    cursor: pointer;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}
.image-container:hover img {
    transform: scale(1.05);
}
.img-short {
    height: 240px;
}
.img-medium {
    height: 320px;
}
.img-tall {
    height: 400px;
}
.image-container:hover {
    transform: translateY(-5px);
}
.glightbox-clean .gslide-description {
    display: none;
}
.blog-wrapper {
   background-color: #FFF7F0;
   padding: 50px 20px 20px;
   position: relative;
}
.blog-wrapper .card-body {
   min-height: 137px;
}
.swiper.blogSwiper {
    padding-bottom: 15px;
    position: inherit;
}
.swiper.blogSwiper .swiper-wrapper {
   position: inherit;
}
.blog-swiper-slider .btn {
   padding: 8px 35px;
}
.blog-swiper-slider {
  padding: 0 60px;
}
.blog-swiper-slider .swiper-button-next,
.blog-swiper-slider .swiper-button-prev {
  color: #fff; 
  width: 50px;
  height: 50px;
  background: #011659;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.blog-swiper-slider .swiper-button-next:after,
.blog-swiper-slider .swiper-button-prev:after {
  display: none;
}
.blog-swiper-slider .swiper-button-prev {
  left: -65px;
}
.blog-swiper-slider .swiper-button-next {
  right: -65px;
}
.blog-swiper-slider .swiper-button-next:hover,
.blog-swiper-slider .swiper-button-prev:hover {
  background: #424649;
  color: #fff;
}
.blog-swiper-slider .swiper-button-prev svg, 
.blog-swiper-slider .swiper-button-next svg {
   width: 30px;
   height: 30px;
}
.blog-wrapper .main-heading {
   margin-bottom: 20px;
}
.blog-wrapper .title-wrapper .text-muted {
   margin-bottom: 40px;
}
.partners-wrapper {
   background-color: #F8F9FA;
   padding: 80px 0;
}
.partners-wrapper .main-heading {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    font-family: Georgia, serif;
    color: #ff5733;
}
.partners-wrapper .main-heading:after {
   content: '';
   position: absolute;
   bottom: -20px;
   background: #ff5733;
   height: 4px;
   width: 100px;
}
.partners-wrapper .subtitle {
   color: #6c757d;
   padding-top: 45px;
}
.partner-card {
    max-width: 280px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
    transition:all ease 0.3s;
    cursor: pointer;
    border: none;
    padding: 30px 20px;
    transform: translateY(0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.partner-card:hover .partner-logo-container {
    border-color: #ff5733 !important;
}
.partner-card:hover {
  box-shadow: rgba(255, 87, 51, 0.15) 0px 8px 25px;
   transform: translateY(-5px);
}
.partner-name {
   color: rgb(51, 51, 51);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0px;
}
.partner-logo-container {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    border: 1px solid rgb(233, 236, 239);
    padding: 10px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}
.partner-logo-wrap {
   max-width: 940px;
   margin: 30px auto;
}
.partner-logo-text {
   margin-top: 60px;
}
.partner-logo-text p {
   font-size: 0.95rem;
    color: rgb(108, 117, 125);
    line-height: 1.6;
}
.flagship-btns {
   justify-content: flex-end !important;
}
.footer-wrapper {
    padding-top: 80px;
}

/* Login Modal */
.custom-close-btn {
    position: absolute;
    top: 2.5rem;
    right: 1rem;
    z-index: 10;
    width: 32px;
    height: 32px;
    opacity: .6;
    transition: opacity .2s ease;
}
.login-modal-custom .modal-dialog {
    max-width: 1080px;
    margin: 1.75rem auto;
}
.login-modal-custom .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px #0000001a;
    min-height: 500px;
}
.login-image-section {
    position: relative;
    background: linear-gradient(135deg,#fd7e14 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}
.login-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.login-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.login-form-container {
    padding: 3rem 2.5rem;
    width: 100%;
    position: relative;
}
.login-form-section {
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}
.login-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#fd7e14 0% 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}
.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: .5rem;
}
.login-subtitle, .forgot-subtitle {
    color: #666;
    font-size: .95rem;
    margin-bottom: 0;
}
.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: .75rem 1rem;
    font-size: .95rem;
    transition: all .2s ease;
    height: auto;
}
.login-footer {
    text-align: center;
    margin-top: 1rem;
}
.forgot-password {
    margin: 0;
    font-size: .9rem;
}
.forgot-link {
    color: #667eea;
    text-decoration: none;
    transition: color .2s ease;
}
.password-input-wrapper {
    position: relative;
}
.password-toggle-btn {
    position: absolute;
    right: .75rem;
    top: 48%;
    border: none;
    background: none;
    color: #666;
    padding: .25rem;
    z-index: 5;
    width: auto;
    height: auto;
}
.password-toggle-btn:hover, .password-toggle-btn:focus {
    color: #333;
    background: none;
    box-shadow: none;
}
/* About page */
.upholding-dharma {
    color: #011659;
}
.card {
    transition: transform .3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.flagship {
    color: #fd7e14;
}
/* Gallery page */
.gallery-img {
    height: 200px;
    object-fit: cover;
    transition: transform .3s ease;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.03);
}
/* Contact page */
.contact-wrap {
   border-radius: 25px;
   background: linear-gradient(145deg, rgb(255, 255, 255) 0%, rgb(248, 249, 250) 100%);
}
.contact-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 32px;
}
.divider {
    width: 2px;
    background: linear-gradient(rgb(102, 126, 234), rgb(118, 75, 162));
    opacity: 0.3;
}

/* Join Page */
.flagBackgroundGradiant {
    background: linear-gradient(135deg,#ff5733,#ff8d1a,#ffc300);
}
.pt-110 {
   padding-top: 110px;
}

/* Current Projects page */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}
.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#2c3e50,#34495e);
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.project-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px #2c3e501f;
    overflow: hidden;
    transition: all .4s ease;
    background: #fff;
    position: relative;
}
.card-image-container {
    position: relative;
    overflow: hidden;
}
.card-img-top {
    object-fit: cover;
}
.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .4s ease;
    filter: grayscale(20%) contrast(110%);
}
.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: .8rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: .8rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}
.project-body {
    padding: 2rem;
}
.learn-more-btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    transition: all .3s ease;
    background: transparent;
}
.learn-more-btn:hover {
    background: #2c3e50;
    border-color: #2c3e50;
    color: #fff;
    transform: translate(5px);
}
.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.detail-item {
    display: flex;
    align-items: center;
    color: #495057;
    font-size: .9rem;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}
.hostels-list {
    margin-bottom: 30px;
}
.hostels-list ul, .features-list {
   list-style: disc;
   margin-left: 30px;
}
.features-list {
   margin-bottom: 15px;
}
.features-title {
   margin-bottom: 8px;
}
.features-title svg {
   margin-right: 8px;
}
.project-alignment {
   margin-bottom: 20px;
}
.detail-item svg {
   margin-right: 5px;
}
.project-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}
.project-card:hover .project-image {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(120%);
}
.news-sidebar {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px #2c3e501f;
    padding: 2rem;
    position: sticky;
    top: 100px;
}
.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.news-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px #2c3e5014;
    transition: all .3s ease;
    overflow: hidden;
}
.news-image-container {
    overflow: hidden;
}
.news-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform .3s ease;
    filter: sepia(10%);
}
.news-body {
    padding: 1rem;
}
.news-excerpt {
    font-size: .8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: .8rem;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: #868e96;
}
.news-date, .news-views {
    display: flex;
    align-items: center;
}
.meta-icon {
    margin-right: 4px;
    color: #2c3e50;
}
.sidebar-header {
    margin-bottom: 2rem;
    text-align: center;
}
.news-title {
    font-size: .9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: .5rem;
    line-height: 1.3;
}
.view-all-news-btn {
    width: 100%;
    border-radius: 25px;
    padding: 12px;
    font-weight: 600;
    background: linear-gradient(135deg,#2c3e50,#34495e);
    border: none;
    transition: all .3s ease;
}
.view-all-news-btn:hover {
    background: linear-gradient(135deg,#1a252f,#2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #2c3e504d;
}
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: .9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    color: #6c757d;
}
/* Upcoming Projects page */
.impact-banner {
    background: linear-gradient(135deg,#2c3e50,#34495e);
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}
.impact-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,transparent,rgba(255,255,255,.05),transparent);
    transform: translate(-100%);
    animation: shine 3s infinite;
}
.impact-label {
    font-weight: 700;
    font-size: .9rem;
    display: block;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.impact-text {
    font-size: 1rem;
    line-height: 1.4;
}
.border-card {
    border: none;
}
.custom-circle {
   width: 40px; 
   height: 40px; 
   position: absolute; 
   margin-left: -1%; 
   border: 2px solid rgb(255, 255, 255); 
   background-color:#FB8241; 
   font-size: 16px;
}
.custom-circle-active {
   background-color:#F35500; 
}
.circle-text {
   background-color: rgb(251, 130, 65);
    font-size: 16px;
    padding-left: 2rem;
}
.circle-text-active {
   background-color: rgb(243, 85, 0);
}
.donation-wrap .card-header {
   background-color: rgb(251, 130, 65);
   
}
.donation-wrap .card-header h6 {
   color: #fff !important;
   font-size: 18px;
}
.donation-amount {
   background-color: rgb(202, 202, 202);
    color: rgb(0, 0, 0);
    border: none;
    font-size: 16px;
}
.card-with-bg {
   background-color: rgb(246, 152, 102);
    border: none;
}
/* Donation page */



/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (min-width:1200px) {
   .flagship-slide {
      min-height: 1200px;
   }
   .flagship-text {
      padding: 4.5rem 3.5rem;
   }
   .flagship-badge {
      bottom: 32px;
      left: 32px;
   }
   .flagship-image {
      border-radius: 20px 0 0 20px;
   }
   .flagship-image img {
      max-height: 520px;
   }
   .moments-gallery-wrapper .title-wrapper p {
      max-width: 60%;
   }
   .custom-width {
      width: 80%;
      margin: auto;
   }
}
@media only screen and (min-width:768px) {
   .empowering-wrap .main-heading {
      max-width: 80%;
   }
   .flagship-slide {
      grid-template-columns: 1fr 1fr;
      min-height: 450px;
   }
   .flagship-text {
      border-radius: 0 20px 20px 0;
      padding: 3rem 2.5rem;
   }
   .event-schedule-text {
      max-width: 73%;
   }
   
   .blog-wrapper .main-heading, .partners-wrapper .main-heading {
      font-size: 40px;
   }
   .blog-wrapper .swiper-pagination {
      display: none;
   }
}
@media only screen and (max-width:1440px) {
   .header .navbar-nav .nav-link {
      font-size: 14px;
   }
   .header .btn-block .btn {
      font-size: 14px;
   }
   .header .btn-block {
      width: 27% !important;
   }
   .blog-swiper-slider .swiper-button-next {
      right:20px;
   }
   .blog-swiper-slider .swiper-button-prev {
      left:20px;
   }
   .empowering-wrap {
      min-height: 700px;
   }
   .custom-card .main-heading {
      padding-right: 48px;
   }
   .custom-card {
      min-height: 535px;
   }
  
   .goal-list li {
      padding: 10px 0;
   }
   .goal-list li span {
      font-size: 14px;
   }
}
@media only screen and (max-width:1024px) {
    .next-goal-list.goal-list li span {
      white-space: inherit;
   }
   .empowering-wrap {
      min-height: 682px;
   }
   .flagship-image img {
      max-height: 450px;
   }
   .flagship-image {
      border-radius: 20px 0px 0 0;
   }
   .header .btn-block {
      width: 100% !important;
      flex-direction: column;
   }
   .moments-grid {
      flex-wrap: nowrap;
      gap: 5px;
   }
   .grid-column {
      min-width: 240px;
   }
   .sidebar .swiper-slide img {
      min-height: 674px;
   }
   .footer .quick-links p, .footer .quick-links-container .row {
      margin-left: 1rem !important;
   }
   .newsletter-style {
      flex-wrap: wrap;
      gap: 1rem;
   }
   .newsletter-style .form-control, .newsletter-style .btn-primary {
      border-radius: 0.375rem !important;
   }
   .Footer-Bottom p {
      font-size: 16px !important;
   }
   .newsletter-style .btn {
      font-size: 16px !important;
   }
   .events-wrapper {
      margin: 0 15px;
   }
   .timeline-wrapper {
      overflow-x: hidden;
   }
   /* Mobile Navigation */
   .offcanvas-body {
      padding: 0;
   }
   .offcanvas-header {
      border-bottom: 2px solid #ff5733;
      margin-bottom: 15px;
   }
   .header .nav-item {
      width: 100%;
      text-align: left;
      border-bottom: 1px solid rgba(0,0,0,.1);
      padding-bottom: 10px;
   }
   .offcanvas-header .btn-close {
      position: absolute;
      right: 20px;
      top: 20px;
   }
   .navbar-nav .dropdown-menu {
      width: 96%;
      margin-left: 2%;
   }
   .offcanvas {
      --bs-offcanvas-width:310px;
   }
   .header .btn-block {
      flex-direction: row;
      justify-content: flex-start;
      padding: 15px;
   }
   .header .navbar-nav .nav-link {
      margin: 0 5px;
   }
   .header .dropdown-toggle::after {
      position: absolute;
      right: 15px;
      top: 14px;
   }
   .navbar-toggler-icon {
      border: 1px solid #666;
      border-radius: 5px;
      background-size: 80%;
   }
}
@media screen and (max-width:992px) {
   .custom-width {
      width: 95%;
   }
}
@media screen and (max-width:820px) {
   .moments-grid {
      flex-wrap: wrap;
   }
}
@media only screen and (max-width:768px) {
   .timeline-content, .timeline-image {
      position: relative!important;
      width: 76%!important;
      left: auto!important;
      right: auto!important;
      top: auto!important;
      margin: 0 0 20px 70px!important;
   }
   .timeline-year {
      left: 30px;
      transform: translate(-50%);
      font-size: 18px;
      padding: 8px 15px;
   }
   .timeline-item {
      margin-bottom: 80px;
      min-height: auto;
   }
   .timeline-item:before {
      left: 30px;
      margin-left: -10px;
   }
   .timeline:before {
      left: 30px;
   }
   .moments-grid {
      display: inline-block;
      width: 100%;
   }
   .column-wrapper .image-container +  .image-container {
      height: auto;
   }
   .moments-grid .abcd {
      margin-top: 0;
   }
   .moments-grid .image-container {
      margin-top: 0 !important;
   }
   .moments-grid .image-container img {
      margin-top: 0 !important;
   }
   .footer-section h3 {
      padding-left: 0 !important;
      margin-top: 0 !important;
   }
   .right-footer a, .left-footer a {
      font-size: 16px !important;
   }
   .footer .quick-links p, .footer-section h3 {
      font-size: 18px !important;
      font-weight: bold;
   }
   .footer-section h2 {
      font-size: 25px !important;
   }
   .empowering-wrap {
      min-height: 814px;
   }
   .card-content .btn {
      padding: 8px 15px;
   }
   .flagship-btns {
      justify-content: flex-start !important;
   }
   .timeline-wrapper .main-heading, .main-heading, .white-title {
      font-size: 32px;
   }
   .white-subtitle {
      font-size: 25px;
   }
   .login-image-section {
      min-height: 200px;
   }
   .login-modal-custom .modal-dialog {
      margin: 1rem;
      max-width: none;
   }
   .section-title {
      font-size: 2rem;
   }
   .custom-width {
      width: 100%;
      padding: 0 15px;
   }
}
@media only screen and (max-width:767px) {
   .about-us-container {
      padding: 20px !important;
   }
   .flagship-image img {
      min-height: 450px;
   }
   .flagship-image .flagship-badge img {
      min-height: inherit;
   }
   .wrapper {
      padding-bottom: 100px;
   }
   .angled-content {
      flex-wrap: wrap;
      gap: 2rem;
   }
   .angled-section {
      transform: translate(-50%, -27%) !important;
   }
   .footer {
      padding-top: 125px !important;
   }
   .footer .footer-section {
      width: 100% !important;
      padding: 0 20px !important;
      margin: 0 !important;
   }
   .footer-section h3 {
      margin:15px 0 0 !important;
      padding: 0 !important;
   }
   .quick-links-container {
      border: none;
      margin: 0;
   }
   .quick-links {
      margin: 0 !important;
   }
   .quick-links-container .row {
      margin: 0 !important;
   }
   .quick-links p {
      margin: 0 0 15px !important;
   }
   .angled-content .main-title{
      font-size: calc(1.325rem + .9vw) !important;
   }
   .partner-card {
      margin-bottom: 30px;
   }
   .custom-card {
      margin-bottom: 30px;
   }
   .blog-swiper-slider .swiper-button-next, .blog-swiper-slider .swiper-button-prev {
      display: none;
   }
   .blog-swiper-slider {
      padding: 0;
   }
   .blog-wrapper .swiper-pagination {
      bottom: 130px;
   }
   .footer .quick-links p, .footer .quick-links-container .row {
      margin-left: 0 !important;
   }
   .footer .footer-section h3 {
      margin-top: 2rem !important;
   }
   .empowering-wrap .btn {
      margin-bottom: 50px;
   }
   .empower-right {
      margin-top: 30px;
   }
   .segment-label {
      bottom: 0;
   }
   .goal-list li span {
      font-size: 14px !important;
   }
   .flagship-swiper .swiper-pagination-bullet {
      width: 8px !important;
      height: 8px !important;
   }
   .flagship-text {
      min-height: 390px;
   }
   .step-circle {
      position: relative;
   }
   .circle-text {
      padding: 20px 10px 10px !important;
      line-height: 1.1;
      min-height: 85px;
      text-align: center;
   }
   .custom-circle {
      top: -23px;
      left: 30%;
   }
}
@media only screen and (max-width:425px) {
   .study-center-total .col {
      width: 28.666667%;
   }
}