/* HOME Page */
/* Hero Section Styles - Updated to match Original Design */
.hero-section-2024 {
    height: 100vh;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), #152d35), /* Darker overlay for text pop */
        url("../uploads/Pages/home/home_hero.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    font-family: "Libre Franklin", sans-serif;
}

.hero-content-2024 {
    max-width: 1000px;
    margin-left: 10%; /* Responsive left margin */
    color: #fff;
}

.hero-subtitle-2024 {
    font-size: 18px;
    font-weight: 400; /* Thinner weight for "National Conference" */
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title-2024 {
    font-size: 64px; /* Larger as per design */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-organized-2024 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Info Boxes - Single Border Container Style */
.hero-info-boxes-2024 {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5); /* Thinner white border */
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05); /* Very subtle background */
    margin-bottom: 40px;
}

.hero-info-box-2024 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-info-box-2024 i {
    font-size: 18px;
}

.hero-info-box-text-2024 {
    font-size: 16px;
    font-weight: 500;
}

/* Register Button - Mint Green Style */
.hero-register-btn {
    background: #c2e8e1; /* The specific light mint/teal from image */
    color: #0d2323; /* Dark text for contrast */
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-register-btn:hover {
    background: #a8d6ce;
    color: #0d2323;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title-2024 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-content-2024 {
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }
    .hero-info-boxes-2024 {
        flex-direction: column;
        gap: 15px;
        display: flex;
    }
    .hero-title-2024 {
        font-size: 36px;
    }
}




/* ABOUT SECTION */
.about-section {
  background: #f5f5f5;
  padding: 90px 0;
}

/* CONTAINER */
.about-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 🔥 CENTER BLOCK */
.about-content {
  max-width: 1200px;
  margin: 0 auto; /* ⭐ main alignment fix */
}

/* TITLE */
.about-title {
  font-size: 42px;
  font-weight: 600;
  color: #2c3e73;
  margin-bottom: 25px;
  text-align: left;
}

/* TEXT */
.about-text {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  text-align: justify; /* only text justify */
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 30px;
  background: #264478;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
}

/* FACULTY SECTION */
.faculty-section {
  background: #eeeeee;
  padding: 90px 0;
}

/* CONTAINER WIDTH */
.faculty-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TEXT BLOCK */
.faculty-content {
  max-width: 550px;
}

/* TITLE */
.faculty-title {
  font-size: 38px;
  font-weight: 700;
  color: #2c3e73;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* TEXT */
.faculty-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  margin-bottom: 30px;
}

/* BUTTON */
.faculty-btn {
  display: inline-block;
  background: #2f6edb;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
}

/* IMAGE */
.faculty-img img {
  width: 100%;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faculty-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .faculty-title {
    font-size: 28px;
  }
}

/* FORCE SIDE BY SIDE */
.faculty-section .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.faculty-section .col-lg-6 {
  width: 50%;
}

/* MOBILE FIX */
@media (max-width: 992px) {
  .faculty-section .col-lg-6 {
    width: 100%;
  }
}

/* AIM SECTION */
.aim-section {
  background: #dedede;
  padding: 90px 0;
}

/* ⭐ WIDTH CONTROL */
.aim-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* IMAGE */
.aim-img img {
  width: 90%;
  border-radius: 6px;
}

/* CONTENT */
.aim-content {
  max-width: 520px;
}

/* TITLE */
.aim-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e73;
  margin-bottom: 20px;
}

/* TEXT */
.aim-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  margin-bottom: 30px;
}

/* BUTTON */
.aim-btn {
  display: inline-block;
  background: #1f3d71;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .aim-content {
    max-width: 100%;
    margin-top: 30px;
  }

  .aim-title {
    font-size: 28px;
  }
}

/* FORCE ROW */
.aim-section .row {
  display: flex !important;
  align-items: center;
}

/* FORCE 2 COLUMN */
.aim-section .col-lg-6 {
  width: 50%;
}

/* MOBILE */
@media (max-width: 992px) {
  .aim-section .col-lg-6 {
    width: 100%;
  }
}

:root {
  --primary-blue: #1f346c;
  --secondary-blue: #155aa6;
}

.conference-patrons {
  padding: 60px 0;
  background-color: #fff;
  font-family: "Libre Franklin", sans-serif;
}

.main-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Mic Divider */
.mic-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.mic-divider .line {
  height: 1px;
  width: 80px;
  background-color: #155aa6;
}
.mic-divider i {
  color: var(--secondary-blue);
  margin: 0 10px;
}

/* Tight Grid Control */
.tight-grid {
  max-width: 1100px; /* Adjust this value to bring them even closer */
  margin: 0 auto !important; /* Centers the row */
}

.profile-card {
  padding: 10px; /* Small internal padding */
}

.profile-card img {
  width: 100%;
  /* Ensures all images are the exact same height/aspect ratio */
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.profile-card .name {
  color: var(--primary-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 5px;
}

.profile-card .designation {
  color: var(--secondary-blue);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
  padding: 0 15px;
}

.profile-card .role {
  color: var(--secondary-blue);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
  }
}

.distinguished-speakers {
  background-color: #1f346c; /* Dark blue from your image */
  padding: 80px 0;
  font-family: "Libre Franklin", sans-serif;
}

.speakers-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* White Mic Divider */
.mic-divider-light {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.mic-divider-light .line {
  height: 1px;
  width: 80px;
  background-color: rgb(255, 255, 255);
}
.mic-divider-light i {
  color: #ffffff;
  margin: 0 15px;
  font-size: 1.2rem;
}

/* Card Styling */
.speaker-card {
  background-color: #155aa6; /* Lighter blue for card */
  padding: 40px 20px;
  height: 100%;
  border-radius: 4px; /* Slight rounding on cards */
  transition: transform 0.3s ease;
}

.speaker-img {
  width: 150px; /* Precise sizing for circular/rounded images */
  height: 200px;
  object-fit: cover;
  border-radius: 8px; /* Based on your mention of border-radius */
  margin-bottom: 25px;
}

.speaker-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.speaker-designation {
  color: #ffffff;
  font-weight: 600; /* Bold as requested */
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.9;
}

.speaker-university {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Responsive side spacing (Left/Right screen margins) */
@media (min-width: 992px) {
  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

/* Section Container */
.academic-minds-section {
  background: url("../uploads/2025 Faculty/commonctabg.jpg") no-repeat center
    center;
  background-size: cover;
  height: 70vh;
  position: relative;
  font-family: "Libre Franklin", sans-serif;
}

/* Layer of darkness/blur for text readability */
.academic-minds-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Dark layer as seen in image */
}

/* Typography Styling */
.academic-minds-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.academic-minds-status {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.academic-minds-info {
  font-size: 1rem;
  max-width: 850px;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 400;
}

/* Button Styling using #155AA6 */
.academic-minds-btn {
  background-color: #155aa6 !important;
  color: #ffffff !important;
  padding: 14px 34px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.academic-minds-btn:hover {
  background-color: #124d8f !important; /* Darker shade for hover state */
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Arrow Icon Alignment */
.academic-minds-btn i {
  font-size: 1.1rem;
}

/* Tablet and Mobile adjustments */
@media (max-width: 992px) {
  .academic-minds-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .academic-minds-section {
    height: auto;
    padding: 120px 0;
  }
  .academic-minds-title {
    font-size: 2rem;
  }
}

:root {
  --theme-color: #1f346c;
}

.conference-themes {
  background-color: #ffffff;
  font-family: "Libre Franklin", sans-serif;
}

.theme-main-title {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 2.5rem;
}

/* Card Styling */
.theme-card {
  padding: 40px 20px;
  border-radius: 10px;
  background-color: transparent; /* Invisible by default */
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover Effect: Appears as a card with shadow */
.theme-card:hover {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #f0f0f0;
  transform: translateY(-5px);
}

/* Icon Styling */
.theme-icon {
  font-size: 3rem;
  color: var(--theme-color);
  margin-bottom: 20px;
}

/* Theme Text */
.theme-text {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  max-width: 280px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .theme-card {
    padding: 20px;
  }
  .theme-main-title {
    font-size: 2rem;
  }
}
