.s-site-logo-img {
  content: url(../../Serenity.Assets/logo/white-128.png);
}

.s-UserPermissionDialog > .size,
.s-RolePermissionDialog > .size {
  min-width: 770px;
  width: 770px;
  min-height: 550px;
  height: 550px;
}

.s-UserPermissionDialog .s-DataGrid,
.s-RolePermissionDialog .s-DataGrid {
  height: 100%;
}

/*#s-sidebar{
    display:none;
}*/



/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  overflow-x: hidden;
}

/*#c_logo {
  content: url(/content/site/logo.png);
}*/
/* Navigation Styles */
#NavBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.heads {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

  .heads:hover {
    background: rgba(255, 255, 255, 0.1);
  }

.DemoHead {
  background: #3b82f6;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

  .DemoHead:hover {
    background: #2563eb;
    transform: translateY(-2px);
  }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

  .hamburger div {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
  }

/* Hero Section */
#Div1 {
  margin-top: 20px;
  padding: 100px 5%;
  background: linear-gradient(45deg, rgba(19, 78, 148, 0.8), rgba(65, 99, 206, 0.8)), url('path/to/hero-image.jpg') no-repeat center center;
  text-align: center;
  margin-left: 0px;
}

#c_logo {
  width: 150px;
  margin-bottom: 2rem;
}

#Head1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  animation: fadeIn 2s ease-in-out;
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  animation: fadeIn 2s ease-in-out;
  text-align: center !important;
}

.Head2 {
  font-size: 1.5rem;
  margin: 1rem 0;
  opacity: 0.9;
  color: ghostwhite;
}

#Head3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #e2e8f0;
  font-size: 26px;
  font-weight: 600;
  margin-top: 30px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

#HeadImage {
  width: 80%;
  max-width: 800px;
  margin-top: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

  #HeadImage:hover {
    transform: scale(1.1);
  }

/* POS Section */






/* Default state for larger screens - no slider */
.mobile-slider {
  display: block;
}

.slide-section {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}

.slider-arrows {
  display: none;
}

@media (max-width: 768px) {
  /* Existing styles remain */

  .mobile-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
  }

  .slide-section {
    position: absolute;
    width: 100%;
    min-height: 80vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

    .slide-section.active {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      position: relative;
    }

  .content-section {
    padding: 15px;
  }

  .content-image {
    display: none; /* Hide images on mobile */
  }

  .content-text {
    width: 100%;
    padding: 20px 15px;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .POS2 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
  }

  p.POS2 {
    color: #475569;
    font-size: 0.95rem;
    margin: 12px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
  }

    p.POS2::before {
      content: "→";
      position: absolute;
      left: 0;
      color: #3b82f6;
      font-weight: bold;
    }

  .Div2-slider-arrows, .RoomBookingDiv-slider-arrows, .EventDiv-slider-arrows, .PricingCards-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
  }

  .arrow-prev,
  .arrow-next {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
  }

    .arrow-prev:hover,
    .arrow-next:hover {
      background: #2563eb;
      transform: scale(1.1);
    }
}

@media (max-width: 480px) {
  /* Existing styles remain */

  .slide-section {
    min-height: 70vh;
    padding: 15px 10px;
  }

  .content-text {
    padding: 15px 10px;
  }

  .POS2 {
    font-size: 1.1rem;
  }

  p.POS2 {
    font-size: 0.9rem;
    padding-left: 15px;
  }

  .arrow-prev,
  .arrow-next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}





/* Enhanced Room Booking Styles */
#RoomBookingDiv {
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
  padding: 50px 30px;
}

.section-heading {
  font-size: 2.2rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.3;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

.card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 35px 0;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  }

.card-content {
  display: flex;
  gap: 50px;
  padding: 50px;
  align-items: center;
}

.RoomsHead {
  color: #2563eb;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 15px;
}

  .RoomsHead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #3b82f6;
    border-radius: 2px;
  }

.RoomsSubHead {
  color: #475569;
  font-size: 1.25rem;
  margin: 18px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.7;
  transition: transform 0.3s ease;
}

  .RoomsSubHead:hover {
    transform: translateX(5px);
    color: #2563eb;
  }

  .RoomsSubHead::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.3rem;
  }

@media (max-width: 1024px) {
  .section-heading {
    font-size: 2.5rem;
  }

  .RoomsHead {
    font-size: 2rem;
  }

  .RoomsSubHead {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  #RoomBookingDiv {
    padding: 35px 20px;
  }

  .section-heading {
    font-size: calc(20px + 1.5vw);
    margin-bottom: 2.5rem;
  }

  .card-content {
    padding: 30px;
    gap: 30px;
  }

  .RoomsHead {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

    .RoomsHead::after {
      width: 40px;
      height: 3px;
    }

  .RoomsSubHead {
    font-size: 1.1rem;
    padding-left: 25px;
    margin: 15px 0;
  }
}

@media (max-width: 480px) {
  #RoomBookingDiv {
    padding: 25px 15px;
  }

  .section-heading {
    font-size: calc(18px + 1.2vw);
    margin-bottom: 2rem;
  }

  .card {
    border-radius: 20px;
    margin: 25px 0;
  }

  .card-content {
    padding: 20px 15px;
  }

  .RoomsHead {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .RoomsSubHead {
    font-size: 1rem;
    padding-left: 20px;
    margin: 12px 0;
  }
}


/* Base image styles */
.card-image {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

  .card-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .card-image {
    max-width: 400px;
  }

    .card-image img {
      max-height: 300px;
    }
}

@media (max-width: 768px) {
  .card-image {
    max-width: 320px;
  }

    .card-image img {
      max-height: 250px;
    }
}

@media (max-width: 480px) {
  .card-image {
    display: none; /* Hiding images on mobile as previously specified */
  }
}



/* Adjust container and content spacing */
#RoomBookingDiv {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-out;
  backdrop-filter: blur(10px);
}

.card {
  max-width: 1000px;
  margin: 35px auto;
}

.card-content {
  display: flex;
  gap: 30px;
  padding: 30px;
  align-items: center;
}

.card-text {
  flex: 1;
  max-width: 500px;
}

.card-image {
  flex: 1;
  max-width: 350px;
}

@media (max-width: 1024px) {
  .card {
    max-width: 90%;
  }

  .card-content {
    gap: 25px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  #RoomBookingDiv {
    padding: 30px 20px;
  }

  .card {
    max-width: 100%;
  }

  .card-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .card-text {
    max-width: 100%;
  }
}




#Div2 {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-out;
  backdrop-filter: blur(10px);
}

#POS1 {
  font-size: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 50px;
  line-height: 1.3;
  max-width: 900px;
  font-weight: 800;
  position: relative;
}

  #POS1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 2px;
  }

.content-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin: 30px auto;
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

  .content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

.content-image {
  flex: 0 0 45%;
  max-width: 300px;
  transition: transform 0.3s ease;
}

  .content-image:hover {
    transform: scale(1.05);
  }

.section-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.content-text {
  flex: 0 0 55%;
}

h3.POS2 {
  color: #1e40af;
  font-size: 1.7rem;
  margin-bottom: 1.8rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

  h3.POS2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
  }

p.POS2 {
  color: #475569;
  font-size: 1.15rem;
  margin: 15px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.7;
  transition: transform 0.2s ease;
}

  p.POS2:hover {
    transform: translateX(5px);
    color: #1e40af;
  }

  p.POS2::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    transition: transform 0.2s ease;
  }

  p.POS2:hover::before {
    transform: translateX(5px);
    color: #1e40af;
  }

@media (max-width: 768px) {
  #Div2 {
    padding: 40px 20px;
  }

  #POS1 {
    font-size: calc(24px + 1vw);
    margin-bottom: 40px;
  }

  .content-section {
    flex-direction: column;
    padding: 25px;
  }

  .content-image {
    max-width: 250px;
    margin: 0 auto;
  }

  h3.POS2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  p.POS2 {
    font-size: 1.1rem;
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  #Div2 {
    padding: 30px 15px;
  }

  #POS1 {
    font-size: calc(20px + 1vw);
  }

  .content-section {
    padding: 20px;
  }

  .content-image {
    display: none;
  }

  h3.POS2 {
    font-size: 1.4rem;
  }

  p.POS2 {
    font-size: 1rem;
    padding-left: 20px;
  }
}




#Div2 {
  background: linear-gradient(135deg, #f8f9ff, #eef2ff);
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 40px;
  border-radius: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-out;
  backdrop-filter: blur(10px);
}

#POS1 {
  text-align: center;
  background: linear-gradient(135deg, #312e81, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 60px;
  line-height: 1.4;
  max-width: 1000px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.content-section {
  background: white;
  border-radius: 24px;
  padding: 50px;
  margin: 35px auto;
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.content-image {
  flex: 0 0 48%;
  max-width: 400px;
}

.section-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.content-text {
  flex: 0 0 52%;
}

h3.POS2 {
  color: #312e81;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

p.POS2 {
  color: #4b5563;
  font-size: 1.2rem;
  margin: 16px 0;
  padding-left: 32px;
  position: relative;
  line-height: 1.8;
  font-weight: 500;
}

  p.POS2::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
    font-size: 1.3rem;
  }

@media (max-width: 768px) {
  #Div2 {
    padding: 40px 25px;
  }

  #POS1 {
    font-size: calc(26px + 1vw);
    margin-bottom: 40px;
  }

  .content-section {
    padding: 30px;
    gap: 30px;
  }

  .content-image {
    max-width: 300px;
  }

  h3.POS2 {
    font-size: 1.8rem;
  }

  p.POS2 {
    font-size: 1.1rem;
    padding-left: 28px;
  }
}

@media (max-width: 480px) {
  #Div2 {
    padding: 30px 20px;
  }

  .content-section {
    padding: 25px;
  }

  .content-image {
    display: none;
  }

  h3.POS2 {
    font-size: 1.5rem;
  }

  p.POS2 {
    font-size: 1.05rem;
    padding-left: 25px;
  }
}







#EventDiv {
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 40px;
  border-radius: 30px;
  margin-top: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-out;
  backdrop-filter: blur(10px);
}

#Event1 {
  font-size: 2rem;
  text-align: center;
  background: #1e293b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 30px;
  line-height: 1.4;
  max-width: 1000px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.content-section {
  background: white;
  border-radius: 24px;
  padding: 50px;
  margin: 35px auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  max-width: 1200px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.content-image {
  flex: 0 0 48%;
  max-width: 400px;
  position: sticky;
  top: 20px;
}

.section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.content-text {
  flex: 0 0 52%;
}

.EventsHead {
  color: #1e293b;
  font-size: 1.7rem;
  margin: 2rem 0 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 10px;
}



.EventsSubHead {
  color: #4b5563;
  font-size: 1.2rem;
  margin: 16px 0;
  padding-left: 32px;
  position: relative;
  line-height: 1.8;
  font-weight: 500;
  transition: all 0.3s ease;
}

  .EventsSubHead:hover {
    color: #1e293b;
    transform: translateX(5px);
  }

  .EventsSubHead::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e293b;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
  }

  .EventsSubHead:hover::before {
    transform: translateX(5px);
  }

@media (max-width: 768px) {
  #EventDiv {
    padding: 40px 25px;
  }

  #Event1 {
    font-size: calc(26px + 1vw);
    margin-bottom: 40px;
  }

  .content-section {
    padding: 30px;
    gap: 30px;
    flex-direction: column;
  }

  .content-image {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
  }

  .EventsHead {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
  }

  .EventsSubHead {
    font-size: 1.1rem;
    padding-left: 28px;
  }
}

@media (max-width: 480px) {
  #EventDiv {
    padding: 30px 20px;
  }

  .content-section {
    padding: 25px;
  }

  .content-image {
    display: none;
  }

  .EventsHead {
    font-size: 1.5rem;
  }

  .EventsSubHead {
    font-size: 1.05rem;
    padding-left: 25px;
  }
}



#EventSubDiv2Imge {
  max-height: 800px; /* Increased height for second image */
  object-fit: contain;
}

/* For responsive adjustments */
@media (max-width: 1024px) {
  #EventSubDiv2Imge {
    max-height: 850px;
  }
}

@media (max-width: 768px) {
  #EventSubDiv2Imge {
    max-height: 800px;
  }
}







#PricingCards {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  max-width: 1600px;
  margin: 0 auto;
  padding: 70px 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-out;
  backdrop-filter: blur(10px);
}

.pricing-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  perspective: 1000px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

.envelope-flap {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 83px;
  background: #3b82f6;
  transform: rotate(45deg);
}

.pricing-card h2 {
  color: #1e40af;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}

.price {
  font-size: 2.2rem;
  color: #0f172a;
  text-align: center;
  font-weight: 800;
  margin-bottom: 30px;
}

  .price span {
    display: block;
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 5px;
  }

.pricinglist {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .pricinglist li {
    margin: 15px 0;
    padding-left: 25px;
    position: relative;
  }

    .pricinglist li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #3b82f6;
      font-weight: bold;
    }

  .pricinglist h5 {
    color: #334155;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
  }

  .pricinglist h4 {
    margin: 25px 0 15px;
    font-size: 1.3rem;
  }

/* Premium card specific styles */
.pricing-card-wrapper.premium .pricing-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 2px solid #3b82f6;
}

.pricing-card-wrapper.premium .envelope-flap {
  background: #1e40af;
}

@media (max-width: 768px) {
  #PricingCards {
    padding: 40px 20px;
  }

  .pricing-card-wrapper {
    min-width: 280px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .price {
    font-size: 1.8rem;
  }

  .pricinglist h5 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #PricingCards {
    padding: 30px 15px;
  }

  .pricing-card {
    padding: 25px 15px;
  }

  .price {
    font-size: 1.6rem;
  }

  .pricinglist li {
    padding-left: 20px;
  }
}



.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

@media (min-width: 1200px) {
  .pricing-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .pricing-container {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}




@media (max-width: 768px) {
  .mobile-slider {
    position: relative;
    overflow: hidden;
  }

  .slide-section {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

    .slide-section.active {
      display: block;
      opacity: 1;
    }

  .slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 10;
  }

  .arrow-prev,
  .arrow-next {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border: none;
    border-radius: 45%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

    .arrow-prev:hover,
    .arrow-next:hover {
      background: rgba(29, 78, 216, 0.9);
      transform: scale(1.1);
    }
}






#AboutUsHead {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.about-us-card {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

  .about-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  }

.about-us-card-content {
  padding: 50px;
}

.about-us-card-text {
  max-width: 900px;
  margin: 0 auto;
}

  .about-us-card-text h4 {
    color: #1e293b;
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }

#contact_Details {
  color: #3b82f6;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
}

  #contact_Details::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1d4ed8;
  }

/* Hover Effects */
.about-us-card {
  transition: transform 0.3s ease;
}

  .about-us-card:hover {
    transform: translateY(-5px);
  }

/* Responsive Design */
@media (max-width: 1024px) {
  #AboutUsHead {
    padding: 60px 30px;
  }

  .about-us-card-content {
    padding: 40px;
  }

  .about-us-card-text h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  #AboutUsHead {
    padding: 40px 20px;
  }

  .about-us-card-content {
    padding: 30px;
  }

  .about-us-card-text h4 {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  #contact_Details {
    font-size: 1.1rem;
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  #AboutUsHead {
    padding: 30px 15px;
  }

  .about-us-card-content {
    padding: 25px 20px;
  }

  .about-us-card-text h4 {
    font-size: 1rem;
    line-height: 1.6;
  }

  #contact_Details {
    font-size: 1rem;
    padding-left: 20px;
  }
}







@media (max-width: 768px) {
  #NavBar {
    padding: 15px 20px;
    color: white;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

    .hamburger span {
      display: block;
      width: 30px;
      height: 3px;
      background: currentColor;
      transition: all 0.3s ease;
    }

  #nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    transition: left 0.3s ease;
    background: inherit;
  }

    #nav-links.active {
      left: 0;
    }

    #nav-links li {
      margin: 15px 0;
    }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  #nav-links {
    padding: 30px 15px;
  }

    #nav-links li {
      margin: 12px 0;
    }
}


#Demo {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  padding: 35px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.8s ease;
}

  #Demo label {
    display: block;
    margin: 5px 0 2px;
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
  }

  #Demo input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
  }

    #Demo input:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 15px rgba(102, 126, 234, 0.25);
      transform: translateY(-2px);
    }

    #Demo input::placeholder {
      color: #a0aec0;
      font-size: 14px;
    }

#submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

  #submit:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  }

  #submit:active {
    transform: translateY(0);
  }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Responsive Design */
@media screen and (max-width: 768px) {
  #Demo {
    padding: 10px;
  }

  #Demo {
    margin: 20px auto;
    padding: 25px;
  }

    #Demo input {
      padding: 12px 15px;
      font-size: 14px;
    }

  #submit {
    padding: 14px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  #Demo {
    padding: 20px;
  }

    #Demo label {
      font-size: 12px;
    }

    #Demo input {
      padding: 10px 12px;
      margin-bottom: 15px;
    }
}


.s-sidebar-pane-collapsed .s-main {
  padding-left:0!important;
}

section.content{
    padding:unset;
}

.s-main{
   padding-left:0!important; 
}

div#DemoDiv{
    padding:1.2rem;
}
