.text-center{text-align: center !important;}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 80%;
    max-width: 1000px;
    margin:30px auto;
}

.features-grid a {
    color: inherit;
    text-decoration: none;
}

/* Feature Card */
.feature-card {
    background: #F1F0DE;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 42, 83, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid #07572c;
}

.feature-card.animate-in {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 42, 83, 0.15);
}

/* Feature Image Container */
.feature-image-container {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 42, 83, 0) 0%, rgba(0, 42, 83, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

/* Feature Content */
.feature-content {
    padding: 25px 20px;
    text-align: center;
    background: linear-gradient(135deg, #F9F9F1 0%, #F1F0DE 100%);
    position: relative;
    -webkit-border-top-left-radius: 30px;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-topright: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: -30px;

}

.feature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #DAA520);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 100px;
    width: 200px;
    margin-left: -100px;
}

.feature-card:hover .feature-content::before {
    transform: scaleX(1);
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    margin: -50px auto 20px;
    background: #BD9631;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.25);
    position: relative;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
}

.feature-icon svg {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

/* Feature Title */
.feature-title {
    color: #002A53;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #B8860B;
}

/* Feature Description */
.feature-description {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #333;
}

/* Pulse Animation for Icons */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.feature-card:hover .feature-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }



    .home-section-2-wrap h2 {
        font-size: 36px;
    }
}

.home-section-1 p {
    padding-bottom: 20px;
}




/* ============================================= */
/* FOUNDER PROFILE SECTION */
/* ============================================= */

.founder-profile-section {
    width: 100%;
    padding: 80px 0;
    background-color: #fbfbfb;
}

.founder-profile-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Left Side - Portrait Image */
.founder-portrait-wrapper {
    flex-shrink: 0;
}

.founder-portrait-frame {
    width: 300px;
    height: 530px;
    border-radius: 150px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.08);
}

.founder-portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center - Vertical Divider */
.founder-divider {
    width: 2px;
    height: 450px;
    background: #BD9631;
    flex-shrink: 0;
}

/* Right Side - Text Content */
.founder-text-content {
    flex: 1;
    max-width: 700px;
}

.founder-name {
    color: #000;
    font-family: 'Noto Serif', serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 10px 0;
}

.founder-title {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 30px 0;
}

.founder-bio {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founder-bio-paragraph {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    text-align: justify;

}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */

/* Large screens */
@media (max-width: 1200px) {
    .founder-profile-container {
        padding: 0 60px;
        gap: 50px;
    }

    .founder-portrait-frame {
        width: 270px;
        height: 480px;
    }

    .founder-divider {
        height: 400px;
    }

    .founder-name {
        font-size: 28px;
    }

    .founder-bio-paragraph {
        font-size: 17px;
    }
}

/* Medium screens */
@media (max-width: 1024px) {
    .founder-profile-section {
        padding: 70px 0;
    }

    .founder-profile-container {
        padding: 0 50px;
        gap: 40px;
    }

    .founder-portrait-frame {
        width: 240px;
        height: 430px;
    }

    .founder-divider {
        height: 360px;
    }

    .founder-name {
        font-size: 26px;
    }

    .founder-title {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .founder-bio {
        gap: 18px;
    }

    .founder-bio-paragraph {
        font-size: 16px;
    }
}

/* Small tablets */
@media (max-width: 900px) {
    .founder-profile-section {
        padding: 60px 0;
    }

    .founder-profile-container {
        padding: 0 40px;
        gap: 35px;
    }

    .founder-portrait-frame {
        width: 220px;
        height: 390px;
    }

    .founder-divider {
        height: 320px;
    }

    .founder-name {
        font-size: 24px;
    }

    .founder-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .founder-bio {
        gap: 16px;
    }

    .founder-bio-paragraph {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* Tablets - Stack vertically */
@media (max-width: 768px) {
    .founder-profile-section {
        padding: 50px 0;
    }

    .founder-profile-container {
        flex-direction: column;
        padding: 0 30px;
        gap: 40px;
        align-items: center;
    }

    .founder-portrait-wrapper {
        order: 1;
    }

    .founder-divider {
        order: 2;
        width: 200px;
        height: 2px;
    }

    .founder-text-content {
        order: 3;
        max-width: 100%;
        text-align: center;
    }

    .founder-portrait-frame {
        width: 250px;
        height: 440px;
    }

    .founder-name {
        font-size: 26px;
    }

    .founder-title {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .founder-bio {
        gap: 18px;
    }

    .founder-bio-paragraph {
        font-size: 16px;
        text-align: justify;
    }
}

/* Large mobile phones */
@media (max-width: 650px) {
    .founder-profile-section {
        padding: 45px 0;
    }

    .founder-profile-container {
        padding: 0 25px;
        gap: 35px;
    }

    .founder-portrait-frame {
        width: 220px;
        height: 390px;
    }

    .founder-divider {
        width: 150px;
    }

    .founder-name {
        font-size: 24px;
    }

    .founder-title {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .founder-bio {
        gap: 16px;
    }

    .founder-bio-paragraph {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .founder-profile-section {
        padding: 40px 0;
    }

    .founder-profile-container {
        padding: 0 20px;
        gap: 30px;
    }

    .founder-portrait-frame {
        width: 200px;
        height: 350px;
    }

    .founder-divider {
        width: 120px;
    }

    .founder-name {
        font-size: 22px;
    }

    .founder-title {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .founder-bio {
        gap: 14px;
    }

    .founder-bio-paragraph {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .founder-profile-section {
        padding: 35px 0;
    }

    .founder-profile-container {
        padding: 0 16px;
        gap: 25px;
    }

    .founder-portrait-frame {
        width: 180px;
        height: 320px;
    }

    .founder-divider {
        width: 100px;
    }

    .founder-name {
        font-size: 20px;
    }

    .founder-title {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .founder-bio {
        gap: 12px;
    }

    .founder-bio-paragraph {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* Extra small mobile phones */
@media (max-width: 375px) {
    .founder-profile-section {
        padding: 30px 0;
    }

    .founder-profile-container {
        padding: 0 14px;
        gap: 22px;
    }

    .founder-portrait-frame {
        width: 160px;
        height: 285px;
    }

    .founder-divider {
        width: 80px;
    }

    .founder-name {
        font-size: 18px;
    }

    .founder-title {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .founder-bio {
        gap: 10px;
    }

    .founder-bio-paragraph {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Very small devices */
@media (max-width: 320px) {
    .founder-profile-section {
        padding: 25px 0;
    }

    .founder-profile-container {
        padding: 0 12px;
        gap: 20px;
    }

    .founder-portrait-frame {
        width: 140px;
        height: 250px;
    }

    .founder-divider {
        width: 70px;
    }

    .founder-name {
        font-size: 16px;
    }

    .founder-title {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .founder-bio {
        gap: 8px;
    }

    .founder-bio-paragraph {
        font-size: 11px;
    }
}




/* Content Grid */
.icse-why-choose-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.icse-why-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.icse-left-column {
    align-items: flex-end;
}

.icse-right-column {
    align-items: flex-start;
}

.icse-center-column {
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Cards */
.icse-why-card {
    border-radius: 153px;
    background: #f1f0de;
    padding: 20px 30px;
    width: 340px;
    min-width: 320px;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.icse-why-card-title {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.icse-why-card-text {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Arch Image */
.icse-arch-image-container {
    width: clamp(200px, 25vw, 300px);
    height: clamp(333px, 42vw, 500px);
    border-radius: 150px 150px 150px 150px;
    overflow: hidden;
    border: 2px solid #c19a6b;
    position: relative;
}

.icse-arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.campus-card .bullet-1 {
    padding: 0px 0px 0px 24px;
    margin: 0px 0px 20px 0px;
    background-size: 14px 14px;
    background-position: left top 4px;
    background-image: url(../images/bullet-1a.png);
    background-repeat: no-repeat;
    list-style: none !important;
}


.glimpse-bg {
  
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding-top: 50px;
}

.min-height-3 {
    min-height: 100vh !important
}

.glimpse-bg h1 {
    color: #000;

    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
}
.padding-3{ padding: 40px 0px;}
.glimpse-bg p {

    color: #000;

    font-size: 20px;
    font-weight: 400;
}




.video-3 {}

.min-height-1 {
    height: auto;
}

.glims-wrap {
    display: flex;

}

.glims-1 {
    flex: 1;
    padding: 50px 10% 50px 0px;

}

.glims-2 {
    flex: 1;
}

.video-3 {
    width: 100%;
    height: auto;
}

.our-journey-description {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    max-width: 500px;
}
.subscription-iframe ul{
   margin: 20px 0px 0px 0px;
    padding: 0px;
    list-style: none;
}
.subscription-iframe ul li {display: block; margin-bottom: 20px;}
.subscription-iframe ul li a{ text-decoration: none; color: #000; font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 400; line-height: normal; margin-bottom: 15px; }
.subscription-iframe ul li img{ vertical-align: middle; margin-right: 10px; display: inline-block; width: 26px; height: auto; }

@media screen and (max-width: 768px) {
    .glims-wrap {
        flex-direction: column;
    }

    .arrow-wrap-1 {
        margin-top: 0px;
    }

    .glims-1 {
        flex: 1 1;
        padding: 50px 0% 20px 0px;
    }

    .iframe-border {
        width: 100%;
    }
}



/* Contact Cards Section */
.contact-cards-section {
  padding: 60px 0;
  background-color: #fcfbf7;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 5%;
}

.contact-card {
  background: white;
  padding: 10px 15px;
  border-radius: 20px;
  border: 2px solid;
  text-align: left;
  transition: all 0.3s ease;
  width: 370px;
  height: auto;
}

.contact-card.gold-border {
  border-color: #bd9631;
}

.contact-card.blue-border {
  border-color: #002a53;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
  .max-width-1{ width: 96%; max-width: 800px; margin: 0 auto;}


.contact-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-card-title {
  color: #000;
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card-text {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

/* Map Section */
.contact-map-section {
  padding: 0 0 60px;
  background-color: #f9f9f1;
  width: 100%;
  height: 378px;
  margin: auto;
  display: flex;

  justify-content: center;
}

.contact-map-section iframe {
  max-width: 1170px;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 40px;
  border: 2px solid #bd9631;
  display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .contact-card:last-child {
    grid-column: 1 / -1;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-cards-section {
    padding: 40px 0;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .contact-card:last-child {
    max-width: 370px;
  }

  .contact-card {
    padding: 30px 25px;
    max-width: 370px;
    width: 100%;
  }

  .contact-map-section {
    padding: 0 0 40px;
  }

  .contact-map-section iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 25px 20px;
  }

  .contact-card-icon {
    width: 60px;
    height: 60px;
  }

  .contact-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .contact-card-title {
    font-size: 18px;
  }

  .contact-card-text {
    font-size: 13px;
  }

  .contact-map-section iframe {
    height: 300px;
  }
}

/* Success Modal Styles */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

.contact-modal-content {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: slideUp 0.3s ease-in-out;
}

.contact-modal-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  animation: scaleIn 0.4s ease-in-out;
}

.contact-modal-icon svg {
  width: 60px;
  height: 60px;
}

.contact-modal-title {
  font-family: "Noto Serif", serif;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.contact-modal-message {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-modal-close-btn {
  background: linear-gradient(135deg, #bd9631 0%, #a67c1f 100%);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(189, 150, 49, 0.3);
}

.contact-modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(189, 150, 49, 0.4);
}

.contact-modal-close-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(189, 150, 49, 0.3);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .contact-modal-content {
    padding: 30px 20px;
    max-width: 350px;
  }

  .contact-modal-title {
    font-size: 24px;
  }

  .contact-modal-message {
    font-size: 14px;
  }

  .contact-modal-close-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .contact-section-1-wrap p {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-section-2 {
    margin: 20px 0px;
  }

  .contact-section-1 {
    padding: 20px 0px 0px 0px;
  }

}