/* About Us Section - Image + Text Professional Layout */
.about-us-SIS {
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  position: relative;
  overflow: hidden;
}

.about-two-SIS {
  padding: 70px 0 10px;
}
.about-us-SIS::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 102, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.about-us-SIS .container {
  position: relative;
  z-index: 2;
}

/* Header */
.about-us-SIS-header {
  margin-bottom: 70px;
}

.about-us-SIS-title {
  font-size: 40px;
  font-weight: 700;
  color: #05173d;
  margin-bottom: 15px;
  position: relative;
}

.about-us-SIS-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #006666, #ffca28);
  border-radius: 2px;
}

.about-us-SIS-subtitle {
  font-size: 17px;
  color: #222;
  font-weight: 500;
}

/* Content Styling */
.about-us-SIS-content {
  padding: 20px 0;
}

.about-us-SIS-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-us-SIS-mission-badge {
  background: linear-gradient(45deg, #006666, #4db6ac);
  color: #ffffff;
}

.about-us-SIS-vision-badge {
  background: linear-gradient(45deg, #1a237e, #3f51b5);
  color: #ffffff;
}

.about-us-SIS-values-badge {
  background: linear-gradient(45deg, #ffca28, #fff176);
  color: #1a237e;
}

.about-us-SIS-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-us-SIS-description {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

/* Highlights */
.about-us-SIS-highlights {
  margin-bottom: 20px;
}

.about-us-SIS-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -1px;
  padding: 12px 0;
}

.about-us-SIS-highlight i {
  color: #4db6ac;
  font-size: 1.2rem;
}

.about-us-SIS-highlight span {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
}

/* Image Wrapper */
.about-us-SIS-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 102, 102, 0.15);
  transition: all 0.3s ease;
}

.about-us-SIS-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 102, 102, 0.2);
}

.about-us-SIS-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.about-us-SIS-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.about-us-SIS-image-wrapper:hover .about-us-SIS-image-overlay {
  opacity: 1;
}

.about-us-SIS-overlay-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  border: 3px solid #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* Values List */
.about-us-SIS-values-list {
  margin-top: 30px;
}

.about-us-SIS-value-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8fffe;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #006666;
  transition: all 0.3s ease;
}

.about-us-SIS-value-item:hover {
  background: #e0f2f1;
  transform: translateX(10px);
}

.about-us-SIS-value-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #006666, #4db6ac);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-us-SIS-value-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.about-us-SIS-value-text p {
  font-size: 0.95rem;
  color: #222;
  margin: 0;
  line-height: 1.5;
}

/* FAQ Section - Shashi International School */
.faqs-SIS {
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  position: relative;
}

.faqs-SIS-header {
  margin-bottom: 50px;
}

.faqs-SIS-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.faqs-SIS-subtitle {
  font-size: 17px;
  color: #222;
  margin-bottom: 0;
}

/* Accordion Styling */
.faqs-SIS-accordion {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 102, 102, 0.1);
  overflow: hidden;
}

.faqs-SIS-item {
  border-bottom: 1px solid #e0f2f1;
}

.faqs-SIS-item:last-child {
  border-bottom: none;
}

.faqs-SIS-question {
  padding: 25px 30px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faqs-SIS-question:hover {
  background: #f8fffe;
}

.faqs-SIS-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a237e;
  margin: 0;
  line-height: 1.4;
  padding-right: 20px;
}

.faqs-SIS-icon {
  font-size: 1rem;
  color: #006666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faqs-SIS-question[aria-expanded="true"] .faqs-SIS-icon {
  transform: rotate(45deg);
}

.faqs-SIS-answer {
  background: #f8fffe;
}

.faqs-SIS-answer-content {
  padding: 25px 30px;
  border-top: 1px solid #e0f2f1;
}

.faqs-SIS-answer-content p {
  font-size: 16px;
  text-align: justify;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faqs-SIS-answer-content p:last-child {
  margin-bottom: 0;
}

.faqs-SIS-answer-content ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.faqs-SIS-answer-content ul li {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 8px;
}

.faqs-SIS-answer-content a {
  color: #006666;
  text-decoration: none;
  font-weight: 600;
}

.faqs-SIS-answer-content a:hover {
  color: #4db6ac;
  text-decoration: underline;
}

/* Contact CTA */
.faqs-SIS-contact-cta {
  background: linear-gradient(135deg, #006666, #4db6ac);
  padding: 40px;
  border-radius: 20px;
  color: #ffffff;
  margin-top: 50px;
}

.faqs-SIS-contact-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;

  margin-bottom: 15px;
}

.faqs-SIS-contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.faqs-SIS-contact-btn {
  background: #ffca28;
  color: #1a237e;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.faqs-SIS-contact-btn:hover {
  background: #fff176;
  color: #1a237e;
  transform: translateY(-2px);
  text-decoration: none;
}
.faqs-SIS {
  padding: 50px 0;
}

.child-learn-SIS {
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
  position: relative;
}

.child-learn-SIS-header {
  margin-bottom: 50px;
}

.child-learn-SIS-title {
  font-size: 35px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

.child-learn-SIS-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 8px 30px rgba(0, 102, 102, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #006666;
  height: 100%;
}

.child-learn-SIS-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 102, 102, 0.15);
  border-left-color: #4db6ac;
}

.child-learn-SIS-icon {
  background: linear-gradient(135deg, #006666, #4db6ac);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 102, 102, 0.3);
}

.child-learn-SIS-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.child-learn-SIS-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}

.child-learn-SIS-content p {
  font-size: 15px;
  color: #222;
  margin: 0;
  line-height: 1.6;
}

/* Section 8 - Study Material CSS */
.study-material-SIS {
  background: linear-gradient(135deg, #f0f8f7 0%, #e0f2f1 100%);
  position: relative;
}

.study-material-SIS-header {
  margin-bottom: 50px;
}

.study-material-SIS-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.study-material-SIS-bonus-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(26, 35, 126, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid #ffca28;
}

.study-material-SIS-bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(26, 35, 126, 0.12);
}

.study-material-SIS-bonus-icon {
  background: linear-gradient(135deg, #1a237e, #3f51b5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.study-material-SIS-bonus-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.study-material-SIS-bonus-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.study-material-SIS-bonus-card p {
  font-size: 0.95rem;
  color: #222;

  line-height: 1.5;
}

/* Timer Section */
.study-material-SIS-timer-section {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 126, 0.05),
    rgba(0, 102, 102, 0.05)
  );
  border-radius: 20px;
  padding: 40px;
  margin-top: 50px;
}

.study-material-SIS-timer-header h3 {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

/* Premium Cards */
.study-material-SIS-premium-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 102, 102, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;

  height: 100%;
}

.study-material-SIS-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 102, 102, 0.15);
}

.study-material-SIS-bonus-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffca28, #fff176);
  color: #1a237e;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(255, 202, 40, 0.3);
}

.study-material-SIS-bonus-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.study-material-SIS-card-content {
  padding: 20px;
}

.study-material-SIS-card-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.study-material-SIS-card-content p {
  font-size: 0.9rem;
  color: #222;
  text-align: justify;
  line-height: 1.5;
}

.free-registration-SIS {
  /* Dark Transparent Background */
  background: linear-gradient(
    135deg,
    rgba(26, 35, 126, 0.85) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );

  background-image: url("../img/curriculum.jpg");
  background-size: cover, 100% 100%, 100% 100%;
  background-position: center, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-blend-mode: overlay, normal, normal;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.free-registration-SIS::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.free-registration-SIS::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );

  opacity: 0.4;
  border-radius: 50%;
  z-index: 1;
}

.free-registration-SIS .container {
  position: relative;
  z-index: 2;
}

.free-registration-SIS .container {
  position: relative;
  z-index: 2;
}

/* Header Styles with Logo Colors */
.free-registration-SIS-header {
  margin-bottom: 50px;
}

.free-registration-SIS-title {
  font-weight: 800;
  color: #fff;
  font-size: 46px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.free-registration-SIS-subtitle {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Shiny Button with Logo Colors */
.free-registration-SIS-shiny-button {
  position: relative;
  display: inline-block;
}

.free-registration-SIS-register-btn {
  background: linear-gradient(135deg, #810303, #810303);
  background-size: 300% 300%;
  border: 1px solid #ffca28;
  border-radius: 50px;
  padding: 14px 35px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;

  letter-spacing: 0.05em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 102, 102, 0.3);
  animation: shashi-shine 3s ease-in-out infinite;
}

.free-registration-SIS-register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 35, 126, 0.4);
  background-position: 100% 0;
  border-color: #fff176;
}

.free-registration-SIS-register-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 202, 40, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.free-registration-SIS-register-btn:hover::before {
  left: 100%;
}

.free-registration-SIS-btn-text {
  margin-right: 10px;
}

.free-registration-SIS-register-btn i {
  transition: transform 0.3s ease;
}

.free-registration-SIS-register-btn:hover i {
  transform: translateX(5px);
}

/* Achievements Section */
.free-registration-SIS-achievements {
  margin-top: 60px;
}

.free-registration-SIS-achievements-header {
  margin-bottom: 40px;
}

.free-registration-SIS-achievements-title {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.free-registration-SIS-achievements-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ffca28, #fff176);
  border-radius: 2px;
}

/* Achievement Cards with Logo Theme */
.free-registration-SIS-achievement-card {
  background: #fefefe;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
  color: #333333;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;

  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  border-top: 3px solid #006666;
}

.free-registration-SIS-achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 102, 102, 0.15);
  border-top-color: #4db6ac;
}

.free-registration-SIS-achievement-icon {
  background: linear-gradient(135deg, #006666, #4db6ac);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 102, 102, 0.3);
}

.free-registration-SIS-achievement-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.free-registration-SIS-achievement-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  text-align: justify;
  margin-bottom: 8px;
  line-height: 1.4;
}

.free-registration-SIS-achievement-content p {
  font-size: 15px;
  color: #222;
  text-align: justify;
  margin: 0;
  line-height: 1.5;
}

/* Call to Action with Shashi Theme */
.free-registration-SIS-cta {
  background: linear-gradient(135deg, #006666, #1a237e);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 3px solid #ffca28;
}

.free-registration-SIS-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: #ffca28;
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.free-registration-SIS-cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.free-registration-SIS-cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.free-registration-SIS-contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.free-registration-SIS-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid #ffca28;
}

.free-registration-SIS-contact-item:hover {
  background: rgba(255, 202, 40, 0.2);
  transform: translateY(-2px);
  border-color: #fff176;
}

.free-registration-SIS-contact-item i {
  font-size: 1.2rem;
  color: #ffca28;
}

.free-registration-SIS-contact-item span {
  font-weight: 500;
  font-size: 0.95rem;
  color: #ffffff;
}

/* Why Choose Us Cards Theme */
.why-choose-us-SIS-title {
  color: #006666;
}

.why-choose-us-SIS-card-purple {
  background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
  color: #ffffff;
}

.why-choose-us-SIS-card-blue {
  background: linear-gradient(135deg, #006666 0%, #4db6ac 100%);
  color: #ffffff;
}

.why-choose-us-SIS-card-teal {
  background: linear-gradient(135deg, #004d40 0%, #26a69a 100%);
  color: #ffffff;
}

.why-choose-us-SIS-card-orange {
  background: linear-gradient(135deg, #f57c00 0%, #ffca28 100%);
  color: #ffffff;
}

.why-choose-us-SIS-card-green {
  background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
  color: #ffffff;
}

.why-choose-us-SIS-card-pink {
  background: linear-gradient(135deg, #c62828 0%, #ef5350 100%);
  color: #ffffff;
}

.why-choose-us-SIS-icon-container i {
  background-image: linear-gradient(45deg, #ffca28, #fff176, #66bb6a, #4db6ac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-us-SIS {
  position: relative;
  background-image: url("../img/why.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.why-choose-us-SIS::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 22, 22, 0.92);
  z-index: 1;
}

.why-choose-us-SIS > .container {
  position: relative;
  z-index: 2;
}
.why-choose-us-SIS-header {
  margin-bottom: 36px;
}
.why-choose-us-SIS-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.why-choose-us-SIS-subtitle {
  font-size: 17px;
  color: #fff;
}

.why-choose-us-SIS-card {
  border-radius: 19px;
  box-shadow: 0 8px 40px rgba(52, 41, 118, 0.13);
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  transition: transform 0.23s, box-shadow 0.28s;
  height: 100%;
}
.why-choose-us-SIS-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 42px rgba(60, 40, 120, 0.18);
}

.why-choose-us-SIS-card-purple {
  background: linear-gradient(135deg, #72419f 0%, #42154f 100%);
  color: #fff;
}
.why-choose-us-SIS-card-blue {
  background: linear-gradient(135deg, #298d97 0%, #06626a 100%);
  color: #fff;
}
.why-choose-us-SIS-card-teal {
  background: linear-gradient(135deg, #88c168 0%, #6bae53 100%);
  color: #fff;
}
.why-choose-us-SIS-card-orange {
  background: linear-gradient(135deg, #b75e3c 0%, #b5703f 100%);
  color: #fff;
}
.why-choose-us-SIS-card-green {
  background: linear-gradient(135deg, #1b7d56 0%, #2f8c3c 100%);
  color: #fff;
}
.why-choose-us-SIS-card-pink {
  background: linear-gradient(135deg, #8c2c70 0%, #ae4786 100%);
  color: #fff;
}

.why-choose-us-SIS-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-choose-us-SIS-card-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.3;
}
.why-choose-us-SIS-card-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
  flex: 1;
}
.why-choose-us-SIS-card-body ul li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.why-choose-us-SIS-card-body ul li i {
  color: #ffe475;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.why-choose-us-SIS-card-body p {
  margin-bottom: 0;
  font-size: 0.96em;
  font-weight: 500;
  opacity: 0.93;
  margin-top: auto;
  font-style: italic;
}

.why-choose-us-SIS-icon-container {
  background: rgba(255, 222, 89, 0.14);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.why-choose-us-SIS-icon-container i {
  font-size: 1.8rem;
  color: #fff;
  background-image: linear-gradient(45deg, #fff, #fff, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.warning-container {
  background: #ffffff;
  min-height: 100vh;
  padding: 60px 0;
  margin-bottom: -45px;
  position: relative;
}

.warning-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(32, 116, 129, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 193, 7, 0.03) 0%,
      transparent 50%
    );
  animation: warningFloat 15s ease-in-out infinite;
}

@keyframes warningFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.warning-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  background: linear-gradient(135deg, #207481 0%, #1a5f6b 50%, #2c7a87 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(32, 116, 129, 0.25);
  margin: 0 auto 60px;
  max-width: 1100px;
}

.alert-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 25px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.alert-badge i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ffc107;
  animation: warningBlink 1.5s ease-in-out infinite;
}

@keyframes warningBlink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0.7;
  }
}

.warning-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.warning-subtitle {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.warning-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.warning-section {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 8px 30px rgba(32, 116, 129, 0.08);
  transition: all 0.4s ease;
  border: 2px solid #f8f9fa;
  position: relative;
  overflow: hidden;
}

.warning-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #207481, #ffc107);
}

.warning-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(32, 116, 129, 0.15);
  border-color: #207481;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8f4f5;
}

.warning-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #207481, #1a5f6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(32, 116, 129, 0.25);
  transition: all 0.3s ease;
}

.warning-section:hover .warning-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(32, 116, 129, 0.4);
}

.section-title {
  color: #222;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.warning-points {
  space-y: 20px;
}

.warning-point {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #f0f9fa, #f5fcfd);
  border-radius: 15px;
  border-left: 5px solid #207481;
  border: 1px solid #d4edda;
  transition: all 0.3s ease;
  position: relative;
}

.warning-point:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, #e8f6f7, #f0f9fa);
  box-shadow: 0 8px 25px rgba(32, 116, 129, 0.1);
  border-color: #4a9aa8;
}

.point-icon {
  margin-right: 15px;
  margin-top: 2px;
  min-width: 25px;
}

.point-icon i {
  color: #dc3545;
  font-size: 1.3rem;
  animation: errorShake 3s ease-in-out infinite;
}

.point-content {
  flex: 1;
}

.point-title {
  color: #222;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.point-description {
  color: #222;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

/* Alternate sections with accent colors */
.warning-section:nth-child(even) {
  border-left: 5px solid #ffc107;
}

.warning-section:nth-child(even) .warning-icon {
  background: linear-gradient(135deg, #ffc107, #e6ac00);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.25);
}

.warning-section:nth-child(even):hover .warning-icon {
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
}

.warning-section:nth-child(even) .warning-point {
  border-left-color: #ffc107;
  background: linear-gradient(135deg, #fffdf0, #fffef5);
  border-color: #ffeaa7;
}

.warning-section:nth-child(even) .warning-point:hover {
  background: linear-gradient(135deg, #fffceb, #fffdf0);
  border-color: #ffcc33;
}

.warning-section:nth-child(even) .section-title {
  color: #b8860b;
}

.warning-section:nth-child(even) .point-title {
  color: #996515;
}

/* Blue accent for some variety matching logo */
.warning-section:nth-child(3n) {
  border-left: 5px solid #007bff;
}

.warning-section:nth-child(3n) .warning-icon {
  background: linear-gradient(135deg, #007bff, #0056cc);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.25);
}

.warning-section:nth-child(3n):hover .warning-icon {
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.warning-section:nth-child(3n) .warning-point {
  border-left-color: #007bff;
  background: linear-gradient(135deg, #f0f6ff, #f5f9ff);
  border-color: #cce7ff;
}

.warning-section:nth-child(3n) .warning-point:hover {
  background: linear-gradient(135deg, #e6f3ff, #f0f6ff);
  border-color: #66b3ff;
}

.warning-section:nth-child(3n) .section-title {
  color: #0056cc;
}

.warning-section:nth-child(3n) .point-title {
  color: #003d99;
}
.warning-section {
  opacity: 0;
  transform: translateY(30px);
  animation: sectionFadeIn 0.8s ease forwards;
}

.warning-section:nth-child(1) {
  animation-delay: 0.1s;
}
.warning-section:nth-child(2) {
  animation-delay: 0.2s;
}
.warning-section:nth-child(3) {
  animation-delay: 0.3s;
}
.warning-section:nth-child(4) {
  animation-delay: 0.4s;
}
.warning-section:nth-child(5) {
  animation-delay: 0.5s;
}
.warning-section:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes errorShake {
  0%,
  50%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-1px);
  }
  75% {
    transform: translateX(1px);
  }
}

@keyframes shashi-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@media (max-width: 992px) {
  .warning-title {
    font-size: 2.8rem;
  }

  .warning-subtitle {
    font-size: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .warning-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .why-choose-us-SIS-card {
    margin-bottom: 20px;
  }

  .free-registration-SIS-contact-info {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .free-registration-SIS-achievement-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .warning-container {
    padding: 40px 0;
  }

  .warning-header {
    padding: 30px 15px;
    margin-bottom: 40px;
  }

  .warning-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .warning-subtitle {
    font-size: 1.3rem;
  }

  .warning-description {
    font-size: 1.1rem;
  }

  .warning-section {
    padding: 15px;
    margin-bottom: -10px;
  }

  .section-title {
    font-size: 1rem;
  }

  .warning-point {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .point-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .point-title {
    font-size: 0.85rem;
  }

  .why-choose-us-SIS-card {
    min-height: 260px;
    padding: 20px 18px;
  }
  .why-choose-us-SIS-title {
    font-size: 1.8rem;
  }
  .why-choose-us-SIS-card-body h3 {
    font-size: 1.15rem;
  }

  .free-registration-SIS-title {
    font-size: 2.2rem;
    color: #006666;
  }

  .free-registration-SIS-achievements-title {
    font-size: 1.5rem;
    color: #1a237e;
  }

  .free-registration-SIS-achievement-card {
    padding: 20px;
    gap: 15px;
  }

  .free-registration-SIS-achievement-icon {
    width: 50px;
    height: 50px;
  }

  .free-registration-SIS-achievement-icon i {
    font-size: 1.3rem;
  }

  .free-registration-SIS-cta {
    padding: 30px 20px;
  }

  .free-registration-SIS-cta-title {
    font-size: 1.6rem;
  }

  .child-learn-SIS-title,
  .study-material-SIS-title {
    font-size: 1.8rem;
  }

  .child-learn-SIS-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .child-learn-SIS-icon {
    width: 60px;
    height: 60px;
  }

  .study-material-SIS-timer-section {
    padding: 30px 20px;
  }

  .faqs-SIS-title {
    font-size: 2rem;
  }

  .faqs-SIS-question {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .faqs-SIS-question h4 {
    padding-right: 0;
  }

  .faqs-SIS-answer-content {
    padding: 20px;
  }

  .faqs-SIS-contact-cta {
    padding: 30px 20px;
  }

  .faqs-SIS-contact-cta h3 {
    font-size: 1.5rem;
  }

  .about-us-SIS-title {
    font-size: 2.2rem;
  }

  .about-us-SIS-heading {
    font-size: 1.8rem;
  }

  .about-us-SIS-image {
    height: 300px;
  }

  .about-us-SIS-content {
    padding: 30px 0;
  }

  .about-us-SIS-value-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .about-us-SIS-badge {
    padding: 10px 20px;

    font-size: 12px;
  }
  .about-us-SIS-title {
    font-size: 1.8rem;
  }

  .about-us-SIS-heading {
    font-size: 1.5rem;
  }

  .about-us-SIS-description {
    font-size: 16px;
  }

  .about-us-SIS-image {
    height: 250px;
  }
  .about-us-SIS-highlight {
    margin-bottom: -1px;

    margin-top: -17px;
  }
  .about-us-SIS-value-text p {
    text-align: justify;
  }
  .about-us-SIS-value-item {
    padding: 13px;
  }
  .about-two-SIS {
    padding: 0px 0 0px;
  }

  .faqs-SIS-title {
    font-size: 26px;
  }
  .faqs-SIS-subtitle {
    font-size: 16px;
  }
  .faqs-SIS-question h4 {
    font-size: 16px;
    text-align: justify;
  }
  .faqs-SIS-answer-content p {
    font-size: 15px;
  }
  .faqs-SIS-contact-cta h3 {
    font-size: 1.3rem;
  }
  .faqs-SIS-contact-cta p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .faqs-SIS-contact-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
  .faqs-SIS-question {
    padding: 15px;
  }
  .faqs-SIS {
    padding: 30px 0;
  }

  .faqs-SIS-answer-content {
    padding: 15px;
  }

  .faqs-SIS-contact-btn {
    width: 100%;
    justify-content: center;
  }

  .child-learn-SIS-title,
  .study-material-SIS-title,
  .study-material-SIS-timer-header h3 {
    font-size: 26px;
  }
  .child-learn-SIS-content h4,
  .study-material-SIS-bonus-card h4 {
    font-size: 17px;
    text-align: justify;
  }
  .child-learn-SIS-content p,
  .study-material-SIS-bonus-card p {
    text-align: justify;
  }
  .study-material-SIS-bonus-img {
    height: 150px;
  }

  .study-material-SIS-card-content {
    padding: 15px;
  }

  .free-registration-SIS-title {
    font-size: 26px;
    color: #fff;
  }

  .free-registration-SIS-register-btn {
    padding: 10px 30px;
    font-size: 14px;
    border-color: #ffca28;
  }
  .free-registration-SIS-achievements-title {
    color: #fff;
    font-size: 16px;
  }
  .free-registration-SIS-cta-title {
    font-size: 24px;
  }
  .free-registration-SIS-achievement-content h4 {
    font-size: 16px;
  }
  .free-registration-SIS-cta-subtitle {
    font-size: 16px;
  }
  .free-registration-SIS-contact-item span {
    font-size: 13px;
  }
  .free-registration-SIS-contact-item {
    padding: 10px 19px;
  }
  .free-registration-SIS-achievements-header {
    margin-top: -30px;
  }
  .free-registration-SIS-achievement-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .free-registration-SIS-contact-item {
    width: 100%;
    justify-content: center;
  }

  .why-choose-us-SIS-title {
    font-size: 26px;
  }
  .why-choose-us-SIS-card {
    min-height: 220px;
    margin-top: -23px;
  }
  .why-choose-us-SIS {
    margin-bottom: -38px;
  }
  .why-choose-us-SIS-subtitle {
    font-size: 15px;
  }
  .why-choose-us-SIS-card-body h3 {
    font-size: 19px;
  }
  .why-choose-us-SIS-card-body ul li {
    font-size: 15px;
  }

  .warning-title {
    font-size: 26px;
  }
  .warning-subtitle {
    font-size: 15px;
  }
  .alert-badge {
    padding: 10px 20px;
    font-size: 13px;
  }

  .warning-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .point-title {
    font-size: 15px;
  }
  .warning-point {
    flex-direction: row;
    padding: 9px;
  }
  .warning-container {
    padding: 30px 0 69px;
  }
}
