/* devyani code  */
/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  /*background-color: rgb(235, 218, 218);*/
}

/* ===== HEADER SECTION ===== */
.header {
  margin-bottom: 2.5rem;
}

.logo-img {
  height: 60px;
  margin-left: 35px;
}

.mt-7 {
  margin-top: 2%;
}

.info-box {
  font-size: 14px;
  margin-right: 35px;
}

/* ===== MAIN SECTION ===== */
.main-section {
  margin-left: 30px;
  margin-right: 20px;
  padding: 2rem 0;
}

/* Left Column Styles */
.left-column {
  min-width: 220px;
  padding-right: 2rem;
}

.main-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.sub-title {
  font-weight: normal;
  margin-bottom: 10px;
}

.description {
  font-size: 14px;
  line-height: 1.6;
}

/* Middle Column Styles */
.middle-column {
  min-width: 220px;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
}

/* Ensure the row inside middle-column behaves correctly */
.middle-column .row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* Ensure the row takes full width */
}

/* Ensure the columns inside the row are side by side on medium screens */
.middle-column .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}


.section-title {
  margin-bottom: 1.5rem;
  font-weight: bold;
  font-size: 1.25rem;
  text-transform: uppercase;
  position: relative;
}

.navigation-list {
  padding: 0;
  margin: 0;
}

.navigation-list li {
  margin-bottom: 0.75rem;
  margin-left: 0;
  margin-right: 0;
}

.nav-link {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: #fff !important;
}

.navbar-expand-lg .navbar-collapse {

  margin-left: 50px;
}

.nav-link:hover {
  color: #0056b3;
  text-decoration: none;
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 8%;
}

.places-column,
.things-column {
  padding: 0 15px;
}

/* Right Column Styles */
.right-column {
  min-width: 300px;
  padding-left: 2rem;
}

.hero-image {
  border: 1px solid #ccc;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* ===== RED BARS SECTION ===== */
.red-bars {
  margin-top: 30px;
  margin-left: 24px;
  margin-right: 32px;
}

.red-bar {
  background-color: red;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  text-align: left;
  border-radius: 0;
}

.left-bar {
  margin-right: 5px;
}

.right-bar {
  margin-left: 5px;
}

/* ===== CONTENT CARDS SECTION ===== */
/* .content-section {
  margin-top: 70px;
} */

.content-card {
  padding: 15px;
  height: 100%;
  background-color: #fff;
}

.card-title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 1.1rem;
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.card-content {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large screens and up */
@media (min-width: 992px) {
  .middle-column .row {
    gap: 6rem !important;
  }
}

/* Force horizontal layout for middle column on medium screens and up */
@media (min-width: 768px) {
  .middle-column .row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    /* Prevent wrapping */
  }

  .middle-column .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  /* .banner-h {
    margin-top: 43%;
  } */

  .banner {
    background: url(images/banner.jpg);
    background-repeat: no-repeat;
    height: auto;
    background-size: cover;
  }
}


/* Medium screens */
@media (max-width: 991.98px) {
  .main-section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .logo-img {
    margin-left: 15px;
  }

  .info-box {
    margin-right: 15px;
  }

  .red-bars {
    margin-left: 15px;
    margin-right: 15px;
  }

  .middle-column {
    margin-left: 0;
  }

  .left-column,
  .right-column {
    padding: 0;
  }
}

/* Small screens */
@media (max-width: 767.98px) {
  .main-title {
    font-size: 28px;
  }

  .hero-image {
    margin-bottom: 10px;
  }

  .red-bar {
    margin-bottom: 10px;
  }

  .left-bar,
  .right-bar {
    margin: 0;
  }

  .places-column,
  .things-column {
    padding: 0;
  }

  .section-title {
    margin-top: 1.5rem;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .banner {
    background: url(images/banner.jpg);
    background-repeat: no-repeat;
    height: auto !important;
    background-size: cover;
  }

  .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .main-section {
    margin-left: 0;
    margin-right: 0;
  }

  .logo-img {
    margin-left: 0;
    height: 50px;
  }

  .info-box {
    margin-right: 0;
    font-size: 12px;
  }

  .red-bars {
    margin-left: 0;
    margin-right: 0;
  }

  .main-title {
    font-size: 24px;
  }

  .navigation-list li {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ===== HOVER EFFECTS & INTERACTIONS ===== */
.content-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-image {
  transition: transform 0.2s ease;
}

.card-image:hover {
  transform: scale(1.02);
}

.red-bar {
  transition: background-color 0.2s ease;
}

.red-bar:hover {
  background-color: #cc0000;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
a:focus,
.nav-link:focus {
  outline: none;
  outline-offset: 0px;
}

.card-image:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {

  .red-bars,
  .hero-image {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }

  .content-card {
    break-inside: avoid;
    margin-bottom: 20px;
  }
}


.pre-service-heading {
  font-family: 'Playfair Display', serif !important;
  font-size: 30px;
  font-weight: 600;
}

.pre-image i {
  font-size: 30px;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(to right, #0d65a8, #fed101, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);

}

.pre-service-heading span {
  background: linear-gradient(90deg, #0d65a8, #0aa7df);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pre-class {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.pre-class-image {
  width: 15%;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  /* margin: 15px 25px 15px 0; */
}

.pre-class-image p {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}

.pre-image {
  width: 100%;
  /* background: #fff; */
  border-radius: 19px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 80px; */
}

.pre-box {
  width: 45%;
  height: 475px;
}

.pre-box img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

@media screen and (max-width: 720px) {
  .pre-service-heading {
    font-size: 23px;
  }

  .pre-class {
    justify-content: center;
  }

  .pre-class-image {
    width: 14%;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin: 5px;
  }

  .pre-box {
    width: 100%;
    height: 250px;
  }
}

.about-timeline {
  width: 100%;
  /* max-width: 1200px; */
  margin: auto;
  padding: 2rem;
  background-color: #f9f9f9;
}

.about-timeline h3 {
  text-align: center;
  margin-bottom: 2rem;
  /* font-size: 2rem; */
  color: #005BA5;
}

.about-timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 4px solid #ccc;
  position: relative;
}

.about-timeline ul li {
  position: relative;
  margin: 1rem 0;
  padding-left: 2rem;
}

.about-timeline ul li:nth-child(1)::before {
  background-color: #F54B42;
}

.about-timeline ul li:nth-child(2)::before {
  background-color: #00B0E6;
}

.about-timeline ul li:nth-child(3)::before {
  background-color: #FFD43B;
}

.about-timeline ul li:nth-child(4)::before {
  background-color: #005BA5;
}

.about-timeline ul li:nth-child(5)::before {
  background-color: #F54B42;
}

.about-timeline ul li:nth-child(6)::before {
  background-color: #00B0E6;
}

.about-timeline ul li:nth-child(7)::before {
  background-color: #FFD43B;
}

.about-timeline ul li:nth-child(8)::before {
  background-color: #005BA5;
}

.about-timeline ul li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: -0.7rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid white;
}

.about-timeline .date {
  font-weight: bold;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.about-timeline .descr {
  background-color: #fff;
  padding: 10px;
  border-radius: 0 0.5rem 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
  .about-timeline ul {
    border-left: none;
  }

  .about-timeline ul li {
    padding-left: 0;
  }

  .about-timeline ul li::before {
    display: none;
  }

  .about-timeline .descr {
    border-left: none;
    border-top: 3px solid;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  /* Mobile top border colors */
  .about-timeline ul li:nth-child(1) .descr {
    border-top-color: #F54B42;
  }

  .about-timeline ul li:nth-child(2) .descr {
    border-top-color: #00B0E6;
  }

  .about-timeline ul li:nth-child(3) .descr {
    border-top-color: #FFD43B;
  }

  .about-timeline ul li:nth-child(4) .descr {
    border-top-color: #005BA5;
  }

  .about-timeline ul li:nth-child(5) .descr {
    border-top-color: #4CADAD;
  }
}

.grey-bg {
  background-color: #f8f9fa;
}

.grey-bg-light {
  background-color: #f8f9fa;
}

/*** About ***/
.about-bg-content {
  background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
  background-size: 5px 5px;
}

.footer-gradient {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
}

.tab-button {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.tab-button:hover::before {
  left: 100%;
}

.tab-button.active {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.tab-button.active::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #3b82f6;
}

.content-panel {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  animation-delay: -2s;
}

.floating-element:nth-child(3) {
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.social-icon {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.grid-item {
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.grid-item:hover {
  background: rgba(6, 182, 212, 0.1);
  transform: translateX(5px);
  color: #06b6d4;
}

.section-title {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .tab-button.active::after {
    display: none;
  }
}


body {
  font-family: 'Poppins', sans-serif;
}





.logo-img {
  margin-top: -75px;
  display: flex;
  justify-content: center;
}


.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 70px;
  height: auto;
}

.board-section {
  padding: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.board-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.director-card {
  display: flex;
  width: calc(50% - 15px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.director-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin: 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.director-info {
  padding: 20px 20px 20px 0;
  flex: 1;
}

.director-role {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.director-name {
  margin: 5px 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.director-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

.read-toggle {
  color: #2d6cdf;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.read-toggle:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .director-card {
    flex-direction: column;
    width: 100%;
  }

  .director-image {
    margin: 20px auto 0;
  }

  .director-info {
    padding: 20px;
  }
}

.counter-section {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.counter-box {
  flex: 1;
  margin: 0 10px;
  text-align: center;
}

.counter {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(to right, #0d65a8, #0d65a8e0, #0aa7df, #0aa7df6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter+p {
  margin-top: 8px;
  font-size: 18px;
  color: #333;
}

/* Custom scrollbar for swiper */
.swiper-scrollbar {
  background: rgba(0, 0, 0, 0.05);
}

.swiper-scrollbar-drag {
  background: #06b6d4;
}