@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap');



/* :::::::::::::::::::::::::::::::::::::::::::::
              PRELOADER STYLES
::::::::::::::::::::::::::::::::::::::::::::: */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fcfaf6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Logo container with ring */
.preloader-logo-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 40px;
}

/* Outer rotating ring */
.ring-outer {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: #155b2e;
  border-radius: 50%;
  animation: spinClockwise 1.5s linear infinite;
}

/* Inner counter-rotating ring */
.ring-inner {
  position: absolute;
  inset: 12px;
  border: 2px solid transparent;
  border-bottom-color: #bf8431;
  border-radius: 50%;
  animation: spinCounterClockwise 1.2s linear infinite;
}

/* Pulsing glow behind logo */
.logo-glow {
  position: absolute;
  inset: 25px;
  background: radial-gradient(circle, rgba(21, 91, 46, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes spinClockwise {
  to { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
  to { transform: rotate(-360deg); }
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* School logo/emblem */
.preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(21, 91, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoReveal 0.8s ease-out 0.2s both;
}

.preloader-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Text content */
.preloader-text {
  margin-bottom: 50px;
  animation: textFadeIn 0.8s ease-out 0.4s both;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-text h2 {
  font-family: var(--body-font);
  font-size: 32px;
  font-weight: 700;
  color: #155b2e;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.preloader-text .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #bf8431, #d4a04a);
  margin: 12px auto 16px;
  border-radius: 2px;
}

.preloader-text p {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  color: #666;
  margin: 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.preloader-text .year {
  display: inline-block;
  background: linear-gradient(135deg, #155b2e, #1a7a3a);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 12px;
}

/* Progress indicator */
.progress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: progressFadeIn 0.6s ease-out 0.6s both;
}

@keyframes progressFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.progress-dots {
  display: flex;
  gap: 8px;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  animation: dotPulse 1.4s ease-in-out infinite;
}

.progress-dot:nth-child(1) { animation-delay: 0s; }
.progress-dot:nth-child(2) { animation-delay: 0.2s; }
.progress-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
  0%, 100% {
    background: #e0e0e0;
    transform: scale(1);
  }
  50% {
    background: #155b2e;
    transform: scale(1.3);
  }
}

.progress-text {
  font-family: var(--body-font);
  font-size: 12px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Background decorations */
.preloader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(21, 91, 46, 0.2), transparent);
  top: -150px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(191, 132, 49, 0.15), transparent);
  bottom: -100px;
  left: -50px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(21, 91, 46, 0.1), transparent);
  top: 40%;
  left: 10%;
  animation: orbFloat 6s ease-in-out infinite 1s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Subtle grid pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(21, 91, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 91, 46, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

/* Corner accents */
.corner-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  opacity: 0.1;
}

.corner-accent::before,
.corner-accent::after {
  content: '';
  position: absolute;
  background: #155b2e;
}

.corner-accent.top-left {
  top: 30px;
  left: 30px;
}

.corner-accent.top-left::before {
  width: 60px;
  height: 3px;
  top: 0;
  left: 0;
}

.corner-accent.top-left::after {
  width: 3px;
  height: 60px;
  top: 0;
  left: 0;
}

.corner-accent.bottom-right {
  bottom: 30px;
  right: 30px;
}

.corner-accent.bottom-right::before {
  width: 60px;
  height: 3px;
  bottom: 0;
  right: 0;
}

.corner-accent.bottom-right::after {
  width: 3px;
  height: 60px;
  bottom: 0;
  right: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .preloader-logo-wrapper {
    width: 130px;
    height: 130px;
    margin-bottom: 30px;
  }
  
  .preloader-logo {
    width: 70px;
    height: 70px;
  }
  
  .preloader-logo img {
    width: 55px;
    height: 55px;
  }
  
  .preloader-text h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }
  
  .preloader-text p {
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .preloader-text .year {
    font-size: 12px;
    padding: 5px 14px;
  }
  
  .corner-accent {
    display: none;
  }
  
  .orb-1 {
    width: 250px;
    height: 250px;
  }
  
  .orb-2 {
    width: 200px;
    height: 200px;
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::
              END PRELOADER STYLES
:::::::::::::::::::::::::::::::::::::::::::::*/




:root {
    /* Fonts */

    --body-font: "Montserrat", sans-serif;

    

    /* Color */
    --primary: #1A4128;
    --black: #000;
    --white: #fff;
    --defult: #BF8431;

}

body {
    font-family: var(--body-font);
    color: var(--black);
    background-color: #fffcf6;
    padding-bottom: 0px;
}

h1,
h2,
h3 {
    font-family: var(--body-font);
    font-weight: 700;
}
p{
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
    color: #2C2B2B;
    font-family: var(--body-font);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: 300ms ease-in all;
    color: var(--primary);
    text-decoration: none;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                    BOOTSTRAP
::::::::::::::::::::::::::::::::::::::::::::: */



.btn {
    text-transform: uppercase;
    font-weight: 500;
}

@media(min-width:575px) {
    .btn:not(.btn-lg) {
        font-size: 1.125rem;
        padding: 12px 28px;
    }
}

.btn-lg {
    padding-left: 1.75em;
    padding-right: 1.75em;
}




/*.input-group-lg>.btn,*/
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
    font-size: 0.75em;
    font-family: var(--body-font);
}
input.form-control{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 44px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
}
input.form-control.error-class {
    border-color: red;
}
input.form-control::placeholder{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
    
}
textarea.form-control{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 50px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
}
textarea.form-control::placeholder{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
select.form-select{
    border: 1px solid #0000001A;
    padding: 6px 12px;
    height: 44px;
    border-radius: 0;
    background-color: #fff;
    color: #242E27;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
select.form-select option{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
}
.form-control:focus{
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
}
.form-check{
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-check-input{
    width: 16px;
    height: 16px;
    margin-top: 0;
    border: 1px solid #0000001A;
}
.form-check-input:checked{
    background-color: var(--primary);
    border-color: var(--primary);;
}

.input-group-with-icon{
    position: relative;
}

.input-group-icon-1{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    display: flex;
    align-items: center;
}
.input-group-icon-2{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    display: flex;
    align-items: center;
}
.input-group-with-icon i{
    font-size: 22px;
    color: var(--primary);
}
.input-group-with-box{
    display: flex;
    gap: 15px
}
.input-group-with-box input{
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    padding: 5px 20px;
    text-align: center;

}
.form-check-inline{
    display: inline-block !important;
}
 form label{
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

}
input.form-control[type="date"]{
    color: #969696;
    position: relative;
}
/* input[type=date]::-webkit-datetime-edit-text {
    -webkit-appearance: none;
    display: none;
}
input[type=date]::-webkit-datetime-edit-month-field{
    -webkit-appearance: none;
    display: none;
}
input[type=date]::-webkit-datetime-edit-day-field {
    -webkit-appearance: none;
    display: none;
}
input[type=date]::-webkit-datetime-edit-year-field {
    -webkit-appearance: none;
    display: none;
}
input[type="date"]:focus:before, input[type="date"]:valid:before {
    content: "Date of Birth" !important;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
} */
.relative {
    position: relative;
}

.max-720 {
    max-width: 720px;
}

.max-790 {
    max-width: 790px;
}

.shadow-md {
  box-shadow: 0 0.125rem 1.5rem rgba(0, 0, 0, 0.075) !important;
}
.defult-font{font-family: var(--defult-font);}
.bold-text p{
    font-weight: 700 !important;
}

.sec-title{
    font-size: 30px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}
.primary-btn{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    letter-spacing: 0.003em;
    color: #fff;
    background-color: var(--primary);
    width: 100%;
    border-radius: 0;
    text-transform: uppercase;
    padding: 26px 76px;
    border: 2px solid var(--primary);
}
.primary-btn:hover{
    color: var(--primary) !important;
    background-color: var(--white) !important;
    border-color: var(--primary) !important;
}

.container-custom{
    max-width: 1300px;
    padding: 0 24px;
}
.container-custom.sm{
    max-width: 1200px;
}
.cs_row{
    display: flex;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                    COMMON
::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::
                HEADER-START
::::::::::::::::::::::::::::::::::::::::::::: */

.header {
    background-color: #fff;
    padding: 5px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0px 4px 25px 0px #0000000D;
    position: sticky; top: 0; z-index: 1000;

}
/* .header .logo img{
    width: 114px;
} */

.header .header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header ul.header-right{
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.header ul.header-right img{
    width: 120px;
}
.header.header-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.header.header-fixed .logo img{
    width: 100px;
}


/* :::::::::::::::::::::::::::::::::::::::::::::
                 HEADER-END
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
                 BANNER-START
::::::::::::::::::::::::::::::::::::::::::::: */

.banner{
    background-image: linear-gradient(30deg, rgba(8, 99, 95, 0.865), rgb(15 43 25 / 0%)), url(../img/why/cie-banner.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 74px 0 154px;
    position: relative;
}

/* Mobile background for .banner */
@media (max-width: 767.98px) {
    .banner {
        background-image: linear-gradient(100deg, rgba(8, 99, 94, 0.815), rgb(15 43 25 / 0%)), url(../img/why/mobile-bg.jpeg);
        /* Use a mobile-optimized image if available */
        background-repeat: repeat;
        background-position: center;
        background-size: contain;
    }
}
.banner-content {
    align-items: center;
}
.banner-content .text{
    padding-right: 18px;
    padding-top: 110px;
}

.banner-content .text h1{
    font-family: system-ui;
    font-size: 62px;
    font-weight: 900;
    line-height: 70.4px;
    letter-spacing: 0.003em;
    color: transparent;
    -webkit-text-stroke: 3px #fff;
    
    margin-bottom: 19px;
    position: relative;
    padding-top: 47px;
}
.banner-content .text h1::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 9px;
    background-color: #C9820F;
}
.banner-content .text h1::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 9px;
    background-color: #fff;
    z-index: 1;
}
.mob {
    display: none;
}
.banner-content .text h2{
    font-family: var(--body-font);
    font-size: 40px;
    font-weight: 400;
    line-height: 44.64px;
    letter-spacing: 0.003em;
    color: #fff;
    margin-right: 104px;
}


.banner-form{
    background-color: #ffffffd9;
    border-radius: 5px;
    overflow: hidden;
    padding: 32px 27px;
}
.banner-form .form-group{
    margin-bottom: 16px;
}
.banner-form h3{
    opacity: var(--sds-size-stroke-border);
    color: #1A4128;
    font-family: var(--body-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.072px;
    padding-bottom: 16px;
    margin-bottom: 28px;
    position: relative;
}
.banner-form h3 span{
    color: #BF8431;
}
.banner-form h3:after{
    content: "";
    width: 64px;
    height: 1px;
    margin: 0 auto;
    background-color: #BF8431;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.banner-form .form-group textarea{
    height: 88px;
}
.banner-form .submit-btn button{
    padding: 15px 0;
    font-family: var(--body-font);
    color: var(--white);
    background-color: #BF8431;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.06px;
    text-transform: capitalize;
    width: 100%;
    border: 1px solid #BF8431;
}
.banner-form .submit-btn button:hover{
    border-color: #BF8431 !important;
    color: #336641 !important;
}
.banner-form .form-group label{
    font-size: 15px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.01em;
    color: #969696;
    font-family: var(--body-font);
}
.banner-form .form-group> label{
      font-size: 14px;
      margin-bottom: 6px;
}
.banner-form .form-gender{
    display: flex;
    gap: 14px;
}

.banner-bottom{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -128px;
    z-index: 1;
}
.banner-bottom ul{
    max-width: 1137px;
    margin: 0 auto;
    background-image: url(../img/banner-bottom.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 48px;
    text-align: center;
    padding: 50px 70px 50px 70px;
    position: relative;
    border-radius: 20px;
}
.banner-bottom ul li{
    display: flex;
    gap: 16px;
}
.banner-bottom ul li:first-child img{
    width: 170px;
}
.banner-bottom ul li .b-text{
    text-align: left;
}
.banner-bottom ul li .b-text h3{
    color: #121212;
    font-family: var(--body-font);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.084px;
}
.banner-bottom ul li .b-text h4{
    font-family: var(--body-font);
    color: #7D7474;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.054px;
}




/* :::::::::::::::::::::::::::::::::::::::::::::
                 ABOUT-START
::::::::::::::::::::::::::::::::::::::::::::: */

.about{
    background-image: url(../img/n-buliding.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 246px 0 17px;
}
.about-content .text .sec-s-title{
    margin-bottom: 60px;
    padding-right: 60px;
}
.sec-s-title h2{
    color: #024F2D;
    font-family: var(--body-font);
    font-size: 78px;
    font-weight: 700;
    line-height: 70px;
    text-transform: capitalize;
    margin-bottom: 14px;
}
.sec-s-title h2 span{
    font-weight: 800;
    color: #fff;
    -webkit-text-stroke: 1px #024F2D;

}
.sec-s-title p{
    color: #504A4A;
    font-family: var(--body-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.2px;
}
.sec-s-title p span{
    font-weight: 600;
}
.about-block{
    margin: 0 60px 50px 49px;
}
.about-block h3{
    color: #292929;
    font-family: var(--body-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 44px;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}
.about-block h3::after{
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 7px;
    background-color: #024F2D;
}
.about-block p{
    color: #504A4A;
    font-family: var(--body-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.2px;
    padding-left: 30px;
    position: relative;
}
.about-block p::after{
    content: "";
    position: absolute;
    left: 3px;
    top: -18px;
    bottom: 30px;
    width: 1px;
    background-color: #D2D2D2;
}
.about-content .images{
    padding-top: 83px;
}
.about-content .about-images{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding-left: 0;
    list-style: none;
}
.about-content .about-images li{
    width: 48%;
    z-index: 1;
}
.about-content .about-images li img{
    width: 100%;
}
.about-content .about-images li:nth-child(3){
    z-index: 2;
}
.about-content .about-images li:nth-child(3) img{
    margin-top: -56px;
    border: 10px solid #fff;
}
.about-content .about-images li:nth-child(4) img{
    margin-top: -143px;
    margin-left: -40px;
    border: 10px solid #fff;
}


/* :::::::::::::::::::::::::::::::::::::::::::::
                 ABOUT-END
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
                 WHY-IISH-START
::::::::::::::::::::::::::::::::::::::::::::: */

.why-iish{
    padding: 100px 0;
}
.why-iish .sec-s-title{
    margin-bottom: 40px;
}
.why-iish-boxes{
    display: flex;
    gap: 20px;
}
.why-iish-boxes .box{
    width: 33%;
}
.why-iish-boxes .box:nth-child(2){
    background-color: rgba(0, 189, 182, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-iish-boxes .box ul{
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}
.why-iish-boxes .box ul li{
    height: 230px;
    text-align: center;
    padding: 38px 36px;
    border: 1px solid #969696;
}
.why-iish-boxes .box .image{
    margin-bottom: 20px;
}
.why-iish-boxes .box .text h3{
    font-family: var(--body-font);
    font-size: 28px;
    font-weight: 700;
    line-height: 34.13px;
    letter-spacing: 0.003em;
    text-align: center;
    margin-bottom: 0;
}
.why-iish-boxes .box:nth-child(2) .text h3{
    color: #fff;
}



/* :::::::::::::::::::::::::::::::::::::::::::::
                 WHY-IISH-END
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
                LEARNING-START
::::::::::::::::::::::::::::::::::::::::::::: */

.learning{
    padding: 10px 0;
}
.learning .sec-s-title{
    max-width: 606px;
    margin-bottom: 40px;
}

.learning-images{
    display: flex;
}
.learning-images .img-box{
    width: 25%;
    position: relative;
    overflow: hidden;
    height: 476px;
}
.learning-images .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.learning-images .img-box::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.learning-images .img-box .img-box-overlay{
    padding: 16px 20px 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -310px;
    z-index: 2;
    transition: all 1s ease-out;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) -0.89%, rgba(0, 189, 182, 1) 17.05%)
}
.learning-images .img-box .img-box-overlay h3{
    font-family: var(--body-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 28.6px;
    letter-spacing: 0.003em;
    text-align: left;
    color: #fff;
    margin-bottom: -24px;
}
.learning-images .img-box .img-box-overlay p{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 23.22px;
    letter-spacing: 0.003em;
    text-align: left;
    color: #EEEEEE; 
    margin-bottom: 20px;
}
.learning-images .img-box .img-box-overlay a{
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 19.36px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: capitalize;
}
.learning-images .img-box:hover .img-box-overlay{
    bottom: 0;
    padding-bottom: 34px;
}
.learning-images .img-box:hover .img-box-overlay h3{
    margin-bottom: 20px;
}



/* :::::::::::::::::::::::::::::::::::::::::::::
                 LEARNING-END
::::::::::::::::::::::::::::::::::::::::::::: */




/* :::::::::::::::::::::::::::::::::::::::::::::
                 EXCELLENCE-START
::::::::::::::::::::::::::::::::::::::::::::: */
.excellence{
    padding: 100px 0 180px;
}
.excellence .sec-title{
    margin-bottom: 70px;
    text-align: left;
    max-width: 900px;
}
.excellence .sec-title h2{
    color: #251A0C;
    font-family: var(--body-font);
    font-size: 48px;
    font-weight: 600;
    line-height: 67px;
    letter-spacing: 0.96px;
    text-transform: capitalize;
    margin-right: 277px;
}
.excellence .sec-title p{
    color: #505D54;
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 300;
    line-height: 31.2px;
    letter-spacing: 0.24px;
    text-transform: math-auto;
    margin-bottom: 0;
}

.excellence-box-slide{
    display: flex;
    gap: 40px;
    height: 460px;
}
.excellence-box-slide .slider-for{
    width: 60%;
}
.excellence-box-slide .slider-nav{
    width: 40%;
    margin-bottom: 0;
}
.excellence-box-slide .slider-nav .block{
   margin-bottom: 20px;
}
.excellence-slider .block .image{
    position: relative;
}
.excellence-slider .block .image img{
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.excellence-slider.slider-nav .block .image img{
    height: 140px;

}
  .excellence-slider .block .image .text{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 140px 20px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 31.79%, rgba(2, 79, 45, 0.8) 72.71%);
  }
  .excellence-slider .block .text h3{
    color: #fff;
    font-family: var(--body-font);
    font-size: 36px;
    font-weight: 600;
    line-height: 39.6px;
    letter-spacing: -0.01em;
    text-align: left;
    margin-bottom: 0;
    
  }
  .excellence-slider.slider-nav .block .text{
    padding: 50px 12px 12px;
  }
  .excellence-slider.slider-nav .block .text h3{
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0.02em;
    text-align: left;

  }




/* :::::::::::::::::::::::::::::::::::::::::::::
                 EXCELLENCE-END
::::::::::::::::::::::::::::::::::::::::::::: */


/* :::::::::::::::::::::::::::::::::::::::::::::
                 EXPERIENCE-START
::::::::::::::::::::::::::::::::::::::::::::: */

.experience-sec{
    padding: 80px 0 188px;
}
.experience-sec .sec-s-title{
    margin-bottom: 60px;
}
.experience-boxes .slick-track{
    display: flex;
    align-items: flex-end;
}
.experience-boxes .box{
    margin: 0 30px;
    text-align: center;
    border: 2px solid #DBDBDB;
    padding: 42px 40px;
    transition: all 0.3s ease;
}
.experience-boxes .box h3{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;
    margin-bottom: 12px;
}
.experience-boxes .box h4{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;
}
.experience-boxes .box.slick-active{
    background-color: #024F2D;
    padding: 80px 40px 30px 40px;
}
.experience-boxes .box.slick-active .text{
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.experience-boxes .box.slick-active .text::after{
    content: url(../images/right-q.png);
    position: absolute;
    right: -55px;
    top: -25px;
}
.experience-boxes .box.slick-active .text::before{
    content: url(../images/left-q.png);
    position: absolute;
    left: -55px;
    top: -25px;
}
.experience-boxes .box.slick-active h3{
    color: #fff;
}
.experience-boxes .box.slick-active h4{
    color: #fff;
}
.slick-prev{
    top: unset;
    left: unset;
    bottom: -142px;
    right: 120px;
    width: 70px;
    height: 70px;
    border: 1px solid #ccc;
    border-radius: 50%;
    z-index: 1;
  }
 .slick-next {
    top: unset;
    bottom: -142px;
    right: 40px;
    width: 70px;
    height: 70px;
    border: 1px solid #ccc;
    border-radius: 50%;
    z-index: 1;
  }
  .slick-prev:before, .slick-next:before{
    color: #024F2D;
    font-size: 30px;
  }
/* :::::::::::::::::::::::::::::::::::::::::::::
                 EXPERIENCE-END
::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::
                FOOTER-START
::::::::::::::::::::::::::::::::::::::::::::: */

footer .upper-footer{
    padding: 16px 0 20px;
    background-color: rgb(0, 189, 183);
}
footer .upper-footer .sec-title{
    text-align: center;
    margin-bottom: 80px;
}
footer .upper-footer .sec-title h2{
    color: var(--White);
    text-align: center;
    text-transform: capitalize;
    font-family: var(--body-font);
    font-size: 48px;
    font-weight: 600;
    line-height: 67px;
    letter-spacing: 0.96px;
}
footer .upper-footer .sec-title p{
    color: #E5E5E5;
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 300;
    line-height: 31.2px;
    letter-spacing: 0.24px;
    text-transform: math-auto;
    margin-bottom: 0;
}
footer .upper-footer .footer-content{
    align-items: center;
}

footer .banner-form .submit-btn button{
    background-color: #BF8431;
    border: 1px solid #BF8431;
}
footer .banner-form .submit-btn button:hover{
    border-color: #BF8431 !important;
    color: #BF8431 !important;
}



.bottom-footer{
    background-color: #155b2e;
    padding: 12px 0;
    text-align: center;
}
.bottom-footer h5{
    color: rgba(255, 255, 255, 0.60);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 16.8px;
    letter-spacing: 0.036px;
    text-align: center;
    margin-bottom: 0;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                FOOTER-END
::::::::::::::::::::::::::::::::::::::::::::: */
.modal.mob-modal .modal-header {
    border: none;
}
 .modal.mob-modal .banner-form {
    padding: 0;
}
.mob-enquire-btn{
    display: block;
    text-align: center;
    padding: 11px 8px;
    background-color: #387E4B;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0px 4px 28px 7px #0000000D;
}
.mob-enquire-btn .enquire-btn{
    background-color: #fff;
    color: #387E4B;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 21.94px;
    letter-spacing: 0.053em;
    padding: 14px 40px;
    border-radius: 120px;
    border: 1px solid #387E4B;
    cursor: pointer;
}
.mob-enquire-btn .enquire-btn:hover{
    background-color: #BF8431;
    color: #fff;
    letter-spacing: 0.053em;
    padding: 14px 40px;
    border-radius: 120px;
    border: 1px solid #387E4B;
    cursor: pointer;
}


/* :::::::::::::::::::::::::::::::::::::::::::::
                THANK-YOU-START
::::::::::::::::::::::::::::::::::::::::::::: */



.thank-you-page .header .logo img{
    width: 100px;
}

.thank-you-page .thankyou{
    background-image: url(../images/iish-banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}
.thankyou .thank-you-content{
    padding: 50px;
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    background-color: #fff;
    text-align: center;
}
.thankyou .thank-you-content h2{
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 700;
}
.thankyou .thank-you-content p{
    color: #242E27;
}
.thankyou .thank-you-content img{
    width: 120px;
}
.thankyou .thank-you-content h3{
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 500;
}

/* :::::::::::::::::::::::::::::::::::::::::::::
                THANK-YOU-END
::::::::::::::::::::::::::::::::::::::::::::: */
.tab-body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 1rem;
    background: #0d0f13;
}
.container .tabs-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    user-select: none;
    overflow: hidden;
    padding: 1rem;
    border-radius: 1rem;
    background: whitesmoke;
    border: 1px solid #2E323E;
    container-type: inline-size;
    container-name: tabs-container;
}

.tabs-layout {
    display: flex;
    flex-direction: column;
}

.tab-content-wrapper {
    overflow-y: hidden;
    overflow-x: auto;
    height: 34rem;
    width: 100%;
    color: #fff;
    transition: all 0.45s ease-in-out;
}

.tab-content h2 {
    display: none;
    color: #1b1818;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tab-content p{
    color: #181515;
}
.tab-content {
    margin-top: 0.25rem;
    display: block;
    font-size: 1rem;
    max-width: 100%;
    height: 34rem;
    padding: 0 1rem;
    transition: all 0.45s ease-in-out;
}

.tab-content img {
    width: 90%;
}

.tabs {
    position: relative;
    flex-direction: column;
    list-style-type: none;
    display: none;
    min-width: 18rem;
}

.tabs-select {
    display: block;
    appearance: none;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    background: #4c76b9;
    border: 1px solid #2E323E;
    border-radius: 1rem;
    font-size: 1.2rem;
    color: #fff;
    box-sizing: border-box;
    font-weight: bold;
    cursor: pointer;
}

.table-select:before {
    content: "\f078";
    color: #fff;
    position: absolute;
    z-index: 1;
    right: 0.3125;
    top: 0.375rem;
}

@container tabs-container (min-width: 40rem) {
    .tabs-container {
        display: flex;
        flex-direction: column;
    }

    .tabs {
        display: flex;
    }

    .tab-content h2 {
        display: block;
    }

    .tabs-select {
        display: none;
    }

    .tabs-layout {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
    }
}

.tabs ul {
    gap: 1rem;
}

.tabs li {
    padding: 0.25rem;
}

.tabs a {
    position: relative;
    display: flex;
    text-decoration: none;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    color: #155b2e;
    overflow: hidden;
    text-align: left;
    justify-content: start;
    height: 5rem;
    padding: 0 1rem;
    width: 100%;
    align-items: center;
    gap: 1rem;
}

.tabs a img {
    height: 1.25rem;
    width: 1.25rem;
}

.tabs .active,
.tabs a:hover {
    font-weight: 700;
    outline: none;
    background: #155b2e;
    color: #fff;
    border-radius: 1rem;
}

.tabs a svg {
    min-width: 2.5rem;
    min-height: 2.5rem;
    stroke: #155b2e;
}

.tabs a svg .active, 
.tabs a svg:hover{
    min-width: 2.5rem;
    min-height: 2.5rem;
    stroke: #fff;
}

.tab-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it doesn't exceed the container's width */
}

.img-container{
    width: 6.25rem;
    height: 6.25rem;
    background-color: #FFFFFF;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-bottom: 1rem;
    font-size: 2rem;
}

.step-content-container 
h5{
    color: #ffffff;
}
.step-content-container 
h6{
    color: #ffffff;
}

.gap-5{
    gap: 9rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .articles {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
  }
  
  .articles article {
    flex: 0 0 calc(33.33% - 1.5rem); /* Display 3 articles at a time */
    background-color: rgba(0, 189, 182, 1); /* Card background */
    border-radius: 1rem; /* Card rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for card effect */
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  }
  
  .articles article:hover {
    /* transform: translateY(-10px); Lift effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
  }
  
  .articles figure {
    width: 100%;
    height: 14rem; /* Adjust card image height */
    overflow: hidden;
  }
  
  .articles article img {
    max-width: 100%;
    height: 100%;
    /* transform-origin: center;
    transition: transform 0.4s ease-in-out; */
    object-fit: cover;
  }
  

   /* Zoom-in effect on image hover */
  .articles article:hover img {
    transform: scale(1.2);
  }
  
  .article-preview {
    padding: 1.5rem; /* Add padding to content for card feel */
    text-align: left; /* Align text inside card */
    /* background-color: rgb(206, 231, 241); */
  }
  
  
  .articles article h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: white;
  }
  
  .articles article p {
    font-size: 1rem;
    color: #ffffff;
  }

  blockquote{
    color: white;
  }
  .doc-text{
    margin-bottom: 7rem;
  }
  .list-inline li{
    font-size: 20px;
  }
  
  /* Media query for smaller screens */
  @media (max-width: 768px) {
    .articles article {
      flex: 0 0 calc(100% - 1.5rem); /* Only show 1 article at a time on smaller screens */
    }
  }
  /* Media query for smaller screens */
@media (max-width: 768px) {
    .articles {
      display: flex;
      flex-wrap: nowrap;
      transition: transform 0.5s ease-in-out;
    }
  
    .articles article {
      flex: 0 0 calc(100% - 1.5rem); /* Show only 1 article at a time */
    }
  }
   /* :::::::::::::::::::::::::::::::::::::::::::::
                 WHY-IISH-START
::::::::::::::::::::::::::::::::::::::::::::: */

   :root {
       --green: #00bdb6;
       --green-dark: #108895;
       --radius: 16px;
       --card-h: 230px;
   }

   /* Section */
   .why-iish {
       padding: 100px 0;
   }

   .why-iish .sec-s-title {
       margin-bottom: 40px;
   }

   /* Layout */
   .why-iish-boxes {
       display: flex;
       gap: 20px;
       flex-wrap: nowrap;
   }

   .why-iish-boxes .box {
       width: 33%;
       display: flex;
       flex-direction: column;
   }

   .why-iish-boxes .box ul {
       padding-left: 0;
       list-style: none;
       display: flex;
       flex-direction: column;
       gap: 20px;
       margin-bottom: 0;
   }

   /* ---------- Left & Right Cards ---------- */
   .why-card {
       position: relative;
       height: var(--card-h);
       border: 1px solid #e2e2e2;
       border-radius: inherit;
       overflow: hidden;
       isolation: isolate;
       outline: none;

       background-image: var(--bg);
       background-size: 100%;
       background-position: center;
       background-repeat: no-repeat;

       transition: box-shadow 0.35s ease, transform 0.35s ease,
           background-size 0.6s ease;
   }

   .why-card:hover,
   .why-card:focus-visible {
       transform: translateY(-2px);
       box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
       background-size: 108%;
   }

   .why-card .card-base {
       position: relative;
       z-index: 2;
       height: 100%;
       display: grid;
       place-items: center;
       text-align: center;
       padding: 38px 24px;
       transition: opacity 0.35s ease;
   }

   .why-card .image {
       margin-bottom: 12px;
   }

   .why-card .image img {
       width: 60px;
       height: auto;
       display: block;
   }

   .why-card .text h3 {
       font-size: 22px;
       font-weight: 800;
       margin: 0;
       color: #ffffff;
   }

   /* Overlay */
   .why-card::before {
       content: "";
       position: absolute;
       inset: 0;
       background: var(--green);
       z-index: 1;
       transition: transform 0.6s ease;
   }

   .why-card.left::before {
       transform: translateX(115%);
   }

   .why-card.left:hover::before,
   .why-card.left:focus-visible::before {
       transform: translateX(0);
   }

   .why-card.right::before {
       transform: translateX(-115%);
   }

   .why-card.right:hover::before,
   .why-card.right:focus-visible::before {
       transform: translateX(0);
   }

   .why-card .hover-panel {
       position: absolute;
       inset: 0;
       z-index: 3;
       display: grid;
       place-content: center;
       padding: 28px;
       text-align: center;
       color: #fff;
       opacity: 0;
       transition: opacity 0.35s ease;
   }

   .why-card .hover-panel h4 {
       margin: 0 0 10px;
       font-size: 20px;
       font-weight: 800;
   }

   .why-card .hover-panel p {
       margin: 0 auto;
       max-width: 28ch;
       font-size: 14px;
       line-height: 1.5;
       color: #fff;
   }

   .why-card:hover .hover-panel,
   .why-card:focus-visible .hover-panel {
       opacity: 1;
   }

   .why-card:hover .card-base,
   .why-card:focus-visible .card-base {
       opacity: 0;
   }

   /* Faq styling */
   /* FAQ Section Styling */
   #cust-faq-sect {
       background: #f9f9f92e;
       padding: 30px;
       border-radius: 15px;
       box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
       margin-top: 8rem;
   }

   #cust-faq-sect h3 {
       font-size: 1.8rem;
       font-weight: 700;
       color: #333;
       margin-bottom: 25px;
   }

   /* Accordion Custom */
   #cust-faq-sect .accordion-item {
       border: none;
       margin-bottom: 10px;
       border-radius: 10px;
       overflow: hidden;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   }

   #cust-faq-sect .accordion-button {
       background-color: #fff;
       color: #333;
       font-weight: 600;
       font-size: 1rem;
       padding: 15px;
       border: none;
       transition: all 0.3s ease;
   }

   #cust-faq-sect .accordion-button:not(.collapsed) {
       background-color: #00bdb6;
       color: #fff;
       box-shadow: none;
   }

   #cust-faq-sect .accordion-button:focus {
       box-shadow: none;
   }

   #cust-faq-sect .accordion-body {
       background-color: #fff;
       font-size: 0.95rem;
       color: #555;
       padding: 15px 20px;
       line-height: 1.6;
   }

   /* testimonial styling */
   /* ---------- Base Layout ---------- */
   .carousel-wrapper {
       position: relative;
       max-width: 1200px;
       margin: 0 auto;
   }

   .carousel-container {
       position: relative;
       overflow-x: auto;
       overflow-y: hidden;
       max-width: 1200px;
       margin: 0 auto;
       padding: 3rem 1rem;
       scroll-behavior: smooth;
       -ms-overflow-style: none;
       scrollbar-width: none;
   }

   .carousel-container::-webkit-scrollbar {
       display: none;
   }

   .articles {
       display: flex;
       gap: 1.5rem;
   }

   .articles article {
       flex: 0 0 calc(33.333% - 1rem);
       background: #00bdb6;
       color: #fff;
       border-radius: 1rem;
       padding: 1.5rem;
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
       transition: transform 0.4s ease, box-shadow 0.4s ease;
   }

   .articles article:hover {
       transform: translateY(-8px);
       box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
   }

   .icon-and-title {
       display: flex;
       align-items: center;
       gap: 0.8rem;
       margin-bottom: 1rem;
   }

   .icon-and-title img {
       width: 40px;
       height: 40px;
       border-radius: 50%;
       border: 2px solid #fff;
   }

   .icon-and-title h2 {
       font-size: 1.2rem;
       font-weight: 600;
       color: #fff;
   }

   blockquote {
       font-size: 1rem;
       line-height: 1.6;
       font-style: italic;
       position: relative;
       padding-left: 0.6rem;
   }

   blockquote::before {
       content: "“";
       font-size: 2.5rem;
       color: #ffffff;
       position: absolute;
       left: -10px;
       top: -10px;
   }

   blockquote::after {
       content: "”";
       font-size: 2.5rem;
       color: #ffffff;
       position: absolute;
       right: -10px;
       bottom: -15px;
   }

   /* ---------- Controls ---------- */
   .nav-btn {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       border: 0;
       background: #00bdb6;
       color: #fff;
       width: 42px;
       height: 42px;
       border-radius: 999px;
       cursor: pointer;
       font-size: 1.5rem;
       line-height: 1;
       display: grid;
       place-items: center;
       box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
       transition: transform 0.2s ease, opacity 0.2s ease;
       z-index: 2;
   }

   .nav-btn:hover {
       transform: translateY(-50%) scale(1.05);
   }

   .nav-btn.prev {
       left: 8px;
   }

   .nav-btn.next {
       right: 8px;
   }

   /* Hide buttons on very small screens (drag is enough) */
   @media (max-width: 520px) {
       .nav-btn {
           display: none;
       }
   }

   /* ---------- Responsive Cards ---------- */
   @media (max-width: 992px) {
       .articles article {
           flex: 0 0 calc(50% - 1rem);
       }
   }

   @media (max-width: 768px) {
       .articles article {
           flex: 0 0 80%;
       }
   }

   /* Reduce motion: disable smooth auto-scroll loop */
   @media (prefers-reduced-motion: reduce) {
       .carousel-container {
           scroll-behavior: auto;
       }
   }

   /* hostel styling */
        /* Base styles */
        .hostel_Section {
            background-image: url('../img/Hostel/Boys_Hostel.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 3rem 1rem;
        }
    
        .overlay {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }
    
        .container {
            position: relative;
            z-index: 2;
        }
    
        /* Responsive typography */
        .responsive-heading {
            font-size: clamp(1.5rem, 2.5vw, 2.5rem);
            margin-bottom: 1rem;
        }
    
        .responsive-subheading {
            font-size: clamp(1.2rem, 2vw, 1.8rem);
        }
    
        /* Amenity item styles */
        .amenity-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }
    
        .amenity-icon {
            flex-shrink: 0;
        }
    
        .amenity-content {
            flex-grow: 1;
        }
    
        /* Icon responsive sizing */
        .icon {
            width: clamp(40px, 5vw, 80px);
            height: auto;
            padding: 5px;
        }
    
        .icon-text {
            font-size: clamp(0.9rem, 1.5vw, 1.2rem);
            margin: 0;
            line-height: 1.3;
        }
    
        /* Hero image */
        .hero_img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
    
        /* Responsive adjustments */
        @media (max-width: 576px) {
            .hostel_Section {
                padding: 2rem 0.5rem;
            }
    
            .amenity-item {
                padding: 0.25rem;
            }
        }
    
        @media (min-width: 577px) and (max-width: 768px) {
            .amenity-item {
                padding: 0.5rem;
            }
        }
    
        @media (min-width: 769px) and (max-width: 992px) {
            .hostel_Section {
                padding: 2.5rem 1rem;
            }
        }
    
        @media (min-width: 993px) {
            .hostel_Section {
                padding: 3rem 2rem;
            }
    
            .amenity-item:hover {
                transform: translateY(-2px);
            }
        }
    
        /* Print styles */
        @media print {
            .hostel_Section {
                background-image: none;
                padding: 1rem;
            }
    
            .overlay {
                display: none;
            }
    
            .text-white {
                color: #000 !important;
            }
        }
   