.body{
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
 
/*** Spinner End ***/


/*** Common CSS Start ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.display-4,
.display-5,
.display-6 {
    font-weight: 600;
}

.wow,
.animated {
    animation-duration: 2s !important;
}
/*** Common CSS End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: 0;
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.btn-border-radius {
    border-radius: 25% 10%;
}

.img-border-radius {
    border-radius: 50% 20% / 10% 40%;
}

.title-border-radius {
    border-radius: 10% 30%;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .top-info {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.topbar .top-link a:hover {
    background: var(--bs-secondary) !important;
}

.topbar .top-link a:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: #ffffff;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        font-weight: 400;
        font-family: 'Fredoka', sans-serif;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/


/*** Hero Header ***/
/*.hero-header,*/
/*.page-header {*/
/*    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05)), url(../img/home/05.png);*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*}*/

.hero-header,
.page-header {
    position: relative;
    background: url(../img/home/05.png) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-header::before,
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 1;
}

.hero-header > *,
.page-header > * {
    position: relative;
    z-index: 2; /* Ensures content appears above the overlay */
}




/*** Hero Header ***/


/*** About Start ***/
.video {
    position: relative;
    height: 416px;
    min-height: 300px;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/home/about.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.video.border {
    border-radius: 50% 20% / 10% 40%;
}

.about {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.team1{
     background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8)),url(../img/footerbackground.jpg);
    /* background-image: url(../img/footerbackground.jpg);  */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*** About End ***/


/*** service Start ***/
.service {
    background: linear-gradient(#ffffff, #aed5f5);
}

.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    width: 100%;
    height: 100%;
    border-radius: 50% 20% / 10% 40%;
    transition: 0.5s;
    position: relative;
}

.service-content::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
    background: transparent;
    border-radius: 50% 20% / 10% 40%;
    transition: .5s;
}

.service-item:hover {
    border: 1px solid var(--bs-secondary) !important;
}

.service-item:hover .service-content::after {
    background: var(--bs-secondary);
    width: 100%;
    opacity: 1;
    z-index: 1;
}

.service-item .service-content .service-content-inner {
    position: relative;
    z-index: 2;
}

.service-item .service-content-inner i,
.service-item .service-content-inner p,
.service-item .service-content-inner a.h4 {
    transition: 0.5s;
}

.service-item:hover .service-content-inner i,
.service-item:hover .service-content-inner p {
    color: var(--bs-white) !important;
}
.service-item:hover .service-content-inner a.h4 {
    color: #956210;
}

.service-item:hover .service-content-inner a.btn-primary {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.service-item .service-content-inner a.btn-primary:hover {
    background: #956210 !important;
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Programs Start ***/
.program {
    background: linear-gradient(#aed5f5, #FFFFFF);
}

.program .program-item .program-img .program-rate {
    position: absolute;
    width: 100px; 
    top: -20px; 
    left: 50%; 
    margin-left: -50px; 
    border-radius: 10% / 50%;
}

.program .program-item .program-text {
    padding-top: 150px; 
    margin-top: -125px;
}

.program .program-item .program-img img,
.program .program-item .program-teacher img,
.program .program-item:hover .program-text-inner a.h4 {
    transition: 0.5s;
}

.program .program-item:hover .program-img img,
.program .program-item:hover .program-teacher img {
    transform: scale(1.2);
}

.program .program-item:hover .program-text-inner a.h4 {
    color: #956210 !important;
}
/*** Programs End ***/


/*** Events Start ***/
.events .events-item {
    width: 100%;
    height: 100%;
    border-radius: 30%;
    position: relative;
}

.events .events-item .events-inner .events-rate {
    position: absolute;
    width: 120px; 
    top: -20px; 
    left: 50%; 
    margin-left: -60px; 
    border-radius: 10% / 50%;
}

.events .events-item .events-inner .events-img .event-overlay {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

.events .events-item .events-inner .events-img:hover .event-overlay {
    opacity: 1;
}

.events .events-item .events-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(105, 185, 251, 0.7);
    border-radius: 10px;
    transition: 0.5s;
}

.events .events-item:hover .events-img::after {
    height: 100%;
    opacity: 1;
}

.events .events-item .events-text a.h4,
.events .events-item .events-img img {
    transition: 0.5s;
}

.events .events-item:hover .events-text a.h4 {
    color: var(--bs-primary) !important;
}

.events .events-item:hover .events-img img {
    transform: scale(1.3);
}
/*** Events End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(77, 101, 249, .7);
    border-radius: 10px 10px 0 0;
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
    opacity: 1;
}

.blog .blog-item .blog-date-comments {
    padding-top: 150px !important; 
    margin-top: -125px;
}

.blog .blog-item .blog-img img,
.blog .blog-item .blog-content img,
.blog .blog-item .blog-text-inner a.h4 {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-content img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-text-inner a.h4 {
    color: var(--bs-primary);
}
/*** Blog End ***/



/*** Team Start ***/
.team .team-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.team .team-item .team-icon {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
}

.team .team-item .team-icon a.share-link {
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-icon a.share-link {
    opacity: 1;
}

.team .team-item .team-content,
.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    background: #aed5f5 !important;
    border-radius: 0 0 10px 10px;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content p {
    color: var(--bs-dark) !important;
}
/*** Team end ***/


/*** testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
    
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-secondary);
}
/*** testimonial End ***/


/*** Footer Start ***/
.footer {
   /* background-image: url(../img/footerbackground.jpg) ; */
    background: linear-gradient(rgba(255, 255, 255, .42), rgba(255, 255, 255, 1)), url(../img/footerbackground.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-galary-img img {
    width: 100%;
    border-style: dotted; 
    border-color: var(--bs-primary);
    transition: 0.5s;
}

.footer .footer-galary-img img:hover {
    transform: scale(1.2);
}

.footer-item a.text-body:hover {
    color: var(--bs-secondary) !important;
}
/*** Footer End ***/


.imglogo{
    width: 70px;
}

/* couter */
.stats-container {
    background-color: #182a95;
    color: white;
    padding: 40px 0;
    text-align: center;
}
.stats-header img {
    max-width: 100%;
    height: auto;
}
.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.stat {
    flex: 1;
    margin: 0 10px;
}
.stat h2 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
}
.stat p {
    font-size: 20px;
    margin: 0;
}.tabs {
    display: flex;
    justify-content: space-around;
}
.tabs div {
    flex: 1;
    text-align: center;
    padding: 40px;
    cursor: pointer;
    color: white;
}
.tabs div:hover {
    background-color: #003366;
}
.content-section {
    display: none;
    padding: 40px;
    font-size: 18px;
    line-height: 1.6;
    background-color: #f4f4f4;
    text-align: justify;
}
.content-section.active {
    display: block;
}
h2 {
    color: #003b6f;
    font-size: 28px;
    margin-bottom: 10px;
}
.content-image {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}
.amenities{
    margin-top: 60px;
    border-style:outset;
}
.activities-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.activities-content {
    max-width: 50%;
}

.activities-content h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.activities-content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff6f5a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #e65c49;
}

.author {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    margin: 0;
    color: #ff6f5a;
    font-size: 1.1em;
}

.author-info p {
    margin: 0;
    color: #999;
    font-size: 0.9em;
}

.activities-images {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.main-image {
    border-radius: 50%;
    overflow: hidden;
    width: 300px;
    height: 300px;
    border: 8px solid #ffe4e4;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-images {
    display: flex;
    gap: 10px;
}

.small-images img {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    border: 4px solid #ffe4e4;
    object-fit: cover;
    margin-top: -64px;
}

.container1 {
    position: relative;
    max-width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fdf5e6;
  }

  .center-circle-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #fdf5e6;
    border: 3px solid #e4d9c0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
  }

  .center-circle h1 {
    color: #a33;
    font-size: 32px;
  }

  .circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }

  .circle img {
    width: 100%;
    height: 100%;
  }

  .circle-text {
    position: absolute;
    width: 150px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
  }

  .circle:nth-child(2) { top: 12%; left: 54%; transform: translateX(-50%); }
  .circle:nth-child(3) { top: 40%; left: 31%; }
  .circle:nth-child(4) { top: 31%; right: 32%; }
  .circle:nth-child(5) { bottom: 20%; left: 37%; }
  .circle:nth-child(6) { bottom: 28%; right: 33%; }
  .circle:nth-child(7) { bottom: 16%; left: 53%; transform: translateX(-50%); }

  .circle-text:nth-child(8) { top: 150px; left: 50%; transform: translateX(-50%); }
  .circle-text:nth-child(9) { top: 58%; left: 30%; }
  .circle-text:nth-child(10) { top: 49%; right:31%; }
  .circle-text:nth-child(11) { bottom: 13%; left: 36%; }
  .circle-text:nth-child(12) { bottom: 64%; right: 40%; }
  .circle-text:nth-child(13) { bottom: 21%; right: 31%; }
  .circle-text:nth-child(14) { bottom: 9%; left: 54%; transform: translateX(-50%); }

  .our {
           
    background-color: #956210; /* Orange background */
}

.our .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.our .section {
    background-color: #c5e1e6; /* Light blue background */
    width: 45%;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.our .belief-section {
    background-color: #f4d09f; /* Light yellow background */
}

.our h2 {
    font-size: 28px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    color: #457b9d; /* Matching text color */
}
.our h4 {
     /*font-size: 28px;*/
    text-align: center;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    color: #457b9d; /* Matching text color */
    margin-bottom: 20px;
}
.our p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.img-motion {
    animation: upDown 2s infinite;
    margin-left: 20%;
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Moves the image up */
    }
    100% {
        transform: translateY(0); /* Returns to the original position */
    }
}
.testimonials-section {
    padding: 50px 0;
  }
  .testi-block {
    background: #f0f0f0;
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .testi-block img {
    max-width: 100%;
    /* border-radius: 50%; */
  }

/* .container-fluid.py-5.about.bg-light{
    background-image: url(../img/footerbackground.jpg);
} */
.fee-structure{
    padding: 30px 0px 30px 0px;
}
table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: white;
    border: 1px solid black;
}
.table-title .th, td {
    border: 1px solid black;
    padding: 15px;
    text-align: center;
}
.table-title.th {
    background-color: #f2f2f2;
}
.highlight {
    background-color: yellow;
    font-weight: bold;
}
.table-title {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin: 20px 0px 20px 0px;
}
.annual-charges {
    font-weight: bold;
    color: red;
    padding: 2px;
    text-align: center;
}
.pre-middle, .secondary {
    background-color: yellow;
}
.section-title {
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
.pre-wing {
    color: orange;
    font-weight: bold;
}
.first-fifth, .sixth-eighth, .ninth-tenth {
    color: green;
    font-weight: bold;
}
.container-list {
    display: flex;
    align-items: flex-start;
}
.documents-list {
    margin-right: 20px;
}
.card-cls{
flex: 1 1 auto;
padding: 1rem 1rem; 
text-align: center;   
}

/* transfer */
.card-transfer {
    width: 80% !important;
    margin: 40px auto !important;
    padding: 20px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    background-color: #fff !important;
    border: 1px solid #ddd !important;
}

/* Transfer Table Styles */
.transfer table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 20px;
    background-color: #f9f9f9;
}

.transfer th, .transfer td {
    border: 1px solid #ddd;
    padding: 10px !important;
    text-align: left !important;
}

.transfer th {
    background-color: #f2f2f2 !important;
    font-weight: bold!important;
}

/* Transfer Button Styles */
.transfer .download-btn {
    background-color: #28a745 !important;
    color: white !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    transition: background-color 0.3s ease !important;
}

.transfer .download-btn:hover {
    background-color: #218838;
}
/* responsive */
@media only screen and (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .activities-content {
        width:100%;
    }
}


    .text-content {
        width: 100%; /* Ensures the text doesn't exceed screen width */
    }
    .our .section {
        width: 100%;
        margin:0px;
        margin-top: 20px;
    }
    .container1{
        display: none;
    }
    .container-fluid.prog.py-5{
        display: none;
    }
    .activities-images{
        display: none;
    }

        /* Card Container */
    .card-container 
    {
        display: flex;
        gap: 20px; /* Space between cards */
        flex-wrap: wrap; /* Allows cards to wrap on small screens */
        justify-content: center;
        max-width: 100%; /* Prevents cards from stretching too wide */
        padding: 50px;
        background-color:#956210 ;
    }

    .card
    {
        flex: 1 1 250px; /* Flexible width, minimum 250px */
        /*max-width: 300px;  Prevents cards from becoming too wide */
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 20px;
        text-align: center;
    }

   

        /* Responsive Design */
    @media (max-width: 600px)
    {
        .card-container
        {
            flex-direction: column; /* Stack cards on small screens */
            align-items: center;
        }

        .card
        {
            width: 100%; /* Cards take full width */
            max-width: 90%; /* Maintain some margin */
        }
    }
.popup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100000000000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

/* Show popup with fade-in effect */
.popup.show {
    opacity: 1;
    visibility: visible;
}

/* Popup Content (Image) */
.popup img {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid white;
    border-radius: 10px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: red;
}

        /* Card Container */
    .card-container-team 
    {
        display: flex;
        gap: 20px; /* Space between cards */
        flex-wrap: wrap; /* Allows cards to wrap on small screens */
        justify-content: center;
        max-width: 100%; /* Prevents cards from stretching too wide */
        padding: 50px;
        background-color:#956210 ;
    }

    .card-team
    {
        flex: 1 1 250px; /* Flexible width, minimum 250px */
        /*max-width: 300px;  Prevents cards from becoming too wide */
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 20px;
        text-align: center;
        margin:20px 10px;
    }
    .card-team p{
        /*align-content: justify;*/
        text-align: justify;
    }
    .card-team img{
        max-width: 200px;
    }
    
    .card-container-team .card-team img{
    max-width: 200px;
    border-radius: 50%;
    border: 2px solid #f60c0c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
        /* Responsive Design */
    @media (max-width: 600px)
    {
        .card-container-team
        {
            flex-direction: column; /* Stack cards on small screens */
            align-items: center;
        }

        .card-team
        {
            width: 100%; /* Cards take full width */
            max-width: 90%; /* Maintain some margin */
        }
    } 

    .gallery-section {
      padding: 60px 20px;
      background-color: #f9f9f9;
      text-align: center;
    }

    .gallery-title {
      /*font-size: 32px;*/
      margin-bottom: 40px;
      /*color: #333;*/
      /*text-transform: uppercase;*/
    }

    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border: 3px solid black;
      border-radius: 8px;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      transition: transform 0.4s ease;
      display: block;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 999;
      top: 25px!important;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80vh;
      border: 5px solid white;
      border-radius: 10px;
    }

    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 30px;
      color: white;
      font-weight: bold;
      cursor: pointer;
    }

    .lightbox-controls {
      margin-top: 20px;
      display: flex;
      gap: 20px;
    }

    .lightbox-btn {
      background-color: white;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .lightbox-btn:hover {
      background-color: #ddd;
    }