/*
Theme Name: Indology Theme
Author: Your Name
Version: 1.0
Description: Custom theme converted from HTML
*/
    body {
      font-family: 'Inter', sans-serif;
      color: #1F2937;
      line-height: 1.6;
    }
a{
    text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden; /* IMPORTANT */
}

/* Background layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(images/main.jpeg);
  /* background:
    linear-gradient(
      rgba(11,77,136,0.85),
      rgba(11,77,136,0.85)
    ),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d") center/cover; */

  /* CLIP ONLY BACKGROUND */
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  z-index: 1;
}

/* Content above background */
.hero > .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
    color: #F28C28;
}
.hero p {
  color: #fff;
  margin-bottom: 8px;
}
.hero .btn-primary {
  background: #0b4d88;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
}
.hero img{
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
      margin-left: -13px;
}
/* ================= LOTUS FLOWER HERO ================= */
  .hero-lotus {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 80px 0;
    }

    .lotus-wrapper {
      position: relative;
      width: 460px;
      height: 460px;
    }

    /* Petals */
    .lotus-petal {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      background: #fff;
      border: 10px solid #F28C28;
      /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
      transition: transform 0.45s ease, box-shadow 0.45s ease;
      z-index: 2; /* BELOW CORE */
      will-change: transform;
    }

    .lotus-petal img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Core */
    .lotus-core {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120px;
      height: 120px;
      transform: translate(-50%, -50%);
      background: #F28C28;
      border-radius: 50%;
      /* box-shadow: 0 15px 35px rgba(0,0,0,0.25); */
      z-index: 4; /* ABOVE PETALS */
    }

       /* .lotus-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  background-image: url(images/flower.jpg);
  background-size: cover;      
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: 4;
} */

    /* Hover – petal comes out from core */
    .lotus-petal:hover {
      transform: scale(1.12);
      z-index: 6;
      transition: all .5s ease;
    }

    /* Petal positions + transform origins */
    .p1 {
      top: 0;
      left: 8rem;
      transform-origin: center bottom;
    }

    .p2 {
      top: 120px;
      left: 0;
      transform-origin: right bottom;
            transition: all .5s ease;
    }

    .p3 {
      top: 120px;
      right: 0;
      transform-origin: left bottom;
            transition: all .5s ease;
    }

    .p4 {
          bottom: 15px;
    left: 55px;
      transform-origin: right top;
            transition: all .5s ease;
    }

    .p5 {
    bottom: 15px;
    right: 40px;
    transform-origin: left top;
          transition: all .5s ease;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .lotus-wrapper {
        width: 360px;
        height: 360px;
      }

      .lotus-petal {
        width: 150px;
        height: 150px;
        border-width: 8px;
      }

      .lotus-core {
        width: 90px;
        height: 90px;
      }
      .p1{
        top: 2rem;
    left: 6.7rem;
    transform-origin: center bottom;
      }
    }

    @media (max-width: 576px) {
      .lotus-wrapper {
        margin-top: 40px;
      }

      .navbar-brand img{
      height: 70px;
    width: 65px;
    object-fit: fill;
    }
    }

/* ================= TEAM STRIP ================= */

.team-strip {
  padding: 100px 0;
  background: #ffffff;
}

/* Header */
.team-header span {
  font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #F28C28;
    font-weight: 500;
}

.team-header h2 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 38px;
  margin-top: 6px;
  color: #0B4D88;
}

/* Grid */
.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Person */
.team-person {
  text-align: left;
}

/* Image wrapper */
.team-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
}

/* Image */
.team-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Zoom on hover */
.team-person:hover img {
  transform: scale(1.08);
}

/* Thin social strip */
.team-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -45px;               /* hidden initially */
  height: 60px;                /* strip height */
  background: rgba(11, 77, 136, 0.55);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  opacity: 0;
  transition: all 0.45s ease;
}

/* Slide up on hover */
.team-person:hover .team-social {
  bottom: 0;
  opacity: 1;
}

/* Icons */
.team-social a {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.team-social a:hover {
  background: #F28C28;
  transform: translateY(-2px);
}

/* Text */
.team-person h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-person p {
  font-size: 14px;
  color: #6b7280;
}

/* Tablet */
@media (max-width: 992px) {
  .team-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-img-wrap img {
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .team-row {
    grid-template-columns: 1fr;
  }

  .team-img-wrap img {
    height: 300px;
  }
}


 /* ================= ABOUT SECTION ================= */

.about-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* Clipped background layer */
.about-bg {
  position: absolute;
  inset: 0;
background:
    linear-gradient(
      rgba(11,77,136,0.85),
      rgba(11,77,136,0.85)
    ) , url("https://img.freepik.com/free-vector/background-template-with-mandala-designs_1308-69570.jpg?t=st=1769505336~exp=1769508936~hmac=ea52a46174949198aaf3c46b3ce689e4a80dd53ba27be6474c2c2ffea345596b&w=2000");
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 1;
  content: "";
  background-repeat: no-repeat;
  object-fit: cover;
}

/* Ensure content stays above */
.about-section .container {
  position: relative;
  z-index: 2;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* Text */
.about-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #F28C28;
}

.about-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 12px 0 20px;
}
/* ================= MANUSCRIPT NOTE ================= */

.manuscript-note {
  position: relative;
  padding-left: 24px;
  max-width: 320px;
}

/* Vertical margin line */
.manuscript-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #F28C28,
    rgb(242, 140, 40)
  );
}

/* Number */
.manuscript-note .years {
  font-size: 44px;
  font-weight: 700;
  color: #F28C28;
  display: block;
  margin-bottom: 6px;
}

/* Text */
.manuscript-note p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}

.manuscript-note em {
  font-style: normal;
  color: #fff;
  font-size: 13px;
}


/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }

  .about-bg {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }
}


    /* Mission */
    .mission {
      background: #F5F7FA;
      padding: 80px 0;
    }

    .mission-card {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    /* Stats */
    .stats {
      background: #0B4D88;
      color: #fff;
      padding: 50px 0;
    }

    .stats h2 {
      font-weight: 800;
    }

    /* Team */
    .team-img {
      border-radius: 10px;
    }

    /* CTA */
    .cta {
      background: linear-gradient(
        rgba(11,77,136,0.85),
        rgba(11,77,136,0.85)
      ),
      url("https://images.unsplash.com/photo-1556761175-4b46a572b786") center/cover;
      padding: 90px 0;
      color: #fff;
    }

/* ================= EVENT COURSES (PRECISE) ================= */

.event-courses {
  position: relative;
  padding: 90px 0 0;
}

/* Blue background */
.event-bg {
  position: absolute;
  inset: 0;
  height: 420px;
   background:
    linear-gradient(rgba(11,77,136,0.90), rgba(11,77,136,0.90)),
    url("images/ancient/fest.jpeg") center/cover no-repeat;
  z-index: 1;
}

.event-courses .container {
  position: relative;
  z-index: 2;
}

/* Header */
.section-label {
      font-size: 16px;
    font-weight: 500;
  text-transform: uppercase;
  color: #F28C28;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 8px;
}

/* Cards row lifts above background */
.event-cards {
  margin-top: 40px;
}

/* Card */
.event-card {
  background: #fff;
  border-radius: 6px; /* subtle */
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  height: 100%;
}

/* Image */
.event-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Play icon (only first card) */
.play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44px;
  height: 44px;
  background: #0B4D88;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Content */
.event-content {
  padding: 20px;
}

.event-content h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.event-content p {
  font-size: 13px;
  color: #6b7280;
}

/* Stats bar overlaps cards */
.event-stats {
  background: #0B4D88;
  margin-top: 30px;
  padding: 35px 0;
  color: #fff;
}

.event-stats h3 {
  font-weight: 700;
  font-size: 28px;
}

.event-stats p {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .event-bg {
    height: 500px;
  }

  .section-title {
    font-size: 26px;
  }
}


/* ================= INDOLOGY PILLARS ================= */

.indology-pillars {
  padding: 100px 0;
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

/* Header */
.pillars-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-label {
      font-size: 16px;
    font-weight: 500;
  text-transform: uppercase;
  color: #F28C28;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0B4D88;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

/* Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}

/* Pillar */
.pillar {
  position: relative;
  padding-left: 60px;
}

.pillar::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #F28C28,
    rgba(242, 140, 40, 0.15)
  );
}

/* Index */
.pillar-index {
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 28px;
  font-weight: 700;
  color: #0B4D88;
}

/* Text */
.pillar h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0B4D88;
}

.pillar p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}


/* ================= CAREER SCOPE SECTION ================= */

.career-scope {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

/* Background layer (clipped) */
.career-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(11, 77, 136, 0.95),
      rgba(11, 77, 136, 0.95)
    ),
    url("https://images.unsplash.com/photo-1519681393784-d120267933ba")
      center/cover;
  /* clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); */
  z-index: 1;
}

/* Content above background */
.career-scope .container {
  position: relative;
  z-index: 2;
}

/* Text */
.career-scope .section-label {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #F28C28;
  display: inline-block;
  margin-bottom: 10px;
}

.career-scope .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.career-text {
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
  max-width: 780px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .career-scope {
    padding: 80px 0;
  }

  .career-scope .section-title {
    font-size: 26px;
  }

 
}


/* ================= EVENTS SECTION ================= */

/* ================= EVENTS REDESIGN ================= */

.events-redesign {
  padding: 100px 0;
  background: #ffffff;
}

/* Header */
.events-header {
  max-width: 760px;
  margin: 0 auto 80px;
}

.events-header span {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #F28C28;
}

.events-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 14px;
  color: #0B4D88;
}

.events-header p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

/* Events layout */
.events-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 60px;
}

/* Event item */
.event-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
}

/* Image */
.event-image {
  position: relative;
}

.event-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.5s ease;
}

.event-item:hover img {
  transform: scale(1.04);
}

/* Date */
.event-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  background: rgba(11, 77, 136, 0.85);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
}

/* Content */
.event-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0B4D88;
  margin-bottom: 10px;
}

.event-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Meta */
.event-meta {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}

/* Link */
.event-link {
  font-size: 14px;
  font-weight: 600;
  color: #0B4D88;
  text-decoration: none;
  position: relative;
}

.event-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: #F28C28;
  transition: width 0.3s ease;
}

.event-link:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .events-list {
    grid-template-columns: 1fr;
  }

  .event-item {
    grid-template-columns: 1fr;
  }

  .event-image img {
    height: 240px;
  }
}


/* ================= MODERN CONTACT (NEO) ================= */

.contact-neo {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* Background image + light blue overlay */
.contact-neo-bg {
  content: "";
  position: absolute;
  inset: 0;
    background:
    linear-gradient(rgba(11,77,136,0.85), rgba(11,77,136,0.85)),
    url("images/ancient/konark.jpeg") center/cover no-repeat;
  clip-path: polygon(0 0, 60% 0, 55% 100%, 0 100%);
  z-index: 1;
}

/* Content layer */
.contact-neo .container {
  position: relative;
  z-index: 2;
}

/* Left content */
.contact-neo-left {
  padding-right: 60px;
}

.contact-neo-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-neo-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #e5e7eb;
  max-width: 480px;
}

/* Form */
.contact-neo-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contact-neo-form h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #0B4D88;
}

/* Inputs */
.contact-neo-form .form-control {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
}

/* Button */
.btn-primary-custom {
  background: #F28C28;
  border: none;
  text-decoration: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 6px;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-neo-bg {
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  }

  .contact-neo-left {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .contact-neo-left h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .contact-neo {
    padding: 80px 0;
  }

  .contact-neo-form {
    padding: 35px;
  }
}



  