@charset "UTF-8";
/*

*******************************************
*******************************************


*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --main-fontFamily: "Inter", sans-serif;
  --colormerung: #800020;
  --primaryColor: #F87918;
  --secondaryColor: #1c4585;
  --blackColor: #151824;
  --whiteColor: #ffffff;
  --paragraphColor: #707070;
  --fontSize: 16px;
  --transition: .6s;
  
}
:root {
    --background: 0 0% 100%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 217 54% 16%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 36 100% 53%;
    --accent-foreground: 210 40% 95%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --radius: .5rem;
    --sidebar-background: 217 54% 16%;
    --sidebar-foreground: 210 40% 98%;
    --sidebar-primary: 36 100% 53%;
    --sidebar-primary-foreground: 217 54% 16%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
}

.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.pt-serif-bold {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}

.pt-serif-regular-italic {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.pt-serif-bold-italic {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: italic;
}
.tinos-regular {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: normal;
}

.tinos-bold {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: normal;
}

.tinos-regular-italic {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: italic;
}

.tinos-bold-italic {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: italic;
}

html {
    overflow: auto;
}

body {
    overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--main-fontFamily);
  color: var(--paragraphColor);
  font-weight: 400;
  font-size: var(--fontSize);
}

p {
  color: var(--paragraphColor);
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: var(--fontSize);
}

p:last-child {
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: 0 !important;
  transition: var(--transition);
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-75 {
  padding-bottom: 75px;
}
.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}
.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.ptb-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}
.mr-2 {
    margin-right: .5rem;
}
.items-start {
    align-items: flex-start;
}
.m-top8 {
    margin-top: 8px;
}
.pd-18 {
  padding: 18px;
}
.mt-16 {
  margin-top: 16px;
}
/*================================================
Default Btn Area CSS
=================================================*/
.default-btn {
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  padding: 10.5px 30px;
  background-color: #800020;
  color: var(--whiteColor);
  border-radius: 5px;
  transition: var(--transition);
}
.default-btn i {
  margin-left: 10px;
}
.default-btn:hover {
  background-color: var(--secondaryColor);
}
.option-item {
    display: flex;
    align-items: center;
    margin-left: 24px;

}

.Enquire {
    background-color: rgb(128 0 32 / var(--tw-bg-opacity, 1));
    border-radius: calc(var(--radius) - 2px);
    padding-top: 9px;
    padding-bottom: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
    opacity: 1;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    border: none;
    font-size: 14px;
}
.Enquire:hover {
  background-color: #800020e6;
}

.decorated-divider {
    position: relative;
    height: 2px;
    background-color: #fca311;
    margin: 1.5rem auto;
    width: 70%;
}
.decorated-divider:before {
    left: 0;
}

.decorated-divider:before, .decorated-divider:after {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #fca311;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.decorated-divider:after {
    right: 0;
}
.decorated-divider:before, .decorated-divider:after {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #fca311;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
/*================================================
Section Title CSS
=================================================*/
.section-title {
  margin-bottom: 40px;
}

.section-title h2 span {
  color: var(--primaryColor);
}
/* .section-title p {
  color: #969696;
  font-size: 25px;
  margin-top: 12px;
  margin-bottom: 0;
} */
.section-title p span {
  color: var(--primaryColor);
}
.section-title .bit-small {
  font-size: 25px;
}
.max-w {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.max-w896 {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}
/*================================================
Preloader Area CSS
=================================================*/
.preloader-area {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: var(--primaryColor);
}
.preloader-area .loader {
  left: 0;
  right: 0;
  top: 48%;
  position: absolute;
  transform: translateY(-48%);
}
.preloader-area .loader .waviy span {
  animation: flip 2s infinite;
  color: var(--whiteColor);
  display: inline-block;
  animation-delay: 0.2s;
  font-size: 45px;
  font-weight: 800;
}
.preloader-area .loader .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-area .loader .waviy span:nth-child(3) {
  animation-delay: 0.4s;
}
.preloader-area .loader .waviy span:nth-child(4) {
  animation-delay: 0.6s;
}
.preloader-area .loader .waviy span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes flip {
  0%, 80% {
    transform: rotateY(360deg);
  }
}



/*================================================
Page Banner Area CSS
=================================================*/
.page-banner-area {
  background-image: url(../images/page-banner-bg.jpg);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-banner-content {
  position: relative;
  z-index: 1;
}
.page-banner-content .list {
  display: flex;
  padding-left: 0;
  margin-bottom: 15px;
}
.page-banner-content .list li {
  list-style-type: none;
  margin-right: 37px;
  position: relative;
  font-size: 18px;
  color: var(--whiteColor);
}
.page-banner-content .list li::before {
  position: absolute;
  content: "/";
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--whiteColor);
}
.page-banner-content .list li a {
  color: var(--whiteColor);
  font-weight: 600;
}
.page-banner-content .list li a:hover {
  color: var(--primaryColor);
}
.page-banner-content .list li:last-child {
  margin-right: 0;
}
.page-banner-content .list li:last-child::before {
  display: none;
}
.page-banner-content h2 {
  font-size: 35px;
  margin-bottom: 0;
  font-weight: bold;
  color: var(--whiteColor);
}
.page-banner-content h2.max-width {
  max-width: 700px;
}
.page-banner-content::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -150px;
  background: #E5E8F0;
  height: 300px;
  width: 300px;
  border-radius: 300px;
  opacity: 0.5;
  z-index: -1;
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  overflow: hidden;
}

.about-image {
  position: relative;
  z-index: 1;
}
.about-image::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 505px;
  width: 505px;
  border-radius: 505px;
  background-color: #FAF7F0;
  z-index: -1;
  margin: auto;
}

.about-content {
  padding-left: 80px;
}
.about-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
}
.about-content .about-tabs .nav {
  border: none;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
.about-content .about-tabs .nav .nav-item {
  border: none;
  margin-right: 15px;
}
.about-content .about-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.about-content .about-tabs .nav .nav-item .nav-link {
  border: none;
  padding: 0 20px 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blackColor);
  position: relative;
  transition: var(--transition);
  font-family: "Lato", sans-serif;
}
.about-content .about-tabs .nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primaryColor);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.about-content .about-tabs .nav .nav-item .nav-link:hover, .about-content .about-tabs .nav .nav-item .nav-link.active {
  color: var(--primaryColor);
}
.about-content .about-tabs .nav .nav-item .nav-link:hover::before, .about-content .about-tabs .nav .nav-item .nav-link.active::before {
  opacity: 1;
  visibility: visible;
}


/*================================================
Welcome Area CSS
=================================================*/
          .custom-welcome-bg {
                background: #f8f1e0;
            }
            .welcome-title {
               font-weight: bold;
               font-size: 36px;
               color: #2d2d2d;
               margin-bottom: 0.5rem;
               font-family: Playfair Display, serif;
            }
            .welcome-desc {
               color: #374151;
               margin-bottom: 32px !important;
               font-family: Lato, sans-serif;
            }
            @media (max-width: 991px) {
                .welcome-desc {
                    padding: 0 20px;
                }
            }
            .welcome-card {
                border-radius: 12px;
                padding: 24px;
            }
            .welcome-card-title {
                font-size: 20px;
                font-family: Playfair Display, serif;
                margin-bottom: 12px;
                font-weight: 700;
            }
            .welcome-img {
                max-width: 100%;
                height: auto;
            }
            .welcome-blockquote {
                font-size: 1rem;
                color: #374151;
            }
            .welcome-blockquote-footer {
                color: #7a6f5a;
            }
            .welcome-section-heading {
                color: #800020;
                text-align: center;
            }
            .welcome-section-text {
                font-size: 14px;
                color: #374151;
                text-align: center;
            }
            .welcome-learn-more-btn {
                margin-top: 1rem;
            }

            .welcome-inner-area {
              max-width: 768px;
              margin-left: auto;
              margin-right: auto;
            }
            .fit-image {
              object-fit: cover;
              height: 198px;
              vertical-align: middle;
              width: 100%;
              margin-bottom: 16px;
            }
            .inner-part{
              margin-bottom: 24px;
            }
            .guides {
              font-size: 12px;
              margin-top: 4px;
              text-align: center;
            }

            .pragh-color {
               color: #374151;
               text-align: center;
               font-size: 15px;
           }
           .text-italic {
               font-style: italic;
               font-size: 15px;
               text-align: center;
           }
           .text-right {
               text-align: right;
               font-family: Playfair Display, serif;
               font-size: 16px;
               font-weight: 700;
           }
           .welcome-btn {
                font-size: 14px;
                padding: 8px 16px;
                width: 100%;
           }
           .welcome-btn:hover {
            background: #800020e6;
           }


/*================================================
Hero Area CSS
=================================================*/
.hero-section.custom-hero-bg {
            position: relative;
            min-height: 540px;
            background: linear-gradient(rgba(20,33,61,0.24), rgba(20,33,61,0.36)), url(../images/hero.png) center center / cover no-repeat;
        }
        .min-vh-hero {
            min-height: 540px;
        }
        .hero-content {
            z-index: 2;
            position: relative;
        }
        .hero-title {
            font-family: Playfair Display, serif;
            font-size: 60px;
            letter-spacing: 1px;
            color: #ffffff;
        }
        .hero-divider {
            width: 80px;
            height: 4px;
            background: #fca311;
            margin: 1rem auto 1.5rem auto;
            border-radius: 2px;
        }
        .hero-lead {
          font-size: 24px;
          margin-bottom: 24px;
          color: #ffffff;
          font-family: Lato, sans-serif;
          font-weight: 500;
        }
        .hero-subtitle {
           font-style: italic;
           font-size: 1.15rem;
           color: #ffffff;
           font-family: Playfair Display, serif;
           font-size: 20px;
           line-height: 28px;
           margin-bottom: 32px;
        }
        .hero-btn-primary {
           background: #800020;
           color: #fff;
           font-weight: 600;
           border-radius: 6px;
           padding: 8px 16px;
           font-size: 14px;
        }
        .hero-btn-primary:hover {
           background: #800020;
           color: #fff;
        }
        .hero-btn-outline {
           background: transparent;
           color: #fff;
           font-weight: 600;
           border-radius: 6px;
           padding: 8px 16px;
           font-size: 14px;
        }
        .hero-btn-outline:hover {
            background: #ffffff1a;
            color: hsl(var(--accent-foreground));
        }
                
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgb(20 33 61 / 0%);
            z-index: 1;
        }

/*================================================
academic-excellence-area
=================================================*/
      .academic-excellence-area.bg-white { background: #fff; }
        .academic-title {
            font-weight: bold;
            font-size: 2.2rem;
            color: #22223b;
        }
        .academic-desc {
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        .academic-card {
           background: #ffffff;
           padding: 24px;
           border-radius: .5rem;
        }
        .academic-card:hover {
          box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1) !important;
        }
        .academic-icon {
            background: #22223b;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        .academic-icon i {
            color: #fff;
            font-size: 2rem;
        }
        .academic-card-title {
            font-weight: 700;
            font-family: Playfair Display, serif;
            font-size: 20px;
            margin-bottom: 8px;
        }
        .academic-grade {
            color: #800020;
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 16px;
        }
        .academic-card-text {
            color: #555;
        }
        .academic-btn {
            padding: 0.75rem 2rem;
        }
        .academic-title {
          font-weight: bold;
          font-size: 36px;
          color: #2d2d2d;
          margin-bottom: 0.5rem;
          font-family: Playfair Display, serif;
        }
        .academic-icon svg {
          color: #fff;
        }
        .academic-btn {
          background: #fff;
          border: 1px solid #14213d;
          color: #14213d;
          font-weight: 500;
          padding: 12px 24px;
          font-size: 16px;
          font-family: Lato, sans-serif;
        }
        .academic-btn:hover {
          background: #14213d;
          color: #fff;
        }

        .academic-card-text {
          color: #4b5563;
          font-size: 15px;
          font-weight: 300;
        }


/*================================================
Contact Info Area CSS
=================================================*/
.contact-info-card {
  margin-bottom: 25px;
  text-align: center;
}
.contact-info-card .icon {
  position: relative;
  display: inline-block;
  height: 120px;
  width: 120px;
  border: 1px solid #DFDFDF;
  border-radius: 50%;
  text-align: center;
  transition: var(--transition);
  margin-bottom: 20px;
}
.contact-info-card .icon img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 80px;
}
.contact-info-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.contact-info-card p {
  margin-bottom: 0;
}
.contact-info-card p a {
  color: var(--paragraphColor);
}
.contact-info-card p a:hover {
  color: var(--primaryColor);
}
.contact-info-card:hover .icon {
  border: 1px solid var(--primaryColor);
}

/*================================================
Map Area CSS
=================================================*/
.map-wrap iframe {
  display: flex;
  width: 100%;
  border-radius: 15px;
  height: 510px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-form-wrap {
  max-width: 872px;
  margin: auto;
}
.contact-form-wrap .form-group {
  margin-bottom: 25px;
}
.contact-form-wrap .form-group label {
  color: var(--blackColor);
  display: block;
  margin-bottom: 5px;
}
.contact-form-wrap .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 55px;
  padding: 15px 20px;
  border-radius: 7px;
  border: 1px solid #DFDFDF;
  background: #F9FAFB;
  outline: 0;
  box-shadow: unset;
  color: #969696;
  transition: var(--transition);
}
.contact-form-wrap .form-group .form-control::-moz-placeholder {
  color: #969696;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-form-wrap .form-group .form-control::placeholder {
  color: #969696;
  transition: var(--transition);
}
.contact-form-wrap .form-group .form-control:focus {
  border: 1px solid var(--primaryColor);
}
.contact-form-wrap .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-form-wrap .form-group .form-control:focus::placeholder {
  color: transparent;
}
.contact-form-wrap .form-group textarea.form-control {
  display: flex;
  min-height: 200px;
}
.contact-form-wrap .form-group .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.contact-form-wrap .form-group .form-check .form-check-input {
  box-shadow: unset;
  border-radius: 3px;
  background-color: transparent;
  height: 25px;
  width: 25px;
  margin-top: 0;
  margin-right: 12px;
}
.contact-form-wrap .form-group .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.contact-form-wrap .form-group .form-check .form-check-label {
  color: var(--paragraphColor);
  margin-bottom: 0;
}
.contact-form-wrap .form-group .form-check .form-check-label a {
  color: var(--secondaryColor);
}
.contact-form-wrap .form-group .form-check .form-check-label a:hover {
  color: var(--primaryColor);
}
.contact-form-wrap .default-btn {
  width: 100%;
}

/*================================================
Campus-life Area CSS
=================================================*/
.campus-life-bg {
            background: #f8f1e0;
        }
        .campus-life-title {
            font-weight: bold;
            font-size: 2.2rem;
            color: #22223b;
        }
        .campus-life-desc {
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            font-family: Lato, sans-serif;
        }
        .campus-swiper-btn {
              background: #fff;
              width: 34px;
              height: 32px;
        }
        .campus-swiper-btn:hover {
              background: #ff9f0f;
        }
        .campus-swiper-btn:focus { outline: 2px solid #f4a259; }
        .campus-swiper-btn:hover .campus-swiper-btn-inner { box-shadow: 0 4px 16px rgba(244,162,89,0.18); }
        .campus-swiper-btn-inner {
            display:inline-block;
            width:40px;
            height:40px;
            border-radius:50%;
            background:#fff;
            box-shadow:0 2px 8px rgba(0,0,0,0.07);
            display:flex;
            align-items:center;
            justify-content:center;
        }
        .campus-life-slider { position: relative; }
        .campus-feature {
            background: #fff;
            border-left: 4px solid #f4a259;
            border-radius: 8px;
        }
        .campus-feature-title {
            font-weight: 700;
            color: #14213d;
            font-size: 20px;
            font-family: Playfair Display, serif;
            margin-bottom: 8px;
        }
        .campus-feature-desc {
            color: #555;
        }
        .campus-life-btn {
                padding: 13px 16px;
                background: #14213d;
                font-size: 14px;
                color: #fff;
                border-radius: calc(var(--radius) - 2px);
                white-space: nowrap;
                line-height: 1.25rem;
                font-weight: 700;
        }
        .campus-life-btn:hover {
            background: #14213de6;
            
        }
        .campus-life-title {
            font-weight: bold;
            font-size: 36px;
            color: #2d2d2d;
            margin-bottom: 0.5rem;
            font-family: Playfair Display, serif;
        }
        .swiper-img-wrapper img {
            overflow: hidden;
            object-fit: cover;
            height: 500px;
            vertical-align: middle;
            width: 100%;
            }

        @media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gap-6 {
    gap: 1.5rem
24px
;
}
.grid {
    display: grid
;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.pl-4 {
    padding-left: 1rem;
}
.font-playfair {
    font-family: Playfair Display, serif;
}
.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    font-size: 15px;
}
.pl-4 {
    padding-left: 1rem;
}

.border-school-gold {
    --tw-border-opacity: 1;
    border-left: 4px solid #f9a111;
}
.border-l-4 {
    border-left-width: 4px;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.text-school-navy {
   font-size: 20px;
   color: #14213d;
}
.ring-offset-background {
    --tw-ring-offset-color: hsl(0, 0%, 100%);
}
.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}
.font-medium {
    font-weight: 500;
}

/*================================================
Testimonials Area CSS
=================================================*/
.bg-testimonials {
            background: #f8f1e0;
        }
        .testimonials-title {
            font-weight: bold;
            font-size: 36px;
            color: #2d2d2d;
            margin-bottom: 0.5rem;
            font-family: Playfair Display, serif;
        }
        .testimonials-desc {
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            font-family: Lato, sans-serif;
        }
        .testimonial-card {
            transition: box-shadow 0.2s;
             display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            padding: 32px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        .testimonial-card:hover {
            box-shadow: 0 6px 32px rgba(244, 162, 89, 0.13);
        }
        .testimonial-quote {
            color: #f4a259;
            font-size: 1.6rem;
        }
        .testimonial-text {
          color: #374151;
          font-style: italic;
          font-size: 15px;
          font-weight: 300;
          margin-bottom: 24px;
           text-align: justify;
        }
        .testimonial-divider {
            margin: 1.5rem 0 1rem 0;
            color: #eee;
        }
        .testimonial-author {
            
            font-weight: 700;
            color: #22223b;
            font-family: "Playfair Display", serif;
            font-size: 16px;
        }
        .testimonial-role {
             color: #4b5563;
             font-size: 14px;
             font-weight: 300;
        }
        .testimonial-swiper-btn {
            position: absolute;
            top: 50%;
            z-index: 10;
            transform: translateY(-50%);
            border: none;
            background: transparent;
            padding: 0;
            cursor: pointer;
            transition: box-shadow 0.2s;
        }
        .events-shape {
          position: absolute;
        }
        .testimonial-swiper-btn-prev { left: 10px; }
        .testimonial-swiper-btn-next { right: 10px; }
        .testimonial-swiper-btn:focus { outline: 2px solid #f4a259; }
        .testimonial-swiper-btn:hover .testimonial-swiper-btn-inner { box-shadow: 0 4px 16px rgba(244,162,89,0.18); }
        .testimonial-swiper-btn-inner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 991px) {
            .testimonials-area .row > div {
                margin-bottom: 1.5rem;
            }
        }

/*================================================
News & Events Section Area CSS
=================================================*/
.h-192 {
    height: 182px;
    overflow: hidden;
}
.newsbox:hover, .eventsbox:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1) !important;
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;    
}
.bg-white { background: #fff; }
.news-events-title { 
    font-weight: 700;
    color: #22223b;
    font-family: Playfair Display, serif;
    font-size: 36px;

}
.news-events-desc { color: #555; max-width: 700px; margin: 0 auto; }
.news-title, .events-title { 
    font-weight: 700;
    color: #22223b;
    font-family: Playfair Display, serif;
    font-size: 24px;
    border-bottom: 2px solid orange;
    padding-bottom: .5rem;
    display: inline-block;
    font-family: Lato, sans-serif;
}

.news-divider, .events-divider {
    width: 80px; height: 4px; background: #f4a259; border-radius: 2px;
}
.news-date { 
    color: #800020;
    font-size: 14px;
 }
.news-card-title {
    font-weight: 700;
    font-family: Playfair Display, serif;
    font-size: 16px;
    color: #14213d;
  }
.news-card-text { 
    color: #555;
    font-size: 14px; 
}
.news-read-more { 
    color: #22223b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
 }
.news-read-more:hover {     
  color: #800020; 
}

.news-view-all, .events-view-all {
    text-underline-offset: 4px;
    text-decoration-line: underline;
    color: #14213d;
}
.news-view-all:hover{
  color: #800020;
} 
.events-view-all:hover{
  color: #800020;
}
.events-list { margin-top: 41px; }
.event-card { 
  background: #ffffff; 
}
.event-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1) !important;
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;    
}
.event-img {
    width: 80px; height: 60px; object-fit: cover; border-radius: 8px 0 0 8px;
}
.event-name { 
  color: #22223b;
  font-family: Playfair Display, serif;
}
.event-time, .event-location { 
    font-size: 14px;
    color: #4b5568;
}

/*================================================
Connect With Us CSS
=================================================*/
.connect-desc {
    font-family: Lato, sans-serif;
    margin-bottom: 32px;
}
.connect-follow-text {
    font-family: Lato, sans-serif;
    margin-top: 32px;
}

.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.flex {
    display: flex;
}
.duration-300 {
    animation-duration: .3s;
}
.duration-300 {
    transition-duration: .3s;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.rounded-full {
    border-radius: 9999px;
}

.space-x-6>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.border-school-navy {
    border: 1px solid;
}
.items-center {
    align-items: center;
}
.w-12 {
    width: 3rem;
}
.h-12 {
    height: 3rem;
}
.fb:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.fb:hover {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.fb:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.fb:hover {
    border-color: rgb(36 97 231);
}
.fb:hover {
    transform: scale(1.04) rotate(-2deg);    
}

.insta:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.insta:hover {
    --tw-text-opacity: 1;
    color: rgb(218 38 118);
}
.insta:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(253 242 248 / var(--tw-bg-opacity, 1));
}
.insta:hover {
    border-color: rgb(214 36 115);
}
.insta:hover {
    transform: scale(1.04) rotate(-2deg);    
}

.in:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.in:hover {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.in:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.in:hover {
    border-color: rgb(28 77 214);
}
.in:hover {
    transform: scale(1.04) rotate(-2deg);    
}

.ytb:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.ytb:hover {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.ytb:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.ytb:hover {
    border-color: rgb(218 40 40);
}
.ytb:hover {
    transform: scale(1.04) rotate(-2deg);    
}

.loc:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.loc:hover {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.loc:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.loc:hover {
    border-color: rgb(22 159 72);
}
.loc:hover {
    transform: scale(1.04) rotate(-2deg);    
}
/*================================================
Not Found Area CSS
=================================================*/
.not-found-content img {
  margin-bottom: 35px;
}
.not-found-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}
.not-found-content .default-btn {
  margin-top: 15px;
}

/*================================================
Welcome Area CSS
=================================================*/

.heading-line {
    display: block;
    margin: auto;
    padding: 10px 0px;
}
.vimimo {
    color: #800020;
    text-align: center;
    font-size: 18px;
    padding-bottom: 10px;
    font-family: Playfair Display, serif;
  }

/*================================================
Admissions CTA Section Area CSS
=================================================*/
.bg-admissions { background: #14213d; }
.text-admissions {
   color: #fff; 
  }
.font-admissions { font-family: 'Inter', serif; }
.admissions-title { 
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    font-family: Playfair Display, serif;
}

.admissions-card {
    background: transparent;
    padding: 24px;
    border: 1px solid #fff3 !important;
   
}
.admissions-card:hover {
    background: #ffffff0d;
    padding: 24px;
}
.admissions-divider {
    width: 80px;
    height: 4px;
    background: #f4a259;
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}
.admissions-desc { 
    font-size: 18px;
    color: #ffffff;
    font-family: Lato, sans-serif;
 }
.admissions-card-title { 
    font-weight: 700;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 24px;
}
.admissions-card-text { 
  color: #fffc;
  font-size: 15px;
}
.admissions-btn {
    background: #fca311;
    color: #14213d;
    font-weight: 400;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
}

.admissions-btn:hover {
    background: #fca311e6;
}
.admissions-contact { 
    color: #fff;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 600;
}
.admissions-link { 
     color: #fca311;
    font-weight: 600;
}
.admissions-link:hover { color: #ffffff; font-weight: 600; }
/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 30px;
  text-align: center;
}
.pagination-area.css-top {
  margin-top: 45px;
}
.pagination-area .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-area .page-numbers {
  width: 50px;
  height: 50px;
  overflow: hidden;
  line-height: 50px;
  border-radius: 7px;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  background-color: var(--whiteColor);
  transition: var(--transition);
  font-weight: 500;
  margin-left: 5px;
  margin-right: 5px;
}
.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--whiteColor);
  background: var(--primaryColor);
}
.pagination-area .page-numbers.next {
  line-height: 50px;
  font-size: 22px;
  background-color: #F5F7FC;
}
.pagination-area .page-numbers.next:hover {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

/*================================================
Footer Area CSS
=================================================*/
.inner-footer {
      padding: 0px 61px;
}

/*================================================
Subpages Area CSS
=================================================*/
/* heritage section */

        .heritage-hero-section {
            position: relative;
            height: 350px;
            overflow: hidden;
        }
        .heritage-hero-img {
            object-fit: cover;
            height: 350px;
            width: 100%;
            filter: brightness(0.6);
            display: block;
        }
        .heritage-hero-title {
             font-family: 'Playfair Display', serif;
             font-weight: 700;
             color: #fff;
             margin-bottom: 16px;
             font-size: 60px;
        }
        .heritage-hero-content {
            z-index: 2;
        }
        .heritage-hero-divider {
             width: 96px;
             height: 4px;
             background: #fca311;
             margin-bottom: 16px;
        }
        .heritage-hero-desc {
            color: #fff;
            font-size: 20px;
            line-height: 1.75rem;
            font-family: Lato, sans-serif;
            max-width: 672px;
            margin: 0 auto;
        }
        .his-title {
           font-weight: bold;
           font-size: 36px;
           color: #2d2d2d;
           margin-bottom: 0.5rem;
           font-family: Playfair Display, serif;
        }
        .his-desc {
            color: #374151;
            margin-bottom: 32px !important;
            font-family: Lato, sans-serif;
        }
        .history-desc {
           font-size: 18px;
           font-family: Lato, sans-serif;
           text-align: center;
           margin-bottom: 32px;

        }
        .heritage-subtitle {
           color: #14213d;
           font-weight: 700;
           font-size: 24px;
           font-family: Playfair Display, serif;
           margin-bottom: 16px;
        }
        .heritage-yercaud-content p {
           color: #374151;
           font-size: 16px;
           font-family: Lato, sans-serif;           
        }
        .his-grid {
           display: grid;
           grid-template-columns: repeat(2, minmax(0, 1fr));
           gap: 3rem;
        }
        .heritage-img-wrapper {
              height: 368px;
        }

         .milestones-section {
            background: #f8f9fb;
        }
        .milestones-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: #22223b;
        }
        .milestone-card {
          background: #fff;
          border-radius: 7px;
          padding: 24px;
          border: 1px solid #e6e6ef;
          transition: box-shadow 0.2s;
          min-height: 300px;
          display: flex;
          flex-direction: column;
          align-items: center;
        }
        .milestone-card:hover {
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1) !important;
            transition-property: box-shadow;
            transition-timing-function: cubic-bezier(.4,0,.2,1);
            transition-duration: .15s;
        }
        .milestone-icon {
            width: 64px;
            height: 64px;
            background: #22223b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .milestone-icon-heart::before {
            content: "\2665";
            font-size: 2rem;
            color: #fff;
        }
        .milestone-icon-user::before {
            content: "\1F464";
            font-size: 2rem;
            color: #fff;
        }
        .milestone-icon-home::before {
            content: "\1F3E0";
            font-size: 2rem;
            color: #fff;
        }
        .milestone-icon-book::before {
            content: "\1F4D6";
            font-size: 2rem;
            color: #fff;
        }
        .milestone-icon-award::before {
            content: "\1F3C6";
            font-size: 2rem;
            color: #fff;
        }
        .milestone-icon-graduation::before {
            content: "\1F393";
            font-size: 2rem;
            color: #fff;
        }
        .milestone-icon-building::before {
            content: "\1F3E2";
            font-size: 2rem;
            color: #fff;
        }
        .milestone-icon-calendar::before {
            content: "\1F4C5";
            font-size: 2rem;
            color: #fff;
        }
        .milestone-year {
            font-size: 1.5rem;
            font-weight: 700;
            color: #a4161a;
            margin-bottom: 8px;
            font-family: 'Playfair Display', serif;
        }
        .milestone-heading {
            font-size: 16px;
            font-weight: 600;
            color: #22223b;
            margin-bottom: 8px;
            font-family: Lato, sans-serif;
            margin-bottom: 12px;
        }
        .milestone-desc {
          font-size: 14px;
          color: #4b5563;
        }
        .milestone-icon svg {
           color:#fff;
        }
        @media (max-width: 991px) {
            .milestone-card {
                min-height: 360px;
            }
        }
        @media (max-width: 767px) {
            .milestone-card {
                min-height: 0;
                padding: 24px 12px 20px 12px;
            }
        }

.educational-evolution-section {
        background: #fff;
    }
    .educational-evolution-title {
       font-family: 'Playfair Display', serif;
       font-size: 36px;
       font-weight: 700;
       color: #22223b;
       margin-bottom: 46px;
    }
    .educational-evolution-desc {
          font-size: 18px;
          color: #444;
          max-width: 900px;
          margin-left: auto;
          margin-right: auto;
          margin-bottom: 18px;
          font-family: Lato, sans-serif;
    }
    .educational-evolution-timeline {
        margin-top: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;        
    }
    .evolution-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .evolution-bar {
        width: 4px;
        min-width: 4px;
        height: 76px;
        background: #b11226;
        border-radius: 2px;
        margin-top: 0.4rem;
        margin-right: 0.5rem;
    }
    .evolution-period {
      font-size: 20px;
      font-weight: 700;
      color: #14213d;
      margin-bottom: 8px;
      font-family: Playfair Display, serif;
    }
    .evolution-desc {
       color: #444;
       font-size: 16px;
       font-family: Lato, sans-serif;
    }
    @media (max-width: 768px) {
        .educational-evolution-title {
            font-size: 2rem;
        }
        .educational-evolution-timeline {
            gap: 1.5rem;
        }
        .evolution-item {
            gap: 1rem;
        }
    }
   .infra-tittle {
    color: #14213d;
    font-weight: 700;
    font-size: 24px;
    font-family: Playfair Display, serif;
    margin-bottom: 16px;
   }

   .infrastructure-content p{
    color: #374151;
    font-size: 16px;
    font-family: Lato, sans-serif;

   }
   .infrastructure-title {
    font-weight: bold;
    font-size: 36px;
    color: #2d2d2d;
    margin-bottom: 48px;
    font-family: Playfair Display, serif;
   }

   .h328 {
    height: 328px;
  }
  .alumni-title {
    font-weight: bold;
    font-size: 36px;
    color: #2d2d2d;
    margin-bottom: 32px;
    font-family: Playfair Display, serif;
  }
  .alumni-content p{
    color: #374151;
    font-size: 18px;
    font-family: Lato, sans-serif;
  }

    .mission-title h2 {
    font-weight: bold;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 32px;
    font-family: Playfair Display, serif;
  }
  .mission-content p{
    color: #ffffff;
    font-size: 18px;
    font-family: Lato, sans-serif;
  }
  .mission-section {
    background: #14213d;
  }

  .life-shy-hero-section {
    background: #14213d;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .life-shy-hero-title {
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: Playfair Display, serif;
  }

  .life-shy-hero-desc {
    font-size:20px;
    margin-bottom: 24px;
    font-family: Lato, sans-serif;
    color: #fff;
    font-weight: 400;

  }
  .life-shy-hero-desc-bold {
    font-size:20px;
    font-family: Lato, sans-serif;
    color: #fff;
    font-weight: 600;

  }

  .bg-school-burgundy{
    background-color: #800020;
}
.w-24 {
    width: 6rem;
}
.h-1 {
    height: .25rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ft-16 {
    font-size: 16px;
    font-family: Lato, sans-serif;
}
.ft-18 {
    font-size: 18px;
}
.ft-20 {
    font-size: 20px;
}
.ft-24 {
    font-size: 24px;
}
.ft-36 {
    font-size: 36px;
}
.ft-48 {
    font-size: 48px;
}
.pd-16 {
    padding: 16px;
}
.pd-20 {
    padding: 20px;
}
.bg-gray-50 {
    background-color: #f9fafb;
}

.common-title {
    font-weight: bold;
    font-size: 36px;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    font-family: Playfair Display, serif;
    text-align: center;
}

.common-desc-full {
    font-size: 18px;
    color: #444;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    font-family: Lato, sans-serif;
    font-weight: 400;
    text-align: center;
}

.pd-24 {
    padding: 24px;
}

.space-y-6>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.font-lato {
    font-family: Lato, sans-serif;
}

.h-64 {
    height: 16rem;
}

.object-cover {
    object-fit: cover;
}

.w-full {
    width: 100%;
}
.mb-12 {
    margin-bottom: 12px;
}
.mb-32 {
    margin-bottom: 32px;
}
.mr-16 {
    margin-right: 16px;
}
.rounded-lg {
    border-radius: 8px;
}

.common-desc {
    font-size: 18px;
    color: #444;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    font-family: Lato, sans-serif;
    font-weight: 400;
    text-align: center;
}

.common-space {
    margin-bottom: 48px;
}
.italic {
    font-style: italic;
}

.bg-school-burgundy\/10 {
    background-color: #8000201a;
}
.text-center {
    text-align: center;
}
.pd-24 {
    padding: 24px;
}

.gap-8
  {
    gap: 2rem;
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.grid-cols-2
 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bg-school-navy\/10 {
    background-color: #14213d1a;
}

.h-full {
    height: 100%;
}

.lifeshadow:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1) !important;
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.w-8 {
    width: 8px;
}
.h-8 {
    height: 8px;
}
.rounded-full {
    border-radius: 9999px;
}

.glimpse-shy-section .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}
.glimpse-shy-section .card-img-top {
  height: 260px;
  object-fit: cover;
}
.glimpse-shy-section .carousel-control-prev-icon,
.glimpse-shy-section .carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-size: 60% 60%;
}

.card-text-sw {
    font-size: 14px;
    color: #555;
    font-family: Lato, sans-serif;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.admissions-section {
    background: #14213d;
    padding-top: 80px;
    padding-bottom: 80px;
}

.apply-btn {
  border: none;;

}
.apply-btn:hover {
    background: #800020e6;
    color: #ffffff;
}

.rounded-md {
    border-radius: calc(var(--radius) - 2px);
}
.admission-btn:hover {
  color: #14213d;

}

.text-school-tittle {
    font-size: 16px;
    font-weight: 600;
    color: #14213d;
}

.bg-school-navy {
    background-color: #14213d;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-b {
    border-bottom-width: 1px;
}

.border-b-gray {
  border-bottom: 1px solid #e5e7eb;
}

.border-gray {
  border: 1px solid #e5e7eb;
}

.ft-20 {
  font-size: 20px;
}

.transition-colors:hover {
      background-color: #f1f5f980;
}

.doc-text {
    color: #64748b;
    font-weight: 600;
}

.doc-text tr th {
    color: #64748b;
    font-weight: 600;
}


.inner-doc-text tr td {
  color: #020817;
}

.inner-doc-text {
  color: #020817;
}

.text-meroon {
  color: #800020;
}

.bg-meroon {
  background-color: #800020;
}

.border-meroon {
  border: 1px solid #800020;
}

.w-8 {
    width: .5rem;
}

.h-8 {
    height: .5rem;
}
.mt-2 {
    margin-top: .5rem;
}
.mr-12 {
    margin-right: .75rem;
}

.mt-8 {
    margin-top: 8px;
}
.my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.hig-1 {
    height: 1px;
}

.inline-flex {
    display: inline-flex;
}


@media (min-width: 1280px) {
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.flex-col {
    flex-direction: column;
}

.text-blue-100 {
    color: #dbeafe;
}

.bg-cream
 {
    background-color: #f8f1e0;
}

.w-96 {
    width: 6rem;
}
.h-96 {
    height: 6rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.position-btn {
   padding: 2px 10px;
   font-size: 12px;
    font-weight: 600;
}

.font-14 {
    font-size: 14px;
}
.font-13wc {
    font-size: 13px;
    color: #374151;
  }

.color-navy {
    color: #14213d;
}

.sec-grid {
    display: grid;
}

.mt-32 {
    margin-top: 32px;
}

.ft-30 {
    font-size: 30px;
}

.fw-700 {
    font-weight: 700;
}

.mb-16 {
    margin-bottom: 16px;
}

.ad-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0.375rem;
    font-weight: 700;
    background-color: #800020;
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    font-size: 18px;
}

.ad-apply-btn:hover {
    background-color: #800020e6;
    color: #ffffff; }

  .admission-btnsection {
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .w-64px {
    width: 64px;
  }
  .h-64px {
    height: 64px;
  }

  .w-32px {
    width: 32px;
  }
  .h-32px {
    height: 32px;
  }


.space-y-2>:not([hidden])~:not([hidden])
 {
    --tw-space-y-reverse: 0;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
}

.justify-between {
    justify-content: space-between;
}

.common-font16 {
    color: #14213d;
    font-size: 16px;
}

.pb-12 {
    padding-bottom: 12px;
}

.ml-12 {
    margin-left: 12px;
} 

.details-list h3 {
    font-size: 16px;
}
.details-list p {
    font-size: 16px;
    margin-bottom: 0;
}

.orf-btn {
    padding: 8px 16px;
    border: none;
    margin-bottom: 12px;
    background-color: #800020;
    color: #ffffff;
}

.orf-btn:hover {
    background-color: #800020e6;
}

.visit-btn {
    padding: 8px 16px;
    border: none;
    background-color: #800020;
    color: #ffffff;
}

.visit-btn:hover {
    background-color: #800020e6;
}

.gallery-card-img img {
    object-fit: cover;
    min-height: 297px;
}

.hover-scale-img img {
transition: transform 2s cubic-bezier(0.4,0,0.2,1);
 }
.hover-scale-img:hover img {
transform: scale(1.08);
}

.swiper-pagination-bullet-active {
    background: #800020;
}


@media only screen and (max-width: 1396px) {
  .top-header-right {
   padding: 0px 44px;
  }
}

@media only screen and (max-width: 650px) {
  .his-grid {
   display: flex;
   flex-direction: column;
  }
}

@media only screen and (max-width: 650px) {
  .life-shy-hero-section {
   padding-left: 20px;
   padding-right: 20px;
  }
}

@media only screen and (max-width: 650px) {
  .heritage-hero-content {
   padding-left: 20px;
   padding-right: 20px;
  }
}

@media only screen and (max-width: 650px) {
  .mission-section {
   padding-left: 20px;
   padding-right: 20px;
  }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
    }
}

/*# sourceMappingURL=style.css.map */

.testimonial-img {
    width: 70%;
    height: 70%;
    border-radius: 100%;
    object-fit: cover;
    border: 3px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.testimonial-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
ul {
    padding-left: 20px;
    text-align: left;
    margin-bottom: 16px;
}
.swiper-slide {
    display: flex;
    height: auto;
}
