* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

#breadcrumbs {
  background: #f8f9fa;
  padding: 30px 0;
  margin-bottom: 40px;
}

#breadcrumbs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

#breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 10px 0;
}

#breadcrumbs ol li {
  color: #666;
  font-size: 14px;
}

#breadcrumbs ol li::after {
  content: '/';
  margin-left: 10px;
  color: #999;
}

#breadcrumbs ol li:last-child::after {
  content: '';
}

#breadcrumbs ol li a {
  color: #e96b56;
  text-decoration: none;
  transition: all 0.3s ease;
}

#breadcrumbs ol li a:hover {
  text-decoration: underline;
}

#breadcrumbs h2 {
  font-size: 2rem;
  color: #333;
  margin: 0;
}

#team {
  padding: 60px 0;
  background: #f8f9fa;
}

#team .section-title {
  text-align: center;
  margin-bottom: 50px;
}

#team .section-title h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}

#team .section-title p {
  font-size: 18px;
  color: #666;
}

#team .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

#team .col-lg-4,
#team .col-md-6 {
  padding: 0 15px;
  margin-bottom: 30px;
}

#team .member {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
  padding: 30px 20px;
  width: 100%;
}

#team .member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(233, 107, 86, 0.3);
}

#team .member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid #e96b56;
  transition: all 0.3s;
}

#team .member:hover img {
  border-color: #d25e4a;
  transform: scale(1.05);
}

#team .member h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

#team .member span {
  display: block;
  font-size: 16px;
  color: #e96b56;
  font-weight: 600;
  margin-bottom: 15px;
}

#team .member p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

#team .member .social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#team .member .social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
  text-decoration: none;
}

#team .member .social a:hover {
  background: #e96b56;
  color: #fff;
  transform: translateY(-3px);
}

.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
  overflow: hidden;
}

.intro-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.animated-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  top: 60%;
  right: -5%;
  animation-delay: 3s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  bottom: -10%;
  left: 30%;
  animation-delay: 6s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  top: 20%;
  right: 20%;
  animation-delay: 9s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: contentFadeIn 1s ease;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.intro-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.logo-container {
  margin: 25px 0;
  animation: logoScale 1.2s ease;
}

@keyframes logoScale {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.logo-circle {
  display: inline-block;
  padding: 25px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.logo-circle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
  border-radius: 50%;
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo-circle img {
  max-width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.intro-title {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 800;
  margin: 25px 0 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: titleSlide 1s ease 0.3s both;
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  margin: 20px auto;
  border-radius: 2px;
  animation: dividerExpand 1s ease 0.5s both;
}

@keyframes dividerExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

.intro-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  animation: subtitleFade 1s ease 0.7s both;
}

@keyframes subtitleFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cbse-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  margin-top: 10px;
  animation: badgeFade 1s ease 0.9s both;
}

@keyframes badgeFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cbse-icon {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cbse-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.cbse-text strong {
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
}

.loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin: 30px auto 0;
  overflow: hidden;
  animation: barFade 1s ease 1.1s both;
}

@keyframes barFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  border-radius: 10px;
  animation: loadProgress 1.5s ease-in-out;
}

@keyframes loadProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.search-btn-container {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

.search-btn {
  background: linear-gradient(135deg, #e96b56 0%, #d25e4a 100%);
  color: white;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(233, 107, 86, 0.5);
  transition: all 0.3s;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.search-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.search-btn:hover::before {
  width: 300px;
  height: 300px;
}

.search-btn:hover {
  background: linear-gradient(135deg, #d25e4a 0%, #e96b56 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(233, 107, 86, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.search-modal-content {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #333;
  padding: 40px;
  border-radius: 25px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(233, 107, 86, 0.1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.search-modal h2 {
  color: #e96b56;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.search-modal h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #e96b56, transparent);
}

.search-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 300;
  background: none;
  border: none;
}

.search-modal .close-btn:hover {
  color: #e96b56;
  background: rgba(233, 107, 86, 0.12);
  transform: rotate(90deg) scale(1.1);
}

.search-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  margin-top: 20px;
  border-radius: 50px;
  transition: all 0.3s;
  background: #fff;
}

.search-input:focus {
  outline: none;
  border-color: #e96b56;
  box-shadow: 0 0 0 5px rgba(233, 107, 86, 0.12);
  transform: translateY(-1px);
}

.search-results {
  list-style-type: none;
  margin-top: 25px;
  padding: 0;
}

.search-results li {
  margin: 12px 0;
  padding: 14px 18px;
  font-size: 14px;
  cursor: pointer;
  color: #555;
  border-radius: 12px;
  transition: all 0.3s;
  background: #fff;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-results li:hover {
  background: linear-gradient(135deg, #fff5f3 0%, #ffe8e3 100%);
  color: #e96b56;
  padding-left: 24px;
  border-left-color: #e96b56;
  box-shadow: 0 4px 15px rgba(233, 107, 86, 0.25);
  transform: translateX(5px);
}

#hero {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
  perspective: 1500px;
}

.carousel-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item {
  position: absolute;
  width: 50%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active {
  opacity: 1;
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  animation: zoomInSlide 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomInSlide {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.carousel-item.prev {
  opacity: 0.5;
  z-index: 2;
  transform: translate(-125%, -50%) scale(0.82) rotateY(8deg);
  filter: blur(4px) brightness(0.75);
  pointer-events: auto;
}

.carousel-item.next {
  opacity: 0.5;
  z-index: 2;
  transform: translate(25%, -50%) scale(0.82) rotateY(-8deg);
  filter: blur(4px) brightness(0.75);
  pointer-events: auto;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  transition: all 0.3s;
}

.carousel-item.active img {
  box-shadow: 0 25px 70px rgba(233, 107, 86, 0.5);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(233, 107, 86, 0.96) 0%, rgba(210, 94, 74, 0.96) 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  z-index: 100;
  width: 56px;
  height: 56px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: linear-gradient(135deg, #d25e4a 0%, #e96b56 100%);
  transform: translateY(-50%) scale(1.25);
  box-shadow: 0 10px 30px rgba(233, 107, 86, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
}

.carousel-prev:active,
.carousel-next:active {
  transform: translateY(-50%) scale(1.15);
}

#featured {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

#featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #e96b56, transparent);
}

#featured .icon-box {
  text-align: center;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
  border-radius: 18px;
  margin-bottom: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(233, 107, 86, 0.05);
}

#featured .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e96b56, #d25e4a);
  transition: all 0.5s;
}

#featured .icon-box:hover::before {
  left: 0;
}

#featured .icon-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(233, 107, 86, 0.03);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

#featured .icon-box:hover::after {
  width: 500px;
  height: 500px;
}

#featured .icon-box:hover {
  transform: translateY(-18px);
  box-shadow: 0 18px 45px rgba(233, 107, 86, 0.28);
  border-color: rgba(233, 107, 86, 0.15);
}

#featured .icon-box i,
#featured .icon-box .icon-diagram,
#featured .icon-box .icon-mortarboard,
#featured .icon-box .icon-book {
  font-size: 48px;
  margin-bottom: 22px;
  display: block;
  font-style: normal;
  color: #e96b56;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

#featured .icon-box:hover i,
#featured .icon-box:hover .icon-diagram,
#featured .icon-box:hover .icon-mortarboard,
#featured .icon-box:hover .icon-book {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 5px 15px rgba(233, 107, 86, 0.4));
}

#featured .icon-box h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

#featured .icon-box h3 a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

#featured .icon-box h3 a:hover {
  color: #e96b56;
}

#featured .icon-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

#about {
  padding: 80px 0;
  position: relative;
}

#about .content {
  padding-top: 20px;
}

#about .content h2 {
  font-size: 1.9rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #333;
}

#about .content hr {
  border: 0;
  height: 4px;
  background: linear-gradient(90deg, #e96b56, #d25e4a, transparent);
  width: 90px;
  margin-bottom: 28px;
  border-radius: 2px;
}

#about .content p {
  text-align: justify;
  font-size: 15px;
  margin-top: 20px;
  line-height: 1.8;
  color: #555;
}

#about img {
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  width: 100%;
  transition: all 0.4s;
  border: 3px solid rgba(233, 107, 86, 0.1);
}

#about img:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 50px rgba(233, 107, 86, 0.35);
  border-color: rgba(233, 107, 86, 0.3);
}

#services {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #e96b56, transparent);
}

#services .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

#services .col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
  display: flex;
}

#services .icon-box {
  text-align: center;
  padding: 38px 30px;
  transition: all 0.4s;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(233, 107, 86, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 300px;
}

#services .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e96b56, #d25e4a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

#services .icon-box:hover::before {
  transform: scaleX(1);
}

#services .icon-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(233, 107, 86, 0.04);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

#services .icon-box:hover::after {
  width: 600px;
  height: 600px;
}

#services .icon-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(233, 107, 86, 0.3);
  border-color: rgba(233, 107, 86, 0.2);
}

#services .icon-box .icon {
  margin-bottom: 22px;
  font-size: 52px;
  color: #e96b56;
  font-style: normal;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 85px;
  height: 85px;
  line-height: 85px;
  background: rgba(233, 107, 86, 0.08);
  border-radius: 50%;
}

#services .icon-box:hover .icon {
  transform: scale(1.15) rotate(360deg);
  background: rgba(233, 107, 86, 0.15);
  box-shadow: 0 8px 25px rgba(233, 107, 86, 0.3);
}

#services .icon-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

#services .icon-box h4 a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

#services .icon-box h4 a:hover {
  color: #e96b56;
}

#services .icon-box p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
}

#clients {
  padding: 80px 0;
}

#clients .section-title {
  margin-bottom: 50px;
}

#clients .video-box {
  margin-bottom: 30px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

#clients .video-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid rgba(233, 107, 86, 0.1);
  border-radius: 18px;
  transition: all 0.3s;
  pointer-events: none;
}

#clients .video-box:hover::before {
  border-color: rgba(233, 107, 86, 0.4);
}

#clients .video-box:hover {
  transform: translateY(-8px);
}

#clients iframe {
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  width: 100%;
  transition: all 0.3s;
}

#clients .video-box:hover iframe {
  box-shadow: 0 18px 45px rgba(233, 107, 86, 0.35);
}

.section-title {
  text-align: center;
  padding: 40px 0;
  position: relative;
}

.section-title h2 {
  font-size: 2.3rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 5px;
  background: linear-gradient(90deg, #e96b56, #d25e4a);
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(233, 107, 86, 0.4);
}

@media (max-width: 991px) {
  #hero {
    height: 60vh;
  }
  .carousel-item {
    width: 65%;
    height: 75%;
  }
  #services .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  #featured,
  #about,
  #services,
  #clients {
    padding: 60px 0;
  }
  #team .section-title h2 {
    font-size: 2rem;
  }
  #team .member img {
    width: 130px;
    height: 130px;
  }
  #team .member h4 {
    font-size: 18px;
  }
  #team .member span {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 50vh;
  }
  .carousel-item {
    width: 85%;
    height: 70%;
  }
  .carousel-item.prev,
  .carousel-item.next {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }
  .carousel-prev,
  .carousel-next {
    padding: 12px;
    font-size: 20px;
    width: 46px;
    height: 46px;
  }
  #services .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #services .icon-box {
    min-height: auto;
  }
  .intro-content {
    max-width: 90%;
    padding: 40px 25px;
  }
  .intro-title {
    font-size: 1.8rem;
  }
  .logo-circle img {
    max-width: 90px;
  }
  .intro-subtitle {
    font-size: 0.95rem;
  }
  .cbse-badge {
    flex-direction: column;
    gap: 8px;
    padding: 10px 18px;
  }
  .cbse-text {
    font-size: 12px;
    text-align: center;
  }
  .shape {
    filter: blur(40px);
  }
  .shape-1, .shape-2, .shape-3, .shape-4 {
    width: 200px;
    height: 200px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  #about .content h2 {
    font-size: 1.5rem;
  }
  #about .content p {
    font-size: 14px;
  }
  .search-btn {
    padding: 9px 18px;
    font-size: 15px;
  }
  #breadcrumbs {
    padding: 25px 0;
  }
  #breadcrumbs h2 {
    font-size: 1.5rem;
  }
  #team {
    padding: 40px 0;
  }
  #team .section-title {
    margin-bottom: 40px;
  }
  #team .section-title h2 {
    font-size: 1.8rem;
  }
  #team .section-title p {
    font-size: 16px;
  }
  #team .member {
    padding: 25px 15px;
  }
  #team .member img {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }
  #team .member h4 {
    font-size: 17px;
  }
  #team .member span {
    font-size: 14px;
  }
  #team .member p {
    font-size: 13px;
  }
  #team .member .social a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #hero {
    height: 40vh;
  }
  .carousel-item {
    width: 92%;
    height: 65%;
  }
  .carousel-prev,
  .carousel-next {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .intro-content {
    padding: 30px 20px;
  }
  .intro-title {
    font-size: 1.5rem;
  }
  .logo-circle img {
    max-width: 75px;
  }
  .logo-circle {
    padding: 18px;
  }
  .intro-badge {
    font-size: 10px;
    padding: 6px 16px;
  }
  .intro-subtitle {
    font-size: 0.85rem;
  }
  .cbse-text {
    font-size: 11px;
  }
  .cbse-icon {
    font-size: 16px;
  }
  .section-title h2 {
    font-size: 1.7rem;
  }
  #featured .icon-box,
  #services .icon-box {
    padding: 30px 22px;
  }
  .search-modal-content {
    padding: 30px;
  }
  #breadcrumbs {
    padding: 20px 0;
  }
  #breadcrumbs h2 {
    font-size: 1.3rem;
  }
  #team .section-title h2 {
    font-size: 1.6rem;
  }
  #team .section-title p {
    font-size: 14px;
  }
  #team .member {
    padding: 20px 15px;
  }
  #team .member img {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }
  #team .member h4 {
    font-size: 16px;
  }
  #team .member span {
    font-size: 13px;
  }
  #team .member p {
    font-size: 12px;
  }
  #team .member .social {
    gap: 8px;
  }
  #team .member .social a {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}
