/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Top Bar ***/
.top-bar {
    height: 100px;
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-dark);
    /*font-size: 18px;*/
    font-size: 16px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    /*font-size: 18px;*/
    font-size: 16px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px 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(2);
        opacity: 0;
    }
}

#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-size: 26px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    /*font-size: 14px;*/
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}


/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}



/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /*font-size: 18px;*/
    font-size: 16px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}



/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95)), url(../img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/********** Custom CSS(Added by Kunal Verma)  **********/

.video-section {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 70vh;
  z-index: 1;
}

@media (max-width: 768px) {
    .video-section {
      position: relative;
      height: 36vh;
      width: 100%;
      overflow: hidden;
    }
    
    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 36vh;
      object-fit: cover;
      z-index: 1;
    }
}

@media (max-width: 480px) {
    .video-section {
      position: relative;
      height: 34vh;
      width: 100%;
      overflow: hidden;
    }
    
    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 34vh;
      object-fit: cover;
      z-index: 1;
    }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  z-index: 2;
  display: flex;
  
}


.overlay-content {
  color: #fff;
  padding: 0.5rem;
  z-index: 3;
  margin-top: 2%;
}


@media (max-width: 768px) {
    .overlay-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        align-items: center;
        margin-top: 1%;
        color: #fff;
        z-index: 3;
    }
}


.overlay-content h1 {
  /*font-size: 3rem;*/
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .overlay-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        margin-top: 1%;
        color: #fff;
        z-index: 3;
    }
}

.overlay-content p {
  /*font-size: 1.25rem;*/
  font-size: 1.1rem;
  margin-bottom: 2rem;
  width: 60%;
}

@media (max-width: 768px) {
    .overlay-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .overlay-content p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        width: 100%;
    }
}





.overlay-content .btn {
  background: #ffffff;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
}


.uniform-img {
  height: 70vh;
  width: auto;
  object-fit: cover;
}

.read-more-box {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Show only 4 lines */
  -webkit-box-orient: vertical;
}

.bullet-small {
    /*font-size: 0.75rem;*/
    font-size: 0.65rem;
}

.pricing-content {
    /*font-size: 0.9rem;*/
    font-size: 0.8rem;
}

.pricing-head {
    /*font-size: 1.2rem;*/
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    #amenitiesModal .ratio-16x9 {
        height: 40vh;
        overflow-y: auto;
    }
}

.read-more-about {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-title-overlay {
  position: relative;
  top: -30px;
  background-color: white;
  padding: 10px 20px;
  border-radius: 3px;
  width: fit-content;
  margin: -20px auto 10px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  margin-bottom: 0px !important;
}

/*Gallery Starts*/
.gallery-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio (can change to 100% for square) */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}
/*Gallery Ends*/

.full-size-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Optional */
}

.about-banner-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

@media (max-width: 768px) {
    .about-banner-section {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
}

@media (max-width: 480px) {
    .about-banner-section {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
}

/* Working */
.hero-image {
  width: 100%;
  height: 70vh; /* full screen height */
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
    .hero-image {
        height: 45vh;
    }

    .hero-image img {
        object-position: center center;
        height: 45vh;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 30vh;
    }

    .hero-image img {
        object-position: center center;
        height: 30vh;
    }
}




/* Temp */

.hero-image-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  z-index: 2;
  display: flex;
  
}


.hero-image-overlay-content {
  color: #fff;
  padding: 0.5rem;
  z-index: 3;
  margin-top: 2%;
  align-items: center;
  /*margin-top: 8%;*/
}


@media (max-width: 768px) {
    .hero-image-overlay-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        align-items: center;
        margin-top: 1%;
        color: #fff;
        z-index: 3;
    }
    .hero-image-section-height {
        height: 45vh;
    }
}


.hero-image-overlay-content h1 {
  /*font-size: 3rem;*/
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .hero-image-overlay-content h1 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        margin-top: 1%;
        color: #fff;
        z-index: 3;
    }
    .hero-image-section-height {
        height: 30vh;
    }
}

.hero-image-overlay-content p {
  /*font-size: 1.25rem;*/
  font-size: 1.1rem;
  margin-bottom: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
    .hero-image-overlay-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-image-overlay-content p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        width: 100%;
    }
}

.hero-image-overlay-content .btn {
  background: #ffffff;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
}

.hero-facts {
    margin-top: 1rem;
}

.hero-facts span {
    /*font-size: calc(1rem + 0.6vw);*/
    font-size: calc(0.9rem + 0.6vw);
    
}

.hero-facts p {
    /*font-size: 0.9rem;*/
    font-size: 0.8rem;
    border-top: 1px solid #051311;
    padding-top: 5px;
}


@media (max-width: 768px) {
    .hero-facts {
        margin-top: 0.5rem;
    }
    .hero-facts span {
        font-size: calc(0.8rem + 0.6vw);
    }
    .hero-facts p {
        font-size: 0.9rem;
        border-top: 1px solid #051311;
        padding-top: 3px;
    }
}

@media (max-width: 480px) {
    .hero-facts {
        margin-top: 0.5rem;
    }
    .hero-facts span {
        font-size: calc(0.8rem + 0.6vw);
    }
    .hero-facts p {
        font-size: 0.8rem;
        border-top: 1px solid #051311;
        padding-top: 2px;
    }
}

p.inline-border {
  display: inline-block;
  border-top: 1px solid #051311;
  padding-top: 5px;
  margin: 0; 
}

#course-categories .category-item {
  cursor: pointer;
  border: 1px solid #ddd;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

#course-categories .category-item.active {
  font-weight: 600;
}

#load-more {
  min-width: 160px;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
}

.breadcrumb-text {
    margin-top: 2rem;
}

.breadcrumb-image {
    height: 60vh;
}

@media (max-width: 480px) {
    .breadcrumb-text {
        margin-top: auto;
    }

    .breadcrumb-image {
        height: auto;
    }
}

/* Added on 08 Nov 2025 */
/* --- Swiper Gallery Styles --- */
.swiper {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  width: 25% !important; /* 4 slides per row */
  padding: 10px;
  box-sizing: border-box;
}

/* Card style wrapper */
.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1; /* Makes the image square */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image fits uniformly */
.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional: responsive layout for smaller screens */
@media (max-width: 992px) {
  .swiper-slide { width: 33.3333% !important; }
}
@media (max-width: 768px) {
  .swiper-slide { width: 50% !important; }
}
@media (max-width: 576px) {
  .swiper-slide { width: 100% !important; }
}

/* Exam title */
.exam-title {
    text-align: center;
    margin-bottom: 20px;
}

/* Main exam container */
.exam-container {
    margin-bottom: 1.5rem;
}

/* Question number */
.question-number {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Question text */
.question-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.exam-option-label {
    display: block;
    margin: 5px 15px; /* top/bottom = 5px, left/right = 15px */
    cursor: pointer;
}

/* Options */
.options-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left :10px;
    padding-left :10px;
}

.options-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    cursor: pointer;
}

/* Navigation buttons container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Buttons */
.nav-btn {
    background: var(--bs-secondary);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Progress section */
.progress-container {
    text-align: center;
    font-weight: bold;
    user-select: none;
}

/* Progress bar background */
.progress-bar-bg {
    margin-top: 5px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress bar fill */
.progress-bar {
    height: 8px;
    width: 0;
    background: var(--bs-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}


/* Seat Selection */
    .seat {
        border: 2px solid #1e8e3e; /* green outline */
        border-radius: 12px;
        background: #fff;
        text-align: center;
        cursor: pointer;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 12px 8px;
        transition: all 0.2s ease;
    }

    .seat-disabled {
        border-color: #f2b8c6;
        background: #f5f5f5;
        cursor: not-allowed;
        pointer-events: none;
        opacity: 0.75;
    }
/* Seat Selection */




/* Form wrapper */
.subscriber-form {
    width: 100%;
}

/* 3-column grid */
.subscriber-form .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

/* Individual field */
.subscriber-form .form-field {
    display: flex;
    flex-direction: column;
}

/* Labels */
.subscriber-form label {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Inputs and selects full width */
.subscriber-form input,
.subscriber-form select {
    width: 100%;
    box-sizing: border-box;
}

/* Optional: make last field (Expiry Date) full width */
.subscriber-form .form-field:last-child {
    grid-column: 1 / -1;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
    .subscriber-form .form-grid {
        grid-template-columns: 1fr;
    }
}
