/**
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/*----------------------------Our Team-----------------------*/
/* Team Tabs */

/* ===========================
PREMIUM TEAM TABS DESIGN
=========================== */
/* ===========================
SCHOOL BRAND TEAM TABS
=========================== */

.team-section{
    background:
        radial-gradient(circle at top left,#fff7ed,transparent 30%),
        radial-gradient(circle at bottom right,#fce7f3,transparent 35%),
        #fffaf5;

    padding:80px 0;
}

.team-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

    padding:25px;

    background:linear-gradient(
        135deg,
        #f97316 0%,
        #f59e0b 50%,
        #ec4899 100%
    );

    border-radius:25px;

    box-shadow:
        0 15px 35px rgba(249,115,22,.25),
        inset 0 1px 0 rgba(255,255,255,.25);

    position:relative;
    overflow:hidden;
}

/* Decorative circles */
.team-tabs::before{
    content:"";
    position:absolute;

    width:280px;
    height:280px;

    background:rgba(255,255,255,.10);

    border-radius:50%;

    top:-130px;
    left:-80px;
}

.team-tabs::after{
    content:"";
    position:absolute;

    width:220px;
    height:220px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    bottom:-100px;
    right:-60px;
}

/* Tab Buttons */
.team-tabs .nav-link{

    border:none;
    border-radius:50px;

    padding:14px 24px;

    font-weight:600;
    font-size:15px;

    color:#fff;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.20);

    transition:all .4s ease;

    white-space:nowrap;
}

.team-tabs .nav-link:hover{

    transform:translateY(-4px);

    background:rgba(255,255,255,.25);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    color:#fff;
}
/* Leadership Team */
.team-tabs .nav-item:nth-child(1) .nav-link.active{
    background:linear-gradient(135deg,#ec4899,#be185d);
    color:#fff;
}

/* UPRT */
.team-tabs .nav-item:nth-child(2) .nav-link.active{
    background:linear-gradient(135deg,#f59e0b,#f97316);
    color:#fff;
}

/* I-V */
.team-tabs .nav-item:nth-child(3) .nav-link.active{
    background:linear-gradient(135deg,#fb923c,#ea580c);
    color:#fff;
}

/* VI-VIII */
.team-tabs .nav-item:nth-child(4) .nav-link.active{
    background:linear-gradient(135deg,#ec4899,#f97316);
    color:#fff;
}

/* IX-X */
.team-tabs .nav-item:nth-child(5) .nav-link.active{
    background:linear-gradient(135deg,#f97316,#d946ef);
    color:#fff;
}

/* Admin */
.team-tabs .nav-item:nth-child(6) .nav-link.active{
    background:linear-gradient(135deg,#e11d48,#ec4899);
    color:#fff;
}
.team-tabs .nav-link.active{
    transform:translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.18),
        0 0 20px rgba(255,255,255,.20);

    font-weight:700;
}
/*.team-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    padding:15px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.team-tabs .nav-item{
    margin:0;
}

.team-tabs .nav-link{
    border:none;
    border-radius:50px;
    padding:12px 22px;
    font-weight:600;
    white-space:nowrap;
    background:#f5f7fa;
    color:#444;
    transition:all .3s ease;
}

.team-tabs .nav-link:hover{
    transform:translateY(-3px);
}

.team-tabs .nav-link.active{
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    color:#fff;
    box-shadow:0 8px 20px rgba(13,110,253,.25);
}
.team-tabs{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:12px;
}*/
/* Individual Tab Colors */
.leadership-bg{
    background:linear-gradient(135deg,#1e3c72,#2a5298);
}

.teacher-bg{
    background:linear-gradient(135deg,#00b09b,#96c93d);
}

.primary-bg{
    background:linear-gradient(135deg,#f7971e,#ffd200);
}

.middle-bg{
    background:linear-gradient(135deg,#8e2de2,#4a00e0);
}

.secondary-bg{
    background:linear-gradient(135deg,#ff512f,#dd2476);
}

.admin-bg{
    background:linear-gradient(135deg,#11998e,#38ef7d);
}
.team-card{
    border:none;
    border-radius:25px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .4s ease;
}

.team-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.team-img{
    width:130px;
    height:130px;
    border-radius:50%;
    border:6px solid #fff;
    object-fit:cover;
}

.team-body h5{
    font-size:1.15rem;
    font-weight:700;
}

.designation{
    color:#0d6efd;
    font-weight:600;
}

.qualification-badge{
    background:#eef5ff;
    color:#0d6efd;
    border-radius:30px;
    padding:8px 18px;
    display:inline-block;
    font-size:14px;
}

.team-tabs .nav-item:nth-child(1) .nav-link.active{
background:linear-gradient(135deg,#1e3c72,#2a5298);
}

.team-tabs .nav-item:nth-child(2) .nav-link.active{
background:linear-gradient(135deg,#00b09b,#96c93d);
}

.team-tabs .nav-item:nth-child(3) .nav-link.active{
background:linear-gradient(135deg,#f7971e,#ffd200);
}

.team-tabs .nav-item:nth-child(4) .nav-link.active{
background:linear-gradient(135deg,#8e2de2,#4a00e0);
}

.team-tabs .nav-item:nth-child(5) .nav-link.active{
background:linear-gradient(135deg,#ff512f,#dd2476);
}

.team-tabs .nav-item:nth-child(6) .nav-link.active{
background:linear-gradient(135deg,#11998e,#38ef7d);
}


/* Team Card */

.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;
    height:100%;
}

.team-card:hover{
    transform:translateY(-10px);
}

/* Header Background */

.team-header{
    height:120px;
    position:relative;
}

.leadership-bg{
    background:linear-gradient(135deg,#1e3c72,#2a5298);
}

.director-bg{
    background:linear-gradient(135deg,#8e2de2,#4a00e0);
}

.teacher-bg{
    background:linear-gradient(135deg,#00b09b,#96c93d);
}

/* Circular Image */

.team-img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #fff;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-60px;
}

/* Body */

.team-body{
    padding:75px 20px 25px;
}

.team-body h5{
    font-weight:700;
    margin-bottom:5px;
}

.designation{
    display:block;
    color:#0d6efd;
    font-weight:600;
    margin-bottom:12px;
}

.qualification-badge{
    display:inline-block;
    background:#eef5ff;
    color:#0d6efd;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.email-link{
    text-decoration:none;
    color:#555;
    font-size:14px;
}

.email-link i{
    color:#0d6efd;
    margin-right:5px;
}

.section-badge{
    background:#eef5ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

/*-----------------------------End Our Team------------------*/
/*---------------Press Releses--------------------------------*/
<style>

.gallery-tabs{
    margin-bottom:35px;
}

.gallery-btn{
    border:none;
    background:#f5f7fb;
    color:#0f3d75;
    padding:12px 24px;
    margin:6px;
    border-radius:50px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.gallery-btn:hover,
.gallery-btn.active{
    background:linear-gradient(135deg,#0f3d75,#1f5aa6);
    color:#fff;
    transform:translateY(-2px);
}

.press-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.press-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.press-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.press-title{
    padding:15px;
    text-align:center;
    font-weight:600;
    color:#0f3d75;
}

.gallery-item{
    transition:.4s;
}

</style>
/*---------------co-curricular Gallery----------------------*/
.gallery-card {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card h6 {
    padding: 12px;
    font-weight: 600;
    color: #0d6efd;
}
/*----------------------------Form CSS--------------*/
```css
.admission-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-label {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
}

.form-control:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 0.15rem rgba(245,158,11,.25);
}

.alumni-btn {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all .3s ease;
}

.alumni-btn:hover {
    background: linear-gradient(135deg, #ea580c, #d97706);
    color: #fff;
    transform: translateY(-2px);
}

/*-----------------btn css----------------------*/
.alumni-btn {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
    transition: all 0.3s ease;
}

.alumni-btn:hover {
    background: linear-gradient(135deg, #ea580c, #d97706);
    color: #fff;
    transform
}
.menu-heading{
    background: #eef4ff;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-top: 1px solid #dbe4ff;
    border-bottom: 1px solid #dbe4ff;
    margin-top: 8px;
}
#sakhi-savitri .section-badge{
    background: #fce7f3;
    color: #be185d;
}

#sakhi-savitri .anti-bullying-info{
    border-left: 5px solid #db2777;
}

#sakhi-savitri .pdf-download-btn{
    background: linear-gradient(135deg,#db2777,#ec4899);
}
/* PDF Download Card */

.pdf-download-card{
background:#ffffff;
border-radius:16px;
padding:35px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
border-top:5px solid #dc2626;
}

.pdf-icon{
width:90px;
height:90px;
margin:0 auto 20px;
background:#fef2f2;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.pdf-icon i{
font-size:48px;
color:#dc2626;
}

.pdf-download-card h4{
font-weight:700;
margin-bottom:15px;
color:#1f2937;
}

.pdf-download-card p{
max-width:600px;
margin:0 auto 25px;
color:#6b7280;
line-height:1.8;
}

.pdf-download-btn{
background:linear-gradient(135deg,#dc2626,#ef4444);
color:#fff;
border:none;
padding:14px 35px;
border-radius:50px;
font-weight:600;
text-decoration:none;
transition:all 0.3s ease;
}

.pdf-download-btn:hover{
color:#fff;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(220,38,38,0.25);
}

/* Anti Bullying Committee */

.anti-bullying-info{
background:#f8f0e3;
border-left:5px solid #ff8c00;
padding:25px 30px;
border-radius:12px;
}

.anti-bullying-info h4{
color:#ff8c00;
font-weight:700;
margin-bottom:15px;
}

.anti-bullying-info ul{
margin:0;
padding-left:20px;
}

.anti-bullying-info li{
margin-bottom:10px;
line-height:1.8;
}

.anti-table{
border-radius:12px;
overflow:hidden;
}

.anti-table thead{
background:linear-gradient(135deg,#16a34a,#22c55e);
color:#fff;
}

.anti-table th,
.anti-table td{
padding:15px;
vertical-align:middle;
}

.anti-table tbody tr:nth-child(even){
background:#f8fafc;
}

.anti-table tbody tr:hover

/* Admission Form */

.admission-form label {
font-weight: 600;
color: #333;
margin-bottom: 8px;
display: block;
}

.admission-form label span {
color: #dc2626;
}

.admission-form .form-control,
.admission-form .form-select {
height: 55px;
border-radius: 10px;
border: 1px solid #d1d5db;
padding: 10px 15px;
box-shadow: none;
}

.admission-form .form-control:focus,
.admission-form .form-select:focus {
border-color: #16a34a;
box-shadow: 0 0 0 0.15rem rgba(22,163,74,0.15);
}

.enquiry-btn {
background: linear-gradient(135deg,#ff8c00,#E5007D);
color: #fff;
border: none;
padding: 14px 40px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
transition: 0.3s;
}

.enquiry-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(22,163,74,0.25);
}

/*-------------------Fee Note---------------------*/
/* Fee Note */

.fee-note{
background:#f8f0e3;
border-left:5px solid #ff8c00;
padding:25px;
border-radius:12px;
}

.fee-note h5{
color:#ff8c00;
font-weight:700;
margin-bottom:15px;
}

.fee-note ul{
margin:0;
padding-left:20px;
}

.fee-note li{
margin-bottom:10px;
line-height:1.7;
}

/*-------------------End Fee Note-----------------*/
/* School Brochure */

.brochure-card {
background: #fff;
border-radius: 18px;
padding: 50px 30px;
box-shadow: 0 10px 35px rgba(0,0,0,0.08);
border-top: 5px solid #ff8c00;
}

.brochure-icon {
width: 100px;
height: 100px;
margin: 0 auto 25px;
background: #f8f0e3;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.brochure-icon i {
font-size: 50px;
color: #dc2626;
}

.brochure-card h3 {
font-weight: 700;
margin-bottom: 15px;
color: #1f2937;
}

.brochure-card p {
max-width: 650px;
margin: 0 auto 30px;
line-height: 1.8;
color: #666;
}

.brochure-btn {
background: linear-gradient(135deg,#ff8c00,#E5007D);
color: #fff;
padding: 14px 35px;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: 0.3s;
}

.brochure-btn:hover {
transform: translateY(-3px);
color: #fff;
box-shadow: 0 10px 25px rgba(34,197,94,0.3);
}

/*-----------document Checklist----------------*/
.document-list {
    margin: 0;
    padding-left: 20px;
}

.document-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    padding: 12px 15px;
    background: #f8fafc;
    border-left: 4px solid #ff8c00;
    border-radius: 8px;
}

.document-list li:last-child {
    margin-bottom: 0;
}
/*-----------End Document List-----------------*/
/*-----------admistion side menu----------*/
/* ====================================
Admission Sidebar
==================================== */

.admission-sidebar {
	
background: #ffffff;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
border: 1px solid #edf2f7;
position: sticky;
top: 100px;
}

/* Header */

.sidebar-header {
background: linear-gradient(135deg, #ff8c00, #E5007D);
color: #fff;
text-align: center;
padding: 35px 20px;
}

.sidebar-header i {
font-size: 42px;
color:#facc15;
margin-bottom: 12px;
display: block;
}

.sidebar-header h4 {
margin: 0;
font-size: 24px;
font-weight: 700;
}

.sidebar-header p {
margin-top: 8px;
font-size: 14px;
opacity: 0.9;
}

/* Menu */
/* Sidebar Menu */

.sidebar-menu {
list-style: none;
padding: 0;
margin: 0;
}

.sidebar-menu li {
list-style: none;
margin: 0;
border-bottom: 1px solid #e5e7eb;
}

.sidebar-menu li:last-child {
border-bottom: none;
}

.sidebar-menu li a {
display: flex;
align-items: center;
gap: 12px;
padding: 18px 22px;
text-decoration: none;
color: #444;
font-size: 15px;
font-weight: 600;
transition: all 0.3s ease;
background: #fff;
}

.sidebar-menu li a i {
color: #E5007D; /* Green Icons */
font-size: 18px;
}

/* Hover */

.sidebar-menu li a:hover {
background: #f8f0e3;
color: #ff8c00;
padding-left: 28px;
}

/* Active Menu */

.sidebar-menu li.active a {
background: linear-gradient(135deg, #16a34a, #22c55e);
color: #fff;
}

.sidebar-menu li.active a i {
color: #fff;
}


/* Active Menu */

.sidebar-menu li.active a {
background: linear-gradient(135deg, #E5007D, #1f5fbf);
color: #fff;
box-shadow: 0 8px 20px rgba(11,61,145,0.25);
}

.sidebar-menu li.active a i {
color: #1f5fbf;
}

/* Mobile */

@media (max-width: 991px) {

```
.admission-sidebar {
    position: relative;
    top: auto;
}

.sidebar-header {
    padding: 25px 15px;
}

.sidebar-header h4 {
    font-size: 22px;
}
```

}


/*-----------End admission side menu------*/
/*------------Counter Section------------*/
/* ==========================
   School Statistics Section
========================== */

.school-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d6efd, #00b4d8);
}

.school-stats .section-title h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.school-stats .section-title p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
}

.stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-card i {
    font-size: 45px;
    color: #ff8c00;
    margin-bottom: 15px;
    display: block;
}

.stat-card span {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    display: block;
    line-height: 1;
}

.stat-card h5 {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .school-stats {
        padding: 60px 0;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-card span {
        font-size: 34px;
    }
}

/*----------------End Counter Section----*/
/*---------------Table Format------------*/
.document-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.document-table thead {
    background: #ff8c00;
    color: #fff;
}

.document-table th,
.document-table td {
    padding: 15px;
    vertical-align: middle;
}

.document-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.document-table tbody tr:hover {
    background: #eef5ff;
}

.document-table .btn {
    border-radius: 30px;
    padding: 6px 15px;
}

.section-badge {
    display: inline-block;
    background: #ff8c00;
    color: #fff;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 10px;
}
/*Founder Message*/
.founder-card{
  background:#fff;
  padding:25px;
  border-radius:15px;
 /* box-shadow:0 5px 20px rgba(0,0,0,0.08);*/
}

.founder-img{
  width:180px;
  height:180px;
  /*object-fit:cover;*/
  border-radius:50%;
  border:5px solid #f1f1f1;
  margin-bottom:15px;
}

.founder-card h4{
  font-weight:700;
  margin-bottom:8px;
}

.designation{
  color:#666;
  font-size:14px;
  line-height:1.6;
}

.founder-card p{
  margin-bottom:12px;
  font-size:14px;
}

.section-badge{
  display:inline-block;
  background:#ff8c00;
  color:#fff;
  padding:6px 15px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:12px;
}
/*Ender Founder Message*/
/*vision and Mission Section*/
.section-badge {
  display: inline-block;
  background: #ff8c00;
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 12px;
}

.vm-card {
  background: #fff;
  padding: 35px;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: #eaf3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-icon i {
  font-size: 30px;
  color: #ff8c00;
}

.vm-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.vm-card p,
.vm-card li {
  color: #555;
  line-height: 1.8;
}

.vm-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.vm-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff8c00;
  font-weight: bold;
}
/*End*/
/*Contact Address */
.info-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.info-item i {
  font-size: 28px;
  color: #ff8c00;
  margin-right: 15px;
}

.info-item h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.info-item p {
  margin: 0;
  color: #666;
}

.info-item a {
  color: #666;
  text-decoration: none;
}

.info-item a:hover {
  color: #ff8c00;
}
/*/Contact Address*/
/*Scroll top*/
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8c00, #E5007D);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  cursor: pointer;
}

/* Hover effect */
.scroll-top:hover {
  transform: translateY(0) scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Show button when active */
.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/*End Scroll top*/
/* About Us Section List Styling */
.section-badge {
  display: inline-block;
  background: #ff8c00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}
.about-us {
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
  padding: 60px 0;
   list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.about-us ul li {
  background: #ffffff;
  border-left: 4px solid #ff8c00;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-us ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Hover effect */
.about-us ul li:hover {
  background: #eef6ff;
  transform: translateX(5px);
}

/* Bootstrap icon styling */
.about-us ul li i {
  color: #ff8c00;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Text inside list */
.about-us ul li span {
  display: inline-block;
}
.about-us img {
	padding-top:50px;
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.about-us img:hover {
  transform: scale(1.03);
}
.about-us h3 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
}

.about-us h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff8c00;
  position: absolute;
  left: 0;
  bottom: -8px;
}
/*Page Banner*/
.page-banner{
    background: linear-gradient(135deg,#ffffff,#fff8f0);
    text-align:center;
    padding:40px 0 0;
    position:relative;
    overflow:hidden;
}
.page-banner .shape{
    position:absolute;
    background:rgba(11,31,58,0.04);
    border-radius:50%;
    z-index:1;
}
/* Orange Circle */
.page-banner::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(245,130,32,0.12);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

/* Pink Circle */
.page-banner::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(229,0,125,0.08);
    border-radius:50%;
    bottom:20px;
    left:-120px;
}

/* Content above circles */
.page-banner .container{
    position:relative;
    z-index:2;
    padding-bottom:25px;
}

/* Title */
.page-banner h1{
    color:#D62828;
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.page-banner h1::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#F58220;
    margin:12px auto;
    border-radius:10px;
}

/* Text */
.page-banner p{
    color:#555;
    max-width:750px;
    margin:0 auto 20px;
    line-height:1.8;
}

/* Full Width Breadcrumb Bar */
.breadcrumb-bar{
    width:100%;
    background:#E5007D;
    padding:14px 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:600;
    position:relative;
    z-index:2;
}

.breadcrumb-bar a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-bar a:hover{
    color:#ffe082;
}

.breadcrumb-bar span:last-child{
    color:#ffe082;
}

/*contact Form*/
/*End Contact Form*/
/* Contact Form Card */

.contact-form-wrapper{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
border-top:5px solid #F58220;
}

/* Header */
.form-header h3{
color:#E5007D;
font-size:30px;
font-weight:700;
margin-bottom:10px;
}

.form-header p{
color:#666;
margin-bottom:30px;
}

/* Inputs */
#contactForm .form-control{
border:2px solid #f1f1f1;
border-radius:12px;
padding:14px 18px;
font-size:15px;
transition:all .3s ease;
}

#contactForm input{
height:55px;
}

#contactForm textarea{
min-height:150px;
resize:none;
}

#contactForm .form-control:focus{
border-color:#E5007D;
box-shadow:0 0 0 0.2rem rgba(229,0,125,.12);
}

/* Button */
.submit-btn{
background:linear-gradient(135deg,#F58220,#E5007D);
color:#fff;
border:none;
padding:14px 40px;
border-radius:50px;
font-size:16px;
font-weight:600;
transition:.4s;
}

.submit-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(229,0,125,.25);
}

/* Messages */
.loading{
color:#F58220;
font-weight:600;
margin-bottom:15px;
}

.sent-message{
background:#e9f9ef;
color:#198754;
padding:12px;
border-radius:10px;
margin-bottom:15px;
}

.error-message{
background:#fff0f0;
color:#dc3545;
padding:12px;
border-radius:10px;
margin-bottom:15px;
}

/* Mobile */
@media(max-width:768px){

.contact-form-wrapper{
padding:25px;
}

.form-header h3{
font-size:24px;
}

.submit-btn{
width:100%;
}

}
.contact.section{
    background:linear-gradient(to bottom,#fff8f2,#ffffff);
}
/*Gallery Section*/
.gallery {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11,31,58,0.85);
    color: #fff;
    padding: 12px;
    text-align: center;
	
}

.gallery-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
	color : #c0af9b;
}

.gallery-btn {
    background: #ff8c00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.gallery-btn:hover {
    background: #0b1f3a;
    color: #fff;
}
/*End Gallery Section*/
/*Course Section*/
.features-item {
    position: relative;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    min-height: 220px;
    cursor: pointer;
    transition: 0.4s;

}

.features-item i {
    font-size: 50px;
    color: #fff;
    margin-bottom: 15px;
}

.features-item h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    transition: 0.4s;
}

/* Hidden Description */
.feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    padding: 20px;
    background: rgba(0,0,0,0.15);
    transition: 0.5s;
	
}

.feature-content p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Hover Effect */
.features-item:hover .feature-content {
    bottom: 0;
}

.features-item:hover {
    transform: translateY(-8px);
}

/* Colors */
.pedagogy{
    background: linear-gradient(135deg,#0d6efd,#4f8dff);
}

.assessment{
    background: linear-gradient(135deg,#198754,#45c486);
}

.evaluation{
    background: linear-gradient(135deg,#fd7e14,#ffb04d);
}

.usp{
    background: linear-gradient(135deg,#6f42c1,#9b6dff);
}


/* ==========================
   FOOTER DESIGN
========================== */
/*HOMe Slider*/
/* Remove top and bottom spacing */
.hero-slider {
    height: 100vh;
    margin: 0;
    padding: 0;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slider {
    margin: 0 !important;
    padding: 0 !important;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

/* Remove section spacing */
#hero-slider {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* If BootstrapMade template adds section padding */
.section {
    padding: 30px;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 650px;
}

.caption h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
	color: #c0af9b;
}

.caption p {
    font-size: 22px;
    margin-bottom: 25px;
}

.btn-slider {
    display: inline-block;
    background: #ff8c00;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-slider:hover {
    background: #fff;
    color: #ff8c00;
}

/* Arrows */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: #ff8c00;
}

/* Mobile */
@media(max-width:768px){

    .hero-slider{
        height:70vh;
    }

    .caption{
        left:5%;
        right:5%;
    }

    .caption h2{
        font-size:34px;
    }

    .caption p{
        font-size:16px;
    }
}
/*End Slider*/
/*Menu*/
/* Full Width Menu Row */
.menu-row {
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Navigation */
.navmenu {
    flex: 1;
}

.navmenu > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navmenu ul li {
    position: relative;
}

.navmenu ul li a {
    display: block;
    padding: 18px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1f3a;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
    color: #ff8c00;
}

/* Dropdown */
.navmenu .dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
}

.navmenu .dropdown:hover ul {
    display: block;
}

.navmenu .dropdown ul li a {
    padding: 12px 15px;
}

/* Apply Button */
.btn-getstarted {
    background: #ff8c00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: 0.3s;
}

.btn-getstarted:hover {
    background: #0b1f3a;
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .navmenu ul {
        justify-content: flex-start;
        gap: 15px;
    }
}


/*--------------Extra menu-----------*/
/* ABOUT US MEGA MENU */

.mega-dropdown{
    position:relative;
}

.mega-dropdown{
    position:relative;
}

.mega-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    width:950px;

    background:#fff;
    padding:25px;

    display:none; /* Hidden */

    gap:40px;

    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);

    z-index:9999;
	opacity:0;
    visibility:hidden;
    transition:all 0.3s ease;
	/*left:50%;
    transform:translateX(-20%);*/
}
.about-menu{
    left:0;
    right:auto;
    transform:none;
}
.mega-right .mega-menu{
    left:auto;
    right:0;
}
.mega-dropdown:hover > .mega-menu{
    display:flex; /* Show only on hover */
	opacity:1;
    visibility:visible;
}

.mega-column{
    flex:1;
}

.mega-column h4{
    color:#ff8c00;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    border-bottom:2px solid #ff8c00;
    padding-bottom:8px;
}

.mega-column a{
    display:block;
    padding:5px 0;
    font-size:15px;
    color:#0b1f3a;
    text-decoration:none;
    font-weight:500;
	background:#fff5e6;
    border-radius:6px;
    color:#ff8c00;
}

.mega-column a:hover{
	 color:#ff8c00;
    padding-left:8px;
    transition:0.3s;
}
/*.menu-desc{
    font-size:12px;
    color:#777;
    margin-bottom:15px;
}*/
.mega-column a i{
    color:#ff8c00
    margin-right:10px;
    font-size:16px;
}

.mega-column a:hover i{
    color:#0b1f3a;
}

/* Mobile */

@media(max-width:991px){

.mega-menu{
    width:100%;
    position:static;
    transform:none;

    display:block;

    visibility:visible;
    opacity:1;

    box-shadow:none;

    padding:10px;
}

.mega-column{
    margin-bottom:20px;
}

}
/*-------------end extra menu-----------*/

/*Extra Menu*/

/*End Menu*/
.footer {
    background: #0b1f3a;
    color: #ffffff;
    padding-top: 60px;
}

.footer .sitename {
    color: #ff9f1c;
    font-size: 28px;
    font-weight: 700;
}

.footer h4 {
    color: #ff9f1c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p,
.footer a,
.footer span {
    color: #d8d8d8;
    text-decoration: none;
}

.footer a:hover {
    color: #ff9f1c;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    padding: 8px 0;
}

.footer-links ul li a {
    transition: 0.3s;
}

.footer-contact p {
    margin-bottom: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ff9f1c;
    color: #fff;
    transform: translateY(-3px);
}

.school-map iframe {
    border-radius: 10px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright p {
    margin-bottom: 5px;
    color: #d8d8d8;
}

.credits a {
    color: #ff9f1c;
    font-weight: 600;
}
/* Why Choose Us Box */
.why-us .col-lg-4,
.why-us .col-lg-8 {
    display: flex;
}

.why-box {
    flex: 1;
}
.why-box {
    background: #ff7a00;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Make left box equal height to right side */
.why-us .row {
    display: flex;
    align-items: stretch;
}

.why-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0 20px;
}

.why-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.why-box p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.more-btn {
    display: inline-block;
    background: #fff;
    color: #ff7a00;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.why-box {
    background: #ff8c00;
    color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    height: 100%;
}

.why-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-box p {
    line-height: 1.8;
}

.more-btn {
    display: inline-block;
    background: #fff;
    color: #ff8c00;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}

.icon-box {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box i {
    font-size: 42px;
    color: #ff8c00;
    margin-bottom: 15px;
}

.icon-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.icon-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
/* Top Orange Contact Bar */
.top-contact-bar {
    background: #ff8c00;
    color: #fff;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.top-contact-bar i {
    margin-right: 6px;
}

.email-left,
.phone-right {
    display: flex;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-contact-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* =========================
   HEADER
========================= */

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    width: 100%;
}

/* =========================
   TOP HEADER ROW
========================= */

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

/* =========================
   LOGO
========================= */

.header-logo {
    width: 220px;
}

.logo img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

/* =========================
   SCHOOL DETAILS
========================= */
.top-header {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background: #fff;
}

.header-logo img {
    width: 250px;
    height: auto;
}

.school-details {
    flex: 1;
    text-align: center;
}
.school-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 30px;
    background:#ffffff;
    border-bottom:4px solid #003366;
    flex-wrap:wrap;
}

.header-left,
.header-right{
    width:120px;
    text-align:center;
}

.school-logo{
    width:90px;
    height:auto;
}

.school-details{
    flex:1;
}

.school-name{
    font-size:34px;
    font-weight:700;
    color:#003366;
    margin-bottom:6px;
    letter-spacing:1px;
}

.sanstha-name{
    font-size:18px;
    color:#e2191e;
    font-weight:600;
    margin-bottom:10px;
}

.school-slogan{
    font-family:'Tiro Devanagari Marathi', serif;
    font-size:22px;
    color:#222;
    font-weight:500;
    line-height:1.6;
    margin-bottom:5px;
}

.quote-author{
    font-family:'Tiro Devanagari Marathi', serif;
    font-size:18px;
    color:#e2191e;
    font-weight:600;
    margin-bottom:10px;
}

.school-address{
    font-size:15px;
    margin-bottom:10px;
    color:#444;
}

.contact-details{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    font-size:15px;
}

.contact-details i{
    color:#003366;
    margin-right:5px;
}

@media(max-width:768px){

}


/* RIGHT SIDE EMPTY SPACE */
.header-right {
    width: 220px;
}



@media (max-width: 991px) {

    .top-header {
        flex-direction: column;
        text-align: center;
    }

    .header-logo,
    .header-right {
        width: 100%;
    }

    .logo img {
        width: 140px;
        height: 140px;
    }

    .school-name {
        font-size: 28px;
    }

    .school-slogan {
        font-size: 16px;
    }

    .contact-details {
        flex-direction: column;
        gap: 10px;
    }

   
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f6821f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #272828;  /* The default color of the main navmenu links */
  --nav-hover-color: #f6821f; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f6821f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 200px;
  margin-right: 5px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 0;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* PAGE TITLE */
/* ==========================
   PAGE TITLE
========================== */

.page-title{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#ffffff,#fff8f0);
}

/* Decorative Shapes */

.page-title::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(245,130,32,.12);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.page-title::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(229,0,125,.08);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}

.page-title .heading{
    padding:70px 0 50px;
    position:relative;
    z-index:2;
}

.page-subtitle{
    display:inline-block;
    background:#0b1f3a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.page-title h1{
    color:#D62828;
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.page-title h1::after{
    content:"";
    display:block;
    width:90px;
    height:5px;
    background:#F58220;
    margin:15px auto;
    border-radius:10px;
}

.page-title p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

/* Breadcrumb */

.breadcrumbs{
    background:#0b1f3a;
    padding:12px 0;
}

.breadcrumbs ol{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.breadcrumbs li{
    color:#fff;
}

.breadcrumbs li + li::before{
    content:"/";
    color:#F58220;
    margin-right:10px;
}

.breadcrumbs a{
    color:#fff;
    text-decoration:none;
}

.breadcrumbs a:hover{
    color:#F58220;
}

.breadcrumbs .current{
    color:#F58220;
    font-weight:700;
}
/*.page-title {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
*/
/*Map Section*/
.contact iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
}
/*End Map Section*/
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}
.section-title h3 {
font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about-us .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
  padding: 25px 0;
}

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

.counts .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.counts .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
```css
/*--------------------------------------------------------------
# School Leadership Section
--------------------------------------------------------------*/

.trainers-index {
    padding: 80px 0;
    background: #f8fafc;
}

.trainers-index .member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.trainers-index .member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.trainers-index .member img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.trainers-index .member-content {
    padding: 25px;
    text-align: center;
}

.trainers-index .member-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 8px;
}

.trainers-index .member-content span {
    display: inline-block;
    color: #ff8c00;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainers-index .member-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    min-height: 130px;
}

.trainers-index .social {
    margin-top: 20px;
}

.trainers-index .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    color: #0d3b66;
    border-radius: 50%;
    margin: 0 4px;
    transition: 0.3s;
}

.trainers-index .social a:hover {
    background: #ff8c00;
    color: #fff;
}

@media (max-width: 768px) {

    .trainers-index {
        padding: 60px 0;
    }

    .trainers-index .member img {
        height: 320px;
    }

    .trainers-index .member-content p {
        min-height: auto;
    }
}
```

/*.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
*/
/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Course Details Section
--------------------------------------------------------------*/
.course-details .course-header {
  margin-bottom: 40px;
}

.course-details .course-header .course-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.course-details .course-header .course-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.course-details .course-header .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .course-details .course-header .course-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.course-details .course-header .instructor {
  display: flex;
  align-items: center;
  gap: 15px;
}

.course-details .course-header .instructor .instructor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.course-details .course-header .instructor .instructor-info h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.course-details .course-header .instructor .instructor-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .course-header .course-stats {
  display: flex;
  gap: 25px;
}

@media (max-width: 576px) {
  .course-details .course-header .course-stats {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.course-details .course-header .course-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
}

.course-details .course-header .course-stats .stat-item i {
  color: var(--accent-color);
}

.course-details .course-content {
  margin-bottom: 50px;
}

.course-details .course-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .course-details .course-content h2 {
    font-size: 26px;
  }
}

.course-details .course-content .course-description {
  margin-bottom: 40px;
}

.course-details .course-content .course-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--default-color);
}

.course-details .course-content .what-you-learn {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-content .what-you-learn h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.course-details .course-content .what-you-learn .learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-details .course-content .what-you-learn .learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
}

.course-details .course-content .what-you-learn .learn-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.course-details .course-curriculum {
  margin-bottom: 50px;
}

.course-details .course-curriculum h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.course-details .course-curriculum .curriculum-section {
  margin-bottom: 25px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
}

.course-details .course-curriculum .curriculum-section .section-header {
  background-color: var(--surface-color);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .course-details .course-curriculum .curriculum-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.course-details .course-curriculum .curriculum-section .section-header h4 {
  font-size: 18px;
  margin: 0;
  color: var(--heading-color);
}

.course-details .course-curriculum .curriculum-section .section-header .lessons-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .course-curriculum .curriculum-section .lessons {
  padding: 0;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: background-color 0.3s;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item:last-child {
  border-bottom: none;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info i {
  color: var(--accent-color);
  font-size: 18px;
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-info span {
  font-size: 15px;
  color: var(--default-color);
}

.course-details .course-curriculum .curriculum-section .lessons .lesson-item .lesson-duration {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.course-details .course-sidebar {
  position: sticky;
  top: 100px;
}

.course-details .course-sidebar .pricing-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-sidebar .pricing-card .price {
  margin-bottom: 10px;
}

.course-details .course-sidebar .pricing-card .price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  vertical-align: top;
}

.course-details .course-sidebar .pricing-card .price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.course-details .course-sidebar .pricing-card .price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.course-details .course-sidebar .pricing-card .original-price {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-bottom: 25px;
}

.course-details .course-sidebar .pricing-card .course-features {
  margin-bottom: 30px;
}

.course-details .course-sidebar .pricing-card .course-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.course-details .course-sidebar .pricing-card .course-features .feature i {
  color: var(--accent-color);
  font-size: 16px;
  width: 16px;
}

.course-details .course-sidebar .pricing-card .course-features .feature span {
  font-size: 14px;
  color: var(--default-color);
}

.course-details .course-sidebar .pricing-card .btn-enroll {
  width: 100%;
  padding: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-enroll:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.course-details .course-sidebar .pricing-card .btn-preview {
  width: 100%;
  padding: 15px;
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.course-details .course-sidebar .pricing-card .btn-preview:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .course-sidebar .course-info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.course-details .course-sidebar .course-info-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.course-details .course-sidebar .course-info-card .info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.course-details .course-sidebar .course-info-card .info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.course-details .course-sidebar .course-info-card .info-item .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.course-details .course-sidebar .course-info-card .info-item .value {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.course-details .course-sidebar .course-tags {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 25px;
}

.course-details .course-sidebar .course-tags h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.course-details .course-sidebar .course-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-details .course-sidebar .course-tags .tags-list .tag {
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
}

.course-details .course-sidebar .course-tags .tags-list .tag:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .course-details .course-sidebar {
    position: static;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
  background-color: var(--background-color);
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: var(--surface-color);
  border-top: 4px solid var(--surface-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px 12px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/*-----------display Document------------------*/
/*----------------End Display Document---------*/
.document-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.document-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.document-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.document-content{
    padding:20px;
    text-align:center;
}

.document-content h4{
    font-size:18px;
    margin-bottom:15px;
}

.section-badge{
    display:inline-block;
    background:#ff8c00;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:12px;
}
/*--------------code for Table----------------*/
.smc-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.smc-table thead {
  background: #ff8c00;
  color: #fff;
}

.smc-table th,
.smc-table td {
  padding: 15px;
  vertical-align: middle;
}

.smc-table tbody tr:hover {
  background: #f8f9fa;
}

.smc-table tbody tr:nth-child(even) {
  background: #fafafa;
}
/*---------------End Table Code---------------*/

/* FIX DROPDOWN */

@media (min-width:1200px){

.navmenu .dropdown ul{
    display:block !important;
    visibility:hidden !important;
    opacity:0 !important;

    position:absolute;
    top:100%;
    left:0;

    min-width:250px;
    background:#fff;
    padding:10px 0;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    z-index:9999;
}

.navmenu .dropdown:hover > ul{
    visibility:visible !important;
    opacity:1 !important;
}

}

/*---------------Extra----------------------*/
