/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  scroll-padding-top: 80px; /* adjust this based on your header height */
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

/* ================= Go to top button ============= */
.back-to-top {
  position: fixed;
  bottom: 30px; /* Distance from the bottom */
  right: 30px; /* Distance from the right */
  width: 50px;
  height: 50px;
  background-color: #c38254fb; /* Background color */
  color: white; /* Text color */
  border-radius: 50%; /* Make it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px; /* Icon size */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Shadow for depth */
  transition: background-color 0.5s, transform 0.5s; /* Smooth transition */
  cursor: pointer; /* Pointer cursor on hover */
  z-index: 9999; /* Ensure it’s on top */
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Hide it initially */
}

/* Hover Effect */
.back-to-top:hover {
  background-color: #f09b5efb; /* Darker shade on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Visible when scrolled */
.back-to-top.show {
  opacity: 1; /* Fully visible */
  visibility: visible; /* Make it visible */
}

/* ======================= Main Banner Section =======================*/
.main-banner {
  background: url(images/new_banner.jpg) no-repeat center center/cover;
  height: 90vh; /* Full height of the screen */
  width: auto; /* Full width of the screen */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0; /* Create a gap between the header and banner */
  padding: 0 2%; /* Use relative padding */
  z-index: 1; /* Lower z-index than the navbar */
  position: relative; /* Ensure it has a stacking context */
}

/* Text Styling */
.display-4 {
  font-size: 2.5rem; /* Initial font size */
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
  animation: pulse 3s infinite;
  text-shadow: 2px 2px 5px rgba(91, 114, 240, 0.945);
}

.lead {
  color: rgb(255, 255, 255); /* White text */
  font-weight: 400;
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgba(236, 3, 3, 0.945); /* Dark shadow for depth */
}
/* Add a semi-transparent background behind the text */
.main-banner .container {
  background-color: rgba(45, 2, 2, 0.379); /* Semi-transparent black */
  padding: 20px 0px;
  border-radius: 8px;
  z-index: 1; /* Ensure the background is behind text */
  max-width: 1040px; /* Limit width to ensure readability */
}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .lead {
    font-size: 30px;
  }

  .date {
    font-size: 20px;
  }

  .main-banner {
    height: 80vh; /* Adjust height for smaller screens */
  }
}

@media (max-width: 590px) {
  .display-4 {
    font-size: 1.8rem; /* Reduce font size for smaller screens */
  }

  .lead {
    font-size: 25px; /* Reduce lead font size */
  }

  .date {
    font-size: 16px; /* Reduce date font size */
  }

  .main-banner {
    height: auto; /* Allow height to adjust based on content */
    padding: 40px 10px; /* Adjust padding for mobile */
  }

  .main-banner .container {
    padding: 15px; /* Reduce container padding */
  }

  .display-4 br {
    display: none; /* Remove line breaks for smaller screens */
  }
}

@media (max-width: 480px) {
  .display-4 {
    font-size: 1.5rem; /* Further reduce font size */
  }

  .lead {
    font-size: 28px; /* Reduce lead font size */
  }

  .date {
    font-size: 14px;
  }

  .main-banner {
    height: auto;
    padding: 30px 10px;
  }
  .btn-register {
    margin-right: 10%;
  }
}

/* Date Styling */
.date {
  font-size: 24px;
  font-weight: bold;
  color: #ffd700;
  background-color: rgba(81, 60, 60, 0.972);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  animation: bounce 2s infinite;
}

/* Pulse Animation for Heading */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Register Now Button Styling */
.btn-register {
  display: inline-block;
  background-color: rgba(81, 60, 60, 0.972); /* Button color */
  color: #fff; /* White text color */
  padding: 11px 30px; /* Padding for the button */
  font-size: 1.3rem; /* Font size for the button */
  font-weight: 700; /* Bold text */
  text-transform: uppercase; /* Uppercase letters */
  text-decoration: none; /* Remove underline */
  border-radius: 8px; /* Rounded corners */
  margin-top: 20px; /* Space above the button */
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-left: 10%;
}

.btn-register:hover {
  background-color: #e55335; /* Darker button color on hover */
  transform: translateY(-3px); /* Slight lift effect on hover */
}

/* =======================Organizer Section Styles======================= */
.organizer {
  background: #dfb9b9; /* Light grey background for simplicity */
  position: relative; /* For pseudo-elements positioning */
  padding: 60px 20px; /* Increased padding for more space */
  border-radius: 15px; /* More rounded corners */
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  overflow: hidden; /* To contain pseudo-elements */
  margin-top: 20px;
}

/* Background Pattern Overlay */
.organizer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("images/organizer-pattern.jpg"); /* Working texture pattern */
  opacity: 0.7; /* Light opacity to avoid distraction */
  top: 0;
  left: 0;
  z-index: 0; /* Behind the content */
}

/* Light background for content */
.organizer .container {
  position: relative; /* For z-index control */
  z-index: 1; /* Ensure content is above the background image */
  background: rgba(
    222,
    208,
    150,
    0.607
  ); /* White background with some transparency */
  border-radius: 15px; /* Rounded corners for content area */
  padding: 40px; /* Padding for content */
}

/* Header Styling */
.organizer h3 {
  font-size: 2.5rem; /* Larger font size */
  font-weight: 700; /* Bold for emphasis */
  color: #1e3e5f; /* Dark grey for the heading */
  margin-bottom: 25px; /* Space below the heading */
  position: relative; /* Position relative for ::after to work */
  text-align: center; /* Center the text */
}

.organizer p {
  font-size: 1.8em;
  font-weight: 700;
}

/* Image container below the JSB logo */
.image-container {
  display: flex;
  flex-direction: row; /* Align images horizontally */
  align-items: center;
  justify-content: center;
  gap: 30px; /* Space between images */
  margin-top: 30px;
}

/* Individual image item */
.image-item {
  text-align: center;
  position: relative;
  max-width: 200px; /* Ensure images have a maximum width */
  flex: 1; /* Allow each image item to flex */
}

/* Bottom text below the image */
.image-text.bottom-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 10px;
}

/* Image styling */
.image-item img {
  width: 100%; /* Ensure images are responsive */
  max-width: 200px; /* Restrict the max width of images */
  border-radius: 10px; /* Rounded corners for the images */
}

/* ===================== Responsive Styles ===================== */

/* On devices with width 768px or less (tablets and mobile devices) */
@media (max-width: 768px) {
  /* Header Styling */
  .organizer h3 {
    font-size: 2rem; /* Slightly smaller font size */
    margin-bottom: 20px;
  }

  /* Image container */
  .image-container {
    gap: 15px; /* Reduce gap between images */
    margin-top: 20px; /* Slightly smaller margin */
    flex-direction: column; /* Stack images vertically on tablets */
  }

  /* Bottom Text */
  .image-text.bottom-text {
    font-size: 1rem; /* Smaller text for mobile */
  }

  /* Image styling */
  .image-item img {
    max-width: 180px; /* Smaller images on mobile */
  }
}

/* On devices with width 480px or less (smaller mobile devices) */
@media (max-width: 480px) {
  /* Header Styling */
  .organizer h3 {
    font-size: 1.8rem; /* Further reduce the heading size */
  }

  /* Image container */
  .image-container {
    gap: 10px; /* Reduce gap further */
    margin-top: 15px; /* Reduce top margin */
    flex-direction: column; /* Stack images vertically on smaller screens */
  }

  /* Bottom Text */
  .image-text.bottom-text {
    font-size: 0.9rem; /* Even smaller text */
  }

  /* Image styling */
  .image-item img {
    max-width: 150px; /* Smaller images for very small screens */
  }
}

/* ======================== About the Conference =========================== */
.highlights {
  padding: 60px 0;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #88d4db 100%);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  margin-top: 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.highlights-content {
  font-size: 18px;
  line-height: 1;
  color: #555;
}

.lead-text {
  line-height: 1.8;
  font-size: 16px;
  text-align: justify;
  color: #444;
}

@media (max-width: 768px) {
  .highlights-content {
    font-size: 16px;
  }
}

/* ================ABout University ====================== */
/* About the Conference styling is used */
#university-background {
  padding: 60px 0;
  background-image: linear-gradient(120deg, #dbd488 0%, #fdfbfb 100%);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  margin-top: 20px;
}

/* ================About Jaipur School of Business====================== */
/* About the Conference styling is used */
#jsb-background {
  padding: 60px 0;
  background-image: linear-gradient(270deg, #a4db88 0%, #fdfbfb 100%);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  margin-top: 20px;
}

/* ================About Indian Council of Social Science Research====================== */
/* About the Conference styling is used */
#icssr-background {
  padding: 60px 0;
  background-image: linear-gradient(120deg, #e0ddda 0%, #e0a7a7 100%);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  margin-top: 20px;
  h3 {
    font-size: 2rem;
  }
}
/*======== Sub-themes are following but are not limited to ============== */
.sub-themes {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f3f9ff, #ffffff);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  margin-top: 20px;
  font-family: "Arial", sans-serif;

  max-width: 100%;
}

.sub-themes .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sub-themes-title {
  font-size: 34px;
  font-weight: bold;
  color: #004d40;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sub-themes-description {
  font-size: 24px;
  color: #444444;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 700;
}

.sub-themes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.sub-themes-list li {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.8;
  position: relative;
  padding: 10px 40px; /* Increase left padding for text */
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sub-themes-list li:before {
  content: "✔";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #00796b;
  font-weight: bold;
}

.sub-themes-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: #e6f7ff;
  cursor: pointer;
}

.sub-themes-list li:hover:before {
  color: #004d40;
}

/* <!-- =================Submission Details and Guidelines============= --> */

.submission-details {
  padding: 60px 20px;
  background-color: #f4f9f9;
  font-family: "Arial", sans-serif;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  margin-top: 20px;
}

.submission-details .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #005f73;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guidelines-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.guidelines-list li {
  font-size: 18px;
  color: #0a9396;
  margin-bottom: 15px;
  padding: 10px 15px;
  border-left: 4px solid #ee9b00;
  background: #eaf8f8;
  border-radius: 4px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.guidelines-list li strong {
  color: #ca6702;
}

.guidelines-list li:hover {
  background: #dff2f2;
  border-color: #bb3e03;
}

.guidelines-list li:last-child {
  margin-bottom: 0;
}

/* ============= Important Dates ================ */
.important-dates {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ebcdbcd4, #e7d7d7ad);
  font-family: "Arial", sans-serif;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  margin-top: 20px;
}

.important-dates .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1a535c;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dates-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.dates-list li {
  font-size: 18px;
  color: #4a4e69;
  margin-bottom: 15px;
  padding: 15px 20px;
  background: #ffffff;
  border-left: 6px solid #ff6b6b;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dates-list li .event {
  font-weight: bold;
  color: #1a535c;
}

.dates-list li .date {
  font-style: italic;
  color: #ff6b6b;
  background-color: #f9f9f9; /* Light background for date box */
  padding: 5px 10px;
  border-radius: 4px;
}

.dates-list li:hover {
  background: #f0fcff;
  border-color: #1a535c;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* =============== Registration ================= */
.registration {
  background: linear-gradient(
    135deg,
    #fff3e0,
    #ffe0b2
  ); /* Light gradient background */
  border-radius: 15px; /* Rounded corners */
  padding: 40px 20px; /* Padding for spacing */
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Shadow for depth */
  margin-top: 20px; /* Space above the section */
  text-align: center; /* Center all text */
}

.registration h3 {
  font-size: 2.5rem; /* Main heading font size */
  color: #2c3e50; /* Vibrant orange color */
  margin-bottom: 20px; /* Space below heading */
  text-transform: uppercase; /* Uppercase for emphasis */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Subtle text shadow for depth */
  font-weight: 700;
}

.registration h4 {
  font-size: 2rem; /* Subheading font size */
  color: #d84315; /* Dark orange color */
  margin-top: 25px; /* Space above subheadings */
  border-bottom: 2px solid #e65100; /* Underline for emphasis */
  padding-bottom: 10px; /* Space between text and underline */
}

.registration p {
  font-size: 1.1rem; /* Paragraph font size */
  color: #333; /* Dark color for text */
  line-height: 1.6; /* Line height for readability */
  margin: 10px 0; /* Vertical margins */
}

.registration ol {
  text-align: left; /* Left-align ordered list */
  padding: 0 20px; /* Padding for indentation */
  margin: 20px 0; /* Space above and below list */
  list-style-type: decimal; /* Decimal list style */
}

.registration li {
  margin-bottom: 20px;
}

.registration-table-container {
  overflow-x: auto; /* Enable horizontal scroll for smaller screens */
}

.registration-table {
  width: 100%; /* Full width */
  border-collapse: collapse; /* Remove space between borders */
  margin: 20px 0; /* Space above and below the table */
}

.registration-table th,
.registration-table td {
  border: 1px solid #2c2222; /* Light gray border */
  padding: 12px; /* Padding for table cells */
  text-align: center; /* Center-align text */
}

.registration-table .money {
  font-weight: 600;
  color: rgba(39, 38, 38, 0.69);
}

.registration-table .money:hover {
  color: black;
}

.registration-table th {
  background-color: #ffe0b2; /* Header background color */
  color: #e65100; /* Header text color */
  font-weight: bold; /* Bold text for header */
}

.registration-table td {
  background-color: #eae6e6; /* White background for table cells */
}

.registration-table td:not(.money) {
  font-weight: 800;
}

.registration-qr {
  width: 100px; /* QR code width */
  margin-top: 10px; /* Increased space above QR code */
  margin-left: 15px;
  transition: transform 0.3s; /* Smooth transition on hover */
}

.registration-qr:hover {
  transform: scale(1.1); /* Enlarge QR code on hover */
}

.note {
  font-weight: bold; /* Bold for the note */
  color: #d32f2f; /* Dark red color */
  margin-top: 20px; /* Space above the note */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .registration {
    padding: 30px 15px; /* Adjust padding for smaller devices */
  }

  .registration h3 {
    font-size: 2rem; /* Smaller font size for main heading */
  }

  .registration h4 {
    font-size: 1.5rem; /* Smaller font size for subheadings */
  }

  .registration p,
  .registration ol {
    font-size: 1rem; /* Smaller font size for paragraphs and list */
  }
}

@media (max-width: 480px) {
  .registration {
    padding: 20px 10px; /* Further adjust padding for mobile devices */
  }

  .registration h3 {
    font-size: 1.8rem; /* Smaller font size for main heading */
  }

  .registration h4 {
    font-size: 1.3rem; /* Smaller font size for subheadings */
  }

  .registration p {
    font-size: 0.9rem; /* Smaller font size for paragraphs */
  }

  .registration-table th,
  .registration-table td {
    padding: 10px; /* Adjust padding for table cells */
  }

  .registration-qr {
    width: 80px; /* Smaller QR code width for mobile */
  }
}

/* ================== Convener =============== */

.patron-section {
  background-color: #f0f4f8; /* Light background for contrast */
  padding: 60px 20px; /* Padding for spacing */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Subtle shadow for depth */
  margin-top: 20px;
  text-align: center; /* Center-align content */
}

/* Section Title */
.patron-section h3 {
  font-size: 2.2rem; /* Adjust title size */
  font-weight: 700; /* Bold for emphasis */
  color: #2c3e50; /* Dark color for text */
  margin-bottom: 20px; /* Space below title */
  text-transform: uppercase; /* Uppercase heading */
  letter-spacing: 1px; /* Slight letter spacing */
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Patron Cards */
.patron-card {
  text-align: center; /* Center the content */
  margin-bottom: 30px; /* Add spacing between the cards */
}

/* Image Styling */
.patron-card img {
  max-width: 150px; /* Consistent image size */
  height: 150px; /* Ensure image is square */
  border-radius: 50%; /* Circular image */
  object-fit: cover; /* Cover entire area */
  margin-bottom: 15px; /* Space below the image */
  border: 3px solid #ff6347; /* Accent border around image */
}

/* Name and Title */
.patron-card h4 {
  font-size: 1.25rem; /* Slightly larger font for the name */
  font-weight: bold; /* Bold name */
  color: #333; /* Dark color */
  margin-bottom: 5px; /* Space below the name */
}

.patron-card p {
  font-size: 1rem; /* Regular font size */
  color: #666; /* Grey text color */
  margin: 0; /* Remove default margin */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .patron-card {
    margin-bottom: 20px; /* Reduce spacing between cards on smaller screens */
  }
}

/* =========== Co- Patron ============= */
.co-patron-section {
  background-color: #f0f4f8; /* Light background for contrast */
  padding: 60px 20px; /* Padding for spacing */
  border-radius: 10px; /* Rounded corners */
  margin-top: 20px;
  text-align: center; /* Center-align content */
}

/* Section Title */
.co-patron-section h3 {
  font-size: 2.2rem; /* Adjust title size */
  font-weight: 700; /* Bold for emphasis */
  color: #2c3e50; /* Dark color for text */
  margin-bottom: 40px; /* Space below title */
  text-transform: uppercase; /* Uppercase heading */
  letter-spacing: 1px; /* Slight letter spacing */
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Co-Patron Grid */
.co-patron-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns by default */
  gap: 30px; /* Spacing between cards */
  justify-items: center; /* Center the items in each cell */
}

/* Co-Patron Cards */
.co-patron-card {
  text-align: center; /* Center the content */
  padding: 15px;
  border-radius: 10px; /* Rounded corners for each card */
}

.co-patron-card img {
  max-width: 150px; /* Consistent image size */
  height: 150px; /* Ensure image is square */
  border-radius: 50%; /* Circular image */
  object-fit: cover; /* Cover entire area */
  margin-bottom: 15px; /* Space below the image */
}

.co-patron-card h4 {
  font-size: 1.25rem; /* Slightly larger font for the name */
  font-weight: bold; /* Bold name */
  color: #333; /* Dark color */
  margin-bottom: 5px; /* Space below the name */
}

.co-patron-card p {
  font-size: 1rem; /* Regular font size */
  color: #1d1919; /* Grey text color */
  margin: 0; /* Remove default margin */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .co-patron-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }
}

/* ================== How to reach ======================= */
.transport-section {
  background: linear-gradient(
    135deg,
    #e3f2fd,
    #bbdefb
  ); /* Light blue gradient background */
  border-radius: 15px; /* Rounded corners */
  padding: 40px; /* Padding for spacing */
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Shadow for depth */
  margin-top: 20px; /* Space above the section */
  text-align: center; /* Center all text */
}

.transport-section h3 {
  font-size: 2.5rem; /* Large heading font size */
  color: #2c3e50; /* Dark blue for heading */
  margin-bottom: 20px; /* Space below heading */
  text-transform: uppercase; /* Uppercase for emphasis */
  letter-spacing: 1px; /* Letter spacing for style */
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.transport-content {
  display: flex; /* Use flexbox to create side-by-side layout */
  justify-content: space-between; /* Space out the containers */
  margin-top: 20px; /* Space above the content */
}

.text-container {
  flex: 1; /* Take up equal space */
  padding-right: 20px; /* Space between text and map */
}

.text-container p {
  font-size: 1.1rem; /* Paragraph font size */
  color: #333; /* Dark color for text */
  line-height: 1.6; /* Line height for readability */
  margin-bottom: 30px; /* Vertical margins */
  max-width: 800px; /* Limit paragraph width for better readability */
  margin-left: auto;
  margin-right: auto; /* Center the paragraph */
  font-weight: 600;
}

.map-container {
  flex: 1; /* Take up equal space */
  height: 300px; /* Fixed height for the map */
  border-radius: 10px; /* Rounded corners for the map */
  overflow: hidden; /* Ensure corners are rounded */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .transport-content {
    flex-direction: column; /* Stack elements vertically on smaller screens */
  }

  .text-container {
    padding-right: 0; /* Remove right padding */
    margin-bottom: 20px; /* Space below text container */
  }

  .map-container {
    width: 100%; /* Full width for map */
    height: 250px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .transport-section {
    padding: 20px 10px; /* Further adjust padding for mobile devices */
  }

  .transport-section h3 {
    font-size: 1.5rem; /* Smaller font size for main heading */
  }

  .text-container p {
    font-size: 0.9rem; /* Smaller font size for paragraphs */
  }

  .map-container {
    height: 200px; /* Further adjust height for mobile */
  }
}

/* =============== tourist place ============== */
.tourist-places-section {
  background: linear-gradient(
    135deg,
    #fff3e0,
    #ffe0b2
  ); /* Light orange gradient */
  border-radius: 15px; /* Rounded corners */
  padding: 20px; /* Padding for spacing */
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Shadow for depth */
  margin-top: 20px; /* Space above the section */
  text-align: center; /* Center all text */
}

.tourist-places-section h3 {
  font-size: 2.5rem; /* Large heading font size */
  color: #2c3e50; /* Dark orange for heading */
  margin-bottom: 20px; /* Space below heading */
  text-transform: uppercase; /* Uppercase for emphasis */
  letter-spacing: 1px; /* Letter spacing for style */
  font-weight: 700;
  position: relative; /* Position relative for the underline */
  display: inline-block; /* Allow underline to center below */
}

.tourist-places-section p {
  font-size: 1.1rem; /* Paragraph font size */
  color: #1b1a1a; /* Dark color for text */
  line-height: 1.6; /* Line height for readability */
  margin-bottom: 30px; /* Vertical margins */
  max-width: 800px; /* Limit paragraph width for better readability */
  margin-left: auto;
  margin-right: auto; /* Center the paragraph */
  font-weight: 400;
}

.places-grid {
  display: grid; /* Use grid layout */
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px; /* Space between grid items */
}

.place-box {
  background-color: #fff; /* White background for each box */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Shadow for depth */
  overflow: hidden; /* Ensure rounded corners */
  text-align: center; /* Center text */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.place-box:hover {
  transform: translateY(-5px); /* Slight move up on hover */
}

.place-box img {
  width: 100%; /* Full width for images */
  height: 200px; /* Fixed height for images */
  object-fit: cover; /* Crop images to fit */
}

.place-info {
  padding: 15px; /* Padding for info */
}

.place-info strong {
  display: block;
  font-size: 1.2rem; /* Font size for place names */
  color: #e65100; /* Dark orange for place names */
  margin-bottom: 5px; /* Space below place name */
}

.place-info a {
  color: #d81b60; /* Bright pink for links */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth color transition */
}

.place-info a:hover {
  color: #ad1457; /* Darker pink on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .places-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller devices */
  }

  .place-box img {
    height: 150px; /* Adjust image height */
  }
}

@media (max-width: 480px) {
  .places-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .place-box img {
    height: 120px; /* Further adjust image height */
  }

  .tourist-places-section {
    padding: 20px; /* Adjust padding for mobile */
  }

  .tourist-places-section h3 {
    font-size: 1.8rem; /* Smaller font size for heading */
  }

  .tourist-places-section p {
    font-size: 0.9rem; /* Smaller font size for paragraphs */
  }
}

/* =========== Contact and Conference Address============== */
.contact-address-section {
  display: flex; /* Flexbox for two-column layout */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  margin-top: 20px; /* Space above the section */
}

.contact-section,
.address-section {
  flex: 1 1 45%; /* Allow items to grow and shrink, with a base of 45% width */
  background: linear-gradient(
    135deg,
    #e1f5fe,
    #b3e5fc
  ); /* Light blue gradient */
  border-radius: 15px; /* Rounded corners */
  padding: 10px; /* Padding for spacing */
  box-shadow: 0 4px 15px rgba(3, 3, 3, 0.981); /* Shadow for depth */
  text-align: center; /* Center all text */
  display: flex; /* Use flexbox for vertical alignment */
  flex-direction: column; /* Stack children vertically */
  justify-content: space-between; /* Space out items */
  margin: 10px; /* Margin between sections */
}

.contact-section h3,
.address-section h3 {
  font-size: 2.5rem; /* Large heading font size */
  color: #2c3e50; /* Dark blue for heading */
  margin-bottom: 20px; /* Space below heading */
  text-transform: uppercase; /* Uppercase for emphasis */
  letter-spacing: 1px; /* Letter spacing for style */
  position: relative; /* Position relative for the underline */
  display: inline-block; /* Allow underline to center below */
  font-weight: 700;
}

.contact-info {
  flex: 1; /* Take up available space */
  display: flex; /* Use flexbox for layout */
  justify-content: space-around; /* Space out items */
  flex-wrap: wrap; /* Wrap items on smaller screens */
  margin-top: 20px; /* Space above contact items */
}

.contact-item {
  flex: 1 1 300px; /* Responsive width for each contact item */
  margin: 10px; /* Space between items */
  padding: 20px; /* Padding for contact item */
  background-color: #fff; /* White background */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
  transition: transform 0.2s; /* Smooth transform transition */
}

.contact-item:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

.contact-item a {
  color: #d81b60; /* Bright pink for links */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth color transition */
}

.contact-item a:hover {
  color: #ad1457; /* Darker pink on hover */
}

.address-info {
  background-color: #fff; /* White background for address */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Padding for address item */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-address-section {
    flex-direction: column; /* Stack sections on smaller screens */
  }

  .contact-section,
  .address-section {
    flex: 1 1 100%; /* Full width on smaller screens */
    margin: 0; /* Remove margins for full width */
  }

  .contact-section h3,
  .address-section h3 {
    font-size: 1.8rem; /* Slightly smaller heading font size */
  }

  .contact-item {
    flex: 1 1 100%; /* Full width for contact items */
  }
}

/* ===================== Footer ============================= */
.footer-section {
  background-color: #de1819; /* Light grey background */
  color: #333; /* Dark text color */
  padding: 20px 0; /* Padding for spacing */
  margin-top: 20px;
}

.footer-section .container {
  max-width: 1200px; /* Limit the container width */
  margin: 0 auto; /* Center the container */
}

/* Footer Links */
.footer-links {
  display: flex; /* Flexbox layout */
  flex-wrap: wrap; /* Allow items to wrap */
  justify-content: center; /* Center the links */
  gap: 20px; /* Space between links */
  margin-bottom: 15px; /* Space below the links */
}

.footer-link {
  color: #ffffff; /* Link color */
  text-decoration: none; /* Remove underline */
  font-size: 1rem; /* Font size for links */
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline; /* Underline on hover for emphasis */
}

.footer-text {
  font-size: 0.9rem; /* Font size for copyright text */
  color: #000000;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-link {
    font-size: 0.9rem; /* Adjust font size for links */
  }

  .footer-text {
    font-size: 0.8rem; /* Adjust font size for footer text */
  }
}

@media (max-width: 480px) {
  .footer-link {
    font-size: 0.8rem; /* Further reduce font size for links */
  }

  .footer-text {
    font-size: 0.7rem; /* Further reduce font size for footer text */
  }
}
