/* =========================================================
   1. GLOBAL VARIABLES & FONTS
   ========================================================= */
   
/* Playfair Display for Headings (Luxury feel) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');
/* Lato for Navbar text (Clean, modern) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
/*For Body text*/
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --primary-blue: #003366;
  --accent-red: #e63946;
  --accent-yellow: #fca311;
  --text-dark: #222222;
  --text-muted: #555555;
  --bg-light: #fcfcfd;
}

body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  /* Pure White Background */
  background-color: #ffffff;
}

/* Headings get the luxury serif font, centered, and uppercase */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #800000;              /* Maroon Headings */
  text-align: center;          /* Centers all headings */
  text-transform: uppercase;   /* Makes all headings capital */
  letter-spacing: 1px;         /* Adds breathing room for capital letters */
}

/* =========================================================
   2. UTILITY CLASSES (Spacing & Alignment)
   ========================================================= */
/* Reduced vertical spacing globally */
.section-spacer {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.justify-text, .justify-text p {
  text-align: justify;
  text-justify: inter-word;
}

.bg-very-light {
  background-color: transparent; /* Removed solid bg for glass effect */
}

.page-header {
  text-align: center;
  margin-bottom: 2rem; 
  color: #000000;
}

.header-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  color: #000000;
}


/* Main Section Titles */
.section-title {
  color: var(--primary-blue);
  text-align: center;
  font-weight: 700;
  margin-top: 30px; 
  margin-bottom: 20px; 
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* =========================================================
   3. NAVIGATION BAR
   ========================================================= */
.custom-navbar {
  margin-top: 15px; 
  margin-bottom: 25px; 
  text-align: center; 
}

.nav-list {
  list-style-type: none; 
  padding: 0;
  margin: 0;
  display: inline-block; 
}

.nav-list > li {
  display: inline-block; 
  margin: 0 15px; 
  position: relative; 
}

.nav-list > li > a, .dropbtn {
  text-decoration: none;
  color: #000; 
  font-size: 1.05rem;
  font-weight: 500;
  padding-bottom: 5px;
  font-family: "Lato", sans-serif;
  transition: color 0.3s ease;
}

.nav-list > li > a:hover, .dropbtn:hover {
  color: #39E6D8; 
  border-bottom: 2px solid var(--accent-red); 
}

/* Dropdown (Glassmorphism applied) */
.dropdown-content {
  display: none; 
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  min-width: 200px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: left;
  border-radius: 8px;
  top: 100%; 
  left: 0;
  overflow: hidden;
}

.dropdown-content a {
  color: #000;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  text-align: left; /* Keep dropdown links left aligned */
  text-transform: none; /* Keep dropdown links normal case */
}

.dropdown-content a:hover {
  background-color: rgba(158, 230, 57, 0.6);
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =========================================================
   4. HERO BANNER & BUTTONS
   ========================================================= */
.hero-banner-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  margin-top: 1rem;
}

.hero-gif {
  width: 100%;
  height: auto;
  display: block;
}

.btn-hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.2) !important;
}

/* =========================================================
   5. GLASSMORPHISM CARDS (Takeaways, Timelines, Videos)
   ========================================================= */
/* Takeaway Cards */
.takeaway-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 3px solid var(--primary-blue); 
  border-radius: 12px;
  padding: 20px 15px; 
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 30, 80, 0.05);
}

.takeaway-card:hover {
  box-shadow: 0 12px 40px 0 rgba(0, 30, 80, 0.1);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.65);
}

.takeaway-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
}

/* Timeline/Important Dates */
.timeline-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px 0 rgba(0, 30, 80, 0.05);
  padding: 20px; 
}

.timeline-list {
  list-style-type: none;
  padding-left: 0;
}

.timeline-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px; 
  border-left: 2px solid rgba(0, 51, 102, 0.2);
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.timeline-list li span {
  color: #555;
  font-size: 0.85rem;
}

/* Video Cards */
.video-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;  
  overflow: hidden;    
  box-shadow: 0 8px 32px 0 rgba(0, 30, 80, 0.05); 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  height: 100%;        
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.video-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 12px 40px 0 rgba(0, 30, 80, 0.1); 
  background: rgba(255, 255, 255, 0.65);
}

.video-desc {
  padding: 10px; 
  text-align: center;
  font-weight: 600;
  color: #333;
  font-family: 'Lato', sans-serif;
  background: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

/* =========================================================
   6. SPEAKERS & COMMITTEE
   ========================================================= */
/* Speakers List */
.speaker-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.speaker-list li {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 4px solid var(--accent-red); 
  padding: 12px 15px; 
  margin-bottom: 12px; 
  border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.03); 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.3;
  font-family: 'Lato', sans-serif;
  text-align: left; /* Strictly left aligned */
}

.speaker-list li:hover {
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); 
  background: rgba(255, 255, 255, 0.65);
}

.speaker-list li strong {
  display: block; 
  color: var(--primary-blue); 
  font-size: 1.1rem;
  margin-bottom: 2px;
  font-family: 'Lato', sans-serif;
  text-align: left; /* Strictly left aligned */
}

/* Committee Profile Cards */
.committee-profile-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px 30px 30px 12px; 
  padding: 10px; 
  box-shadow: 0 8px 32px 0 rgba(0, 30, 80, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.committee-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 30, 80, 0.1);
  background: rgba(255, 255, 255, 0.65);
}

.profile-img {
  width: 100%;
  height: 350px; 
  object-fit: cover;
  border-radius: 20px 20px 20px 8px; 
  margin-bottom: 12px;
}

.profile-content {
  padding: 0 8px 8px 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left; /* Strictly left aligned */
}

.profile-name {
  font-family: 'Lato', sans-serif; /* Changed to Lato */
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  text-align: left; /* Strictly left aligned */
}

.profile-role {
  font-family: 'Lato', sans-serif; /* Changed to Lato */
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 12px; 
  flex-grow: 1;
  text-align: left; /* Strictly left aligned */
}

.btn-know-more {
  background-color: var(--accent-yellow);
  color: #ffffff !important;
  padding: 6px 18px; 
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-know-more:hover {
  background-color: #e59005;
  transform: translateX(3px);
}

/* =========================================================
   7. ACCOMMODATION & TRAVEL
   ========================================================= */
/* --- Travel Section Icons --- */
.travel-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.travel-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-box {
  font-size: 3rem;
  color: #003366; /* Conference Blue */
  margin-bottom: 15px;
}

/* --- Map Container --- */
.map-container iframe {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Hostel Note Styling --- */
.hostel-note {
  border-left: 5px solid #ffbf00 !important; /* Yellow Accent */
  background-color: #fffaf0 !important;
  padding: 20px;
  font-size: 1.1rem;
}

/* --- Hotel Cards --- */
.hotel-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.3s ease;
}

.hotel-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.hotel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Ensures images don't stretch */
}

.hotel-info {
  padding: 15px;
  text-align: center;
}

.hotel-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.hotel-info p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* --- Tourism Cards --- */
.tour-card {
  background: #fff;
  border-left: 4px solid #003366; /* Blue Accent */
  padding: 20px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  height: 100%;
}

.tour-header {
  font-size: 1.2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 8px;
}

/* --- Premium Horizontal Hotel Cards --- */

/* 1. The Card Container */
.hotel-list-row {
  background: #ffffff;
  border-radius: 16px; /* Smooth, modern rounded corners */
  padding: 25px 30px;
  margin-bottom: 25px; /* Replaces the <hr> divider with clean spacing */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); /* Elegant, soft shadow */
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover effect: lifts the card off the page */
.hotel-list-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 51, 102, 0.1); 
}

/* 2. Text Formatting */
.hotel-info-box {
  padding-right: 15px;
}

.hotel-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003366; /* Deep conference blue */
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hotel-meta {
  font-size: 1.05rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-meta .text-danger {
  color: #e63946 !important; /* Eye-catchy red location pin */
  font-size: 1.3rem;
}

/* 3. Image Styling & Animation */
.hotel-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hotel-img-horizontal {
  width: 100%;
  height: 180px; /* Forces all images to be the exact same height */
  object-fit: cover; /* Prevents stretching */
  transition: transform 0.5s ease;
  display: block;
}

/* Subtle image zoom when hovering over the card */
.hotel-list-row:hover .hotel-img-horizontal {
  transform: scale(1.05); 
}

/* 4. The Action Button */
.btn-location {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%); /* Green Gradient */
  color: white !important;
  padding: 12px 25px;
  border-radius: 50px; /* Modern pill shape */
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); /* Green glow */
  transition: all 0.3s ease;
}

.btn-location:hover {
  background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* ==========================================================================
   PLACES TO SEE NEARBY CARDS
   ========================================================================== */

.places-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.places-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px 12px 0 0; /* Match rounding on top edges */
  overflow: hidden; /* Prevent image from spilling over border radius */
}

/* Ensure images fill the container uniformly */
.places-img-wrapper img {
  width: 100%;
  height: 250px; /* Fixed height for uniformity */
  object-fit: cover;
  display: block; /* Remove default inline spacing */
}

/* Dark gradient overlay at the bottom of the image */
.places-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* Gradient height */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none; /* Allow clicks to pass through if needed later */
}

/* Text overlay on image */
.places-header {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 1; /* Ensure text is above the gradient */
}

/* Text body below image */
.places-body {
  padding: 20px 0;
}

.places-body p {
  text-align: justify;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* =========================================================
   8. TABLES 
   ========================================================= */
/* Registration Table Wrapper */
.fee-table {
  overflow-x: auto; 
  margin-bottom: 30px; 
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px 0 rgba(0, 30, 80, 0.05);
}

.fee-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.95rem;
  background-color: transparent;
}

.fee-table thead tr {
  background: rgba(0, 51, 102, 0.85); 
  color: #ffffff;
  text-align: center;
}

.fee-table th {
  padding: 12px 15px; 
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none; 
}

.fee-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.fee-table tbody tr:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.4);
}

.fee-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.fee-table td {
  padding: 12px 15px; 
  color: #333;
  vertical-align: middle;
}

.fee-table td:nth-child(2),
.fee-table td:nth-child(3) {
  text-align: center;
  font-weight: 600;
  color: var(--primary-blue); 
}

.fee-table td:first-child {
  text-align: left;
  font-weight: 600; 
  color: #444;
}

/* =========================================================
   9. MISCELLANEOUS (Pills & Notes)
   ========================================================= */
.theme-pill {
  background: rgba(253, 242, 240, 0.6); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #660000;            
  font-weight: 700;          
  font-size: 1.05rem;
  font-family: "Lato", sans-serif;
  text-align: center;
  border-radius: 50px;       
  padding: 10px 15px; 
  margin-bottom: 12px; 
  width: 100%;               
  box-shadow: 0 4px 12px rgba(0,0,0,0.03); 
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px; 
  transition: transform 0.2s, background 0.2s; 
}

.theme-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
}

.hostel-note {
  border-left: 5px solid var(--accent-yellow) !important; 
  background: rgba(255, 250, 240, 0.7) !important;
  backdrop-filter: blur(8px);
  padding: 15px; 
  font-size: 1.05rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.8);
}

/* =========================================================
   10. CONTACT SECTION (Premium Frosted Glass)
   ========================================================= */

/* The Glass Card Container */
.card-box {
  background: rgba(255, 255, 255, 0.55); /* High transparency */
  backdrop-filter: blur(16px);           /* Strong blur for liquid/frosted effect */
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8); /* Sharp, clean edge */
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Very soft, diffuse shadow */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.7);
}

/* Card Headings */
.card-header {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #003366; /* var(--primary-blue) */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

/* --- LEFT SIDE: Reach Us --- */
.contact-info {
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: #003366; /* Deep blue to ground the design */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.info-item strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.info-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.map-wrapper {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 220px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* --- RIGHT SIDE: Form Elements --- */
.custom-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Liquid/Glass Input Fields */
.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #003366;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4); /* Semi-transparent inputs */
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #222;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02); /* Subtle inner depth */
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.custom-form input::placeholder,
.custom-form textarea::placeholder {
  color: #777;
  letter-spacing: 0.5px;
}

/* Input Focus State (Glow) */
.custom-form input:focus,
.custom-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.9); /* Turns opaque when typing */
  border-color: #003366;
  box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.1);
}

.custom-form textarea {
  resize: vertical;
  border: 1px solid #003366;
}

/* Submit Button */
.submit-btn {
  background: #003366;
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.submit-btn:hover {
  background: #e63946; /* var(--accent-red) */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}


/* =========================================================
   11. PAYMENT DETAILS SECTION
   ========================================================= */

/* Main Title with lines on sides */
.payment-title-container {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.payment-title-container::before,
.payment-title-container::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.payment-title-container::before {
  margin-right: 1.5em;
}

.payment-title-container::after {
  margin-left: 1.5em;
}

.payment-main-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Outline Card */
.payment-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  margin-bottom: 2rem;
}

/* Headers */
.payment-header {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a5568; /* Slate gray matching the image */
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
}

.payment-subheader {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* Bank Details List */
.bank-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
}

.bank-details-list li {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 8px;
  line-height: 1.5;
  text-align: left;
}

.bank-details-list li strong {
  color: #2d3748;
  font-weight: 700;
  margin-right: 5px;
}

/* Divider Line */
.payment-divider {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 25px 0;
  opacity: 1;
}

/* Bulleted Instructions */
.payment-instructions {
  font-family: 'Lato', sans-serif;
  color: #4a5568;
  padding-left: 20px;
  text-align: left;
  margin: 0;
}

.payment-instructions li {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 1rem;
}

/* --- Right Side: QR Code Styling --- */
.qr-container-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box {
  background-color: #f8f9fa; /* Light gray box behind the phone */
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  padding: 35px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* --- Mobile Phone QR Mockup --- */
.phone-frame {
  width: 220px;
  background-color: #5c4033; /* Dark brown frame */
  border-radius: 24px;
  padding: 12px 8px 16px 8px; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-speaker {
  width: 45px;
  height: 4px;
  background-color: #3e2723;
  border-radius: 4px;
  margin-bottom: 12px;
}

.phone-screen {
  width: 100%;
  background-color: #baddf0; /* Soft blue background */
  border-radius: 4px;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  border: 2px solid #3e2723;
}

.qr-img-wrapper {
  background: white;
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
}

.phone-qr-img {
  width: 100%;
  display: block;
}

.upi-text {
  background-color: #cfd6d8; /* Grayish background for the ID */
  border: 1px solid #a0aab0;
  width: 100%;
  font-family: 'Times New Roman', serif; /* Matches the serif font in the image */
  font-size: 0.75rem;
  font-weight: bold;
  color: #000;
  padding: 4px 0;
  margin-bottom: 12px;
  text-align: center;
}

.phone-scan-btn {
  background-color: #004d66; /* Dark teal button */
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 25px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.phone-home-btn {
  width: 35px;
  height: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2); 
  border-radius: 10px;
  margin-top: 12px;
}


/* =========================================================
   CONTACT DETAILS & ICONS
   ========================================================= */

/* Header Styling */
.contact-header-container {
  text-align: center;
  margin-bottom: 0.5rem;
  margin-top: 0rem;
}

.contact-main-title {
  font-family: 'Lato', sans-serif;
  color: #1a3c61; /* Deep navy blue */
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0rem !important;
}

.contact-divider {
  border: 0;
  border-top: 1px solid #1a3c61;
  margin: 0 auto;
  width: 90%;
}

/* Layout for each contact row */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* The Icon Circle (Matching the screenshot exactly) */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: #f4f8fa; /* Very light blue-gray */
  color: #004d66; /* Deep teal */
  border-radius: 50%;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-right: 20px;
  /* Soft, offset drop shadow exactly like the image */
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.06), 2px 2px 8px rgba(0, 0, 0, 0.02);
}

/* Text Container & Typography */
.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 55px; /* Ensures text is vertically balanced with the icon */
}

.contact-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #222222;
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.contact-value {
  font-family: 'Lato', sans-serif;
  color: #6c757d; /* Soft slate gray */
  font-size: 1rem;
  line-height: 1.8;
}

/* Custom Link Styling for the Email */
.contact-link {
  color: #006b8f; /* Teal color matching the screenshot */
  text-decoration: underline;
  text-underline-offset: 3px; /* Pushes the underline down slightly for a cleaner look */
}

.contact-link:hover {
  color: #004d66;
}

/* Card Container Styling */
.card-box {
  background-color: #ffffff;
  border: 2px solid #006b8f;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 0rem;
}

/* Specific to the map card to ensure the map fills the corners */
.card-box.overflow-hidden iframe {
  border-radius: 12px;
  display: block; /* Removes tiny gap under the iframe */
}