/* Reset and Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #f6f7f9;
}
/* Custom Colors */ :root {
  --maroon: #6C1134;
  --maroon-dark: #600000;
  --dark-blue: #1a1a4b;
  --bg-light: #f9f9f9;
}
.text-maroon {
  color: var(--maroon) !important;
}
.bg-maroon {
  background-color: var(--maroon) !important;
}
.bg-dark-blue {
  background-color: var(--dark-blue) !important;
}
/* Buttons */
.navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.btn-login {
  background-color: var(--dark-blue);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}
.btn-login:hover {
  background-color: #2a2a6b;
  color: white !important;
}
.btn-maroon {
  background-color: var(--maroon);
  color: white;
  border: none;
  transition: 0.3s;
}
.btn-maroon:hover {
  background-color: var(--maroon-dark);
  color: white;
}
.btn-outline-maroon {
  border: 2px solid var(--maroon);
  color: var(--maroon);
  font-weight: 600;
  transition: 0.3s;
}
.btn-outline-maroon:hover {
  background-color: var(--maroon);
  color: white;
}
.btn-maroon-dark {
    background-color: #6C1134;
    color: white;
    border: none;
    width: max-content !important;
    font-weight: 600;
    white-space: nowrap;
    border: solid 1px #fff !important;
    padding: 0 25px;
}
.download-app-text .input-group input:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #13214B 0%, #293766 50%, #732339 100%);
    padding-bottom: 130px;
    padding-top: 80px;
}
.hero::after {
    background-image: url("../images/bottom-curv.png");
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    z-index: 0;
    bottom: -10px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    left: 0;
}
.hero .subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.8;
}
.study-card {
  border-radius: 20px !important;
  transition: transform 0.3s ease;
}
.study-card:hover {
  transform: translateY(-10px);
}
/* Stats Section */
.stat-icon {
    width: 50px;
    height: 50px;
    background-color: #6c11341c;
    color: #6C1134;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}
/* Why Choose Section */
.feature-card {
    transition: 0.3s;
    background-color: #F6F7F9;
    border: solid 1px #E2E4E9 !important;
    border-radius: 15px !important;
}
.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}
/* App Download Section */
.app-download {
  background: linear-gradient(135deg, #13214B 0%, #293766 50%, #732339 100%);
}
.app-download .input-group-text {
  border-right: 1px solid #eee !important;
}
/* Updates Section */
.nav-item .nav-link {
    background-color: #fff !important;
    color: #676F7E !important;
}
/* Testimonials */
.testimonial-card {
  border-radius: 15px !important;
}
/* Slick Slider Customization */
.slick-dots {
  bottom: -30px;
}
.slick-dots li button:before {
  color: var(--maroon);
  font-size: 10px;
}
.slick-dots li.slick-active button:before {
  color: var(--maroon);
}
.slick-prev:before, .slick-next:before {
  color: var(--maroon);
}
.extra-small {
  font-size: 0.75rem;
}
.opacity-10 {
  opacity: 0.1;
}
/* Banner Box */
.banner-box {
  background: linear-gradient(135deg, #13214B 0%, #293766 50%, #732339 100%);
}
.text-warning { 
    color: #6C1134;
    gap: 5px;
    display: flex;
}
/* Footer */
.footer a:hover {
  color: white !important;
  opacity: 1 !important;
}
h1.hero-heading {
    font-size: 40px;
    font-weight: 600 !important;
}
nav.navbar.navbar-expand-lg:before {
    background-image: url("../images/top-curv.png");
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    z-index: -1;
    top: 20px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
section.stats.py-5.bg-white {
    background-color: transparent !important;
    padding: 0 0 30px 0 !important;
}
.counter-section .col-md-4 {
    margin: 0;
}
.card-section {
    display: flex;
    justify-content: flex-start !important;
}
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0 !important;
}
.card-body a.btn.btn-maroon {
    width: max-content !important;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.card-body img {
    height: 300px;
    margin: 0 0 30px 0;
}
.card-body .text-muted {
    color: #000 !important;
}
.card-body .text-muted {
    color: #000 !important;
    font-size: 16px;
    line-height: normal;
}
section.why-choose {
    background-color: #fff;
}
.feature-card img {
    height: 170px;
    margin: 0 0 25px 0;
}
.inpt-secnt {
    display: flex;
    gap: 20px;
}
.download-app-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    justify-content: center;
}
.download-app-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.download-app-text .input-group span, .download-app-text .input-group input {
    background-color: transparent !important;
}
.download-app-text .input-group {
    border: solid 1px #fff;
    width: 450px;
    border-radius: 6px;
    max-width: 100%;
    padding: 10px 10px;
    display: flex;
    align-items: center;
}
.download-app-text .input-group span, .download-app-text .input-group input {
    color: #fff !important;
    padding: 5px 10px !important;
}
.download-app-text .input-group input::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}
.download-app-text h2 {
    margin: 0 0 5px 0 !important;
}
.download-app-text p {
    font-size: 18px;
    margin: 0 0 15px 0 !important;
}
.download-app-text .input-group input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #fff;
}
.download-app-text i {
    font-size: 14px;
    color: #ffffffb0;
    font-style: normal;
    margin: 0 0 15px 0;
}
.google-play a img {
    width: 150px;
}
.list-group.list-group-flush i {
    color: #6C1134 !important;
}
section.updates.py-5.bg-white {
    background-color: #F6F7F9 !important;
}
.updates .nav-item .nav-link {
    background-color: #fff !important;
    color: #676F7E !important;
    border: solid 1px #E2E4E9;
}
.updates .nav-item .nav-link.active {
    background-color: #150E5C !important;
    color: #fff !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .nav-link {
    padding: 0.8rem 0 !important;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  .btn-login {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-cards {
    margin-bottom: 2rem;
  }
.download-app-text .input-group {
    width: 400px;
}
	
}
@media (max-width: 768px) {
  .hero::after {
    height: 50px;
    bottom: -25px;
  }
  .stats .row > div:not(:last-child) {
    border-right: none !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 0;
  }
  .stats .row > div {
    border: none !important;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .app-download h2 {
    font-size: 1.75rem;
  }
  .banner-box {
    padding: 2rem !important;
  }
  .banner-box h2 {
    font-size: 1.5rem;
  }
.card-body img {
    height: 180px;
    margin: 0 0 30px 0;
    max-width: 100%;
}
.card-body .text-muted br {
    display: none;
}
	.card-body { 
    padding:30px !important;
}
	.hero h1 {
    font-size: 1.5rem;
    margin-bottom: 30px !important;
}
section.stats.py-5.bg-white {
    background-color: transparent !important;
    padding: 30px 0 30px 0 !important;
}
.download-app-section {
    display: flex;
    flex-direction: column;
}
.download-app-text .input-group {
    width: 100%;
}
	.download-app-text .row {
    width: 100%;
}
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero {
    padding-top: 3rem;
    padding-bottom: 20px;
}
	.inpt-secnt {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
button.btn.btn-maroon-dark.w-100.h-100 {
    padding: 10px 20px;
}
.updates .nav-item .nav-link {
    padding: 10px 20px !important;
}
.updates ul.nav.nav-pills {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: auto;
    justify-content: flex-start !important;
}
.updates .nav-item .nav-link {
    white-space: nowrap;
	font-size: 14px;
}
	.testimonials  .text-center.mb-5 {
    margin-bottom: 10px !important;
}
	section.testimonials.py-5.bg-light {
    padding-top: 0 !important;
}
	.testimonial-slider button.slick-arrow {
    display: none;
}
}
.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}



/* Online Call Page CSS */

/* Main Tabs */
#mainTab .nav-link {
    color: #333;
    border: 1px solid #dee2e6;
    border-bottom: none;
    margin: 0 5px;
    border-radius: 5px 5px 0 0;
}

#mainTab .nav-link.active {
    background-color: #f7e44b;
    border-color: transparent;
    color: #fff !important;
    font-weight: bold;
    background: #6c1134 !important;
}

/* Sub Tabs (Pills) */
#pills-tab .nav-link {
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 5px 25px;
    margin: 0 5px;
    font-weight: 500;
}

#pills-tab .nav-link.active {
    background-color: #2b2b2b;
    color: #fff !important;
    border-color: #2b2b2b;
    background-color: #1a1a4b !important;
}

.search-container .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 10;
}

.search-container input {
    width: 300px;
    padding: 10px 15px 10px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
}

/* Course Cards */
.card {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    border: solid 1px #ddd;
    transition: all 0.3s ease;
    padding: 10px;
}
.card img {
    border-radius: 5px;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #333;
}

.text-validity {
    font-size: 0.9rem;
    color: #6c1134;
    font-weight: 500;
}

.price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
}

.discount {
    font-size: 0.85rem;
    color: #6c1134;
    margin-left: 5px;
}

.original-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

/* Offline Card */
.offline-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.offline-card-body {
    padding: 15px;
}

.offline-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
}

.offline-card-body .details {
    list-style: none;
    padding: 0;
}

.offline-card-body .details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #555;
}

.offline-card-body .details li img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.offline-card-body .price {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #222;
}

.enroll-btn {
    background-color: var(--dark-blue);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    padding:10px 15px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

.enroll-btn:hover {
    background-color: #6c1134;
    transform: translateY(-2px);
}

/* Enroll Modal */
#enrollModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

#enrollModal .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 1rem;
}

#enrollModal .modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
}

#enrollModal .btn-close {
    background-color: #f0f0f0;
    border-radius: 50%;
    opacity: 0.8;
    padding: 10px;
    margin: -1rem -1rem 0 0;
}

#enrollModal .modal-body {
    padding: 1rem 2rem 2rem;
}

#enrollModal .form-label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #444;
    font-size: 0.95rem;
}

#enrollModal .form-control, #enrollModal .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    color: #333;
}

#enrollModal .form-control::placeholder {
    color: #aaa;
}

#enrollModal .input-group .btn-outline-secondary {
    border: 1px solid #e0e0e0;
    border-right: none;
    background-color: #fafafa;
    color: #555;
    font-weight: 600;
    border-radius: 10px 0 0 10px;
}

#enrollModal .input-group .form-control {
    border-radius: 0 10px 10px 0;
}
.offline-card img,.card img{
	max-width:100%;
}
.online-page-section .card-body {
    display: flex;
    align-items: flex-start;
}

.online-page-section .card-body {
    display: flex;
    align-items: flex-start;
}