﻿p
{
    font-size:14px;
}
/* ==== Floating Glass Tabs Section ==== */
.page-links-section {
  background: linear-gradient(90deg, #fff7f0, #fff);
  padding: 3px 0;
  border-top: 1px solid #005f6e;
  border-bottom: 2px solid #f5c000;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Wrapper becomes horizontally scrollable */
.page-links-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 60px; /* space for arrows */
  scrollbar-width: none; /* Firefox */
}
.page-links-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Background line */
.page-links-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ee482c, #ff7b00, #ee482c);
  opacity: 0.2;
  transform: translateY(-50%);
  z-index: 0;
}

.link-item {
  position: relative;
  display: inline-block;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  border-radius: 40px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
  z-index: 1;
  border:none !important;
 /* border: 1px solid rgba(255,255,255,0.6); */
  white-space: nowrap;
}

.link-item:hover {
  transform: translateY(-5px);
  background:#f5c000;
  color: #fff;
  box-shadow: 0 6px 20px rgba(238,72,44,0.25);
}

.link-item.active 
{
  border: 2px solid #00bcd4;
  /*background: linear-gradient(135deg, #ee482c, #ff7b00); */
  background: linear-gradient(135deg, #fde116, #00000000);
  color: #000;
  box-shadow: 0 6px 20px rgba(238,72,44,0.35);
  border: none;
}

/* Subtle glow */
.link-item.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 2px;
  background: linear-gradient(135deg, #ee482c, #ff7b00);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Scroll arrows */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #00295e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
 /* background: linear-gradient(135deg, #ee482c, #ff7b00); */
 background: linear-gradient(135deg, #fde116, #00000000);
  color: #000;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .link-item {
    padding: 10px 18px;
    font-size: 14px;
  }
  .scroll-btn {
    width: 32px;
    height: 32px;
  }
}

/* ========= Inner Banner with Breadcrumb section Style ==========*/
.inner-banner {
  height: 30vw;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.inner-banner::before,
.inner-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ===== Overlay on image ===== */
.inner-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 2;
}

.inner-heading-content {
  transform: translateY(-50%);
  background-color: var(--primary-color);
  padding: 10px 2rem;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
    position: relative;
    z-index: 10;
}

.inner-title {
  color: #fff;
  font: 700 2rem / 1 var(--serif);
}

.inner-breadcrumb {
  width: auto;
  background: none;
  margin-bottom: 0;
  padding-left: 0;
  justify-content: center;
  display: flex;
  gap: 5px;
}

.inner-breadcrumb li 
{
  list-style:none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.inner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: none;
  content: "\f101";
  font: 900 13px "Font Awesome 6 Free";
  color: #fff;
}

.inner-breadcrumb li a {
  color: #fff;
}

.inner-breadcrumb li a:hover {
  text-decoration: underline;
}

.inner-breadcrumb .breadcrumb-item.active {
  color: #eab04e;
}

/* ========= Inner Banner with Breadcrumb section Style END ==========*/

.about-title
{
    font-size:30px; 
    font-weight:700;
    text-align:center;
}

/* General Instruction Style */
  .instruction-section {
    border-radius: 12px;
    padding: 40px 30px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-bottom: 40px;
  }

  .instruction-title {
    font-size: 26px;
    font-weight: 600;
    color: #d96600;
    margin-bottom: 25px;
   /* border-left: 6px solid #ff7474; */
    padding-left: 15px;
  }

  .instruction-list {
    counter-reset: instruction-counter;
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .instruction-list li {
    counter-increment: instruction-counter;
    position: relative;
    background: #fff;
    padding: 15px 20px 15px 60px;
    margin-bottom: 15px;
   /* border-left: 4px solid #ff7474; */
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(68, 50, 102, 0.08);
  }

  .instruction-list li:hover {
    background: #ebe0ca;
    transform: scale(1.01);
   /* box-shadow: 0 6px 20px rgba(68, 50, 102, 0.15); */
  }

  .instruction-list li::before {
    content: counter(instruction-counter) ".";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 18px;
    color: #003366;
  }
 /* General Instruction Style END */
 
 /*==== Infrastructure Highlights Style ======*/
  .fitness-section {
            position: relative;
            padding: 40px 0;
            background: linear-gradient(135deg, #faf9f6 0%, #f0ece3 100%);
            overflow: hidden;
        }
        
        .fitness-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .fitness-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .section-header {
            margin-bottom: 70px;
            text-align: center;
        }
        
        .section-tag {
            display: inline-block;
            padding: 8px 24px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
            color: white;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 30px;
            margin-bottom: 20px;
            animation: fadeInDown 0.8s ease-out;
        }
        
        .section-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--dark-navy);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }
        
        .section-title span {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-description {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }
        
        .sports-grid {
            margin-top: 60px;
        }
        
        .sport-card {
            position: relative;
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            background: white;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            animation: fadeInUp 0.8s ease-out backwards;
        }
        
        .sport-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
        }
        
        .sport-card-image {
            position: relative;
            height: 260px;
            overflow: hidden;
            background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
        }
        
        .sport-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 1;
            transition: opacity 0.3s ease;
        }
        
        .sport-card:hover .sport-card-image::before {
            opacity: 0.7;
        }
        
        .sport-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .sport-card:hover .sport-card-image img {
            transform: scale(1.1);
        }
        
        .sport-card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 8px 20px;
            border-radius: 20px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: var(--shadow-md);
        }
        
        .badge-orange { background: var(--primary-orange); color: white; }
        .badge-teal { background: var(--primary-teal); color: white; }
        .badge-purple { background: var(--primary-purple); color: white; }
        .badge-green { background: var(--primary-green); color: white; }
        
        .sport-card-content {
            padding: 28px;
        }
        
        .sport-card-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--dark-navy);
            margin-bottom: 12px;
        }
        
        .sport-card-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 20px;
        }
        
        .sport-card-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }
        
        .feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: #f8f9fa;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #555;
            font-weight: 500;
        }
        
        .feature-tag i {
            font-size: 0.75rem;
            color: var(--primary-orange);
        }
        
        .highlight-box {
            margin-top: 80px;
            padding: 50px;
            background: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
            border-radius: 32px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }
        
        .highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .highlight-content {
            position: relative;
            z-index: 1;
        }
        
        .highlight-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .highlight-text {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.95;
        }
        
        .highlight-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .highlight-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        
        .highlight-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .highlight-icon i {
            font-size: 1.4rem;
        }
        
        .highlight-feature-text h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        
        .highlight-feature-text p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .closing-statement {
            margin-top: 60px;
            text-align: center;
            padding: 40px;
            animation: fadeInUp 0.8s ease-out 0.8s backwards;
        }
        
        .closing-statement h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 2.2rem;
            color: var(--dark-navy);
            line-height: 1.4;
        }
        
        .closing-statement .highlight-word {
            color: var(--primary-orange);
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .section-title {
                font-size: 2.8rem;
            }
            
            .sport-card-image {
                height: 220px;
            }
            
            .highlight-box {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 767px) {
            .fitness-section {
                padding: 20px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .sport-card-image {
                height: 200px;
            }
            
            .highlight-box {
                padding: 30px 20px;
            }
            
            .highlight-title {
                font-size: 1.6rem;
            }
            
            .highlight-features {
                grid-template-columns: 1fr;
            }
            
            .closing-statement h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 575px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .sport-card-content {
                padding: 20px;
            }
            
            .sport-card-title {
                font-size: 1.3rem;
            }
        }
/*==== Infrastructure Highlights Style END ======*/


/*================= Add Every page Style ====================*/
/**==== About Us ======**/
/* Section Background */
.about-advanced {
  padding: 20px 0%;
  
  text-align: center;
  color: #fff;
}

/* Title */
.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

/* Container */
.about-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card Base */
.about-card {
  position: relative;
  width: 320px;
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: 0.4s ease;
}

/* Gradient Border Effect */
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #4e2123, #4e2123);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Hover Animation */
.about-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Card Heading */
.about-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

/* Text */
.about-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.btnnn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  transition: 0.3s;
}

/* Button Hover */
.btnnn:hover {
  background: #fff;
  color: #000;
}

/* Different Theme Colors */
.teachers {
  background: linear-gradient(135deg, #9d382d, #212529);
}

.admission {
  background: linear-gradient(135deg, #9d382d, #140300);
}

/* Responsive */
@media(max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }
}

.stylish
{
     font-size: 28px;
   font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
/**===== Academic System =======**/
.section-wrapper {
    border-radius: 15px;
    padding: 40px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #b22222;
    text-transform: uppercase;
}

.section-subtitle {
    color: #777;
    margin-bottom: 25px;
}

.highlight-box {
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.blue { background: linear-gradient(45deg, #007bff, #00c6ff); }
.red { background: linear-gradient(45deg, #ff4e50, #f9d423); }
.purple { background: linear-gradient(45deg, #8e2de2, #4a00e0); }

.card-custom {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.footer-box {
    background: #f1f1f1;
    padding: 20px;
    border-left: 5px solid #ff4e50;
    border-radius: 8px;
    font-weight: 500;
}

@media(max-width:768px){
    .section-wrapper {
        padding: 20px;
    }
}
/**=== Vission =======**/
 /* Section Background */
.aim-book {
  background: #fdfaf6;
  padding: 80px 10%;
  font-family: 'Poppins', sans-serif;
}

/* Wrapper (Paper Look) */
.aim-wrapper {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left: 10px solid #c0392b;
}

/* Title */
.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #8e2c2c;
}

/* Intro */
.intro {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #444;
}

/* Aim Box */
.aim-box {
  margin-bottom: 25px;
}

/* Heading Label Style */
.aim-box h3 {
  display: inline-block;
  padding: 6px 14px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* Colors like book */
.blue h3 {
  background: #3498db;
}

.orange h3 {
  background: #e67e22;
}

.red h3 {
  background: #e74c3c;
}

/* List */
.aim-box ul {
  padding-left: 20px;
}

.aim-box ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  position: relative;
}

/* Custom Bullet */
.aim-box ul li::marker {
  color: #c0392b;
}

/* Subtle Hover Effect */
.aim-box:hover {
  transform: translateX(5px);
  transition: 0.3s;
}

/* Responsive */
@media(max-width: 768px) {
  .aim-wrapper {
    padding: 20px;
  }

  .main-title {
    font-size: 26px;
  }
}
/**=======  ========**/

/*================= Add Every page Style END ====================*/
