html,
body {
  font-family: 'Poppins', sans-serif;
}

.header-container {
  background-color: #f8f8f8;
  color: rgb(12, 12, 12);
  padding: 20px 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  /* spacing between logo and text */
}

.top-bar {
  background-color: #2597c4;
  backdrop-filter: blur(45px);
  color: rgb(246, 244, 244);
  padding: 10px 0;
  font-size: 20px;
}

body,
.top-bar {
  font-family: 'Poppins', sans-serif;
}

.phone,
.social-icons {
  display: flex;
  align-items: center;
}

.phone i {
  margin-right: 8px;
}

.social-icons a {
  color: rgb(244, 234, 234);
  margin-left: 25px;

}

.social-icons a:hover {
  color: #1b1c1a;
}

/* Navbar */
.navbar {
  background-color: #00719c;
  transition: background-color 0.3s ease;
}

/* Navbar links */
.navbar-nav .nav-link {
  display: flex;
  align-items: center;
  color: rgb(243, 247, 247) !important;
  padding: 10px 15px;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  border-radius: 4px;
}

/* Dropdown animation base */
.dropdown-menu {
  background-color: #385f85;
  padding: 10px 0;
  border: none;
  border-radius: 0.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  visibility: hidden;
  pointer-events: none;
}

/* Show dropdown on hover (desktop) */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
  pointer-events: auto;
}

/* Show dropdown on mobile (Bootstrap adds .show) */
.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
  pointer-events: auto;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: rgb(51, 48, 48) !important;
  padding: 10px 20px;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgb(19, 21, 19) !important;
  padding-left: 25px;
  color: #fff !important;
}

/* Icon animation */
.nav-link i {
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: rotate(-5deg);
}

.navbar-nav {
  gap: 15px;
  /* Adjust as needed */
}

@media (hover: hover) and (pointer: fine) {
  /* Hover only on devices that support it (like desktop/mouse) */

  .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    border-radius: 4px;
  }

  .nav-link:hover i {
    transform: rotate(-5deg);
  }

  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown-menu .dropdown-item:hover {
    background-color: #2597c4 !important;
    padding-left: 25px;
    color: #fff !important;
  }
}




.carousel-item {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e0eaff, #f7f9ff);
  padding: 40px 0;
}

.carousel-item:nth-child(even) {
  background: linear-gradient(135deg, #fff6e0, #fefefe);
}

.slide-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d3557;
  animation: fadeInLeft 1s ease forwards;
}

.slide-text p {
  font-size: 1.3rem;
  color: #457b9d;
  margin-top: 1rem;
  line-height: 1.8;
  animation: fadeInLeft 1.5s ease forwards;
}

.slide-text a {
  margin-top: 1.5rem;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 30px;
  background-color: #1d3557;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  animation: fadeInLeft 2s ease forwards;
}

.slide-text a:hover {
  background-color: #0b2545;
  transform: scale(1.05);
}

.slide-image img {
  max-width: 100%;
  border-radius: 20px;

  animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {

  .slide-text h1,
  .slide-text p,
  .slide-text a {
    text-align: center;
  }

  .slide-image {
    margin-top: 30px;
  }
}







/* Section Background */
.section-bg {
  background: linear-gradient(135deg, #e0f7fa, #e1f5fe, #ffffff);
}

/* Box Styling */
.info-box {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  padding: 40px 25px;
}

/* Hover Shadow Effect */
.info-box:hover {
  transform: translateY(-10px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.15),
    0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Icon Style */
.icon-style {
  font-size: 50px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

/* Icon Hover Zoom */
.info-box:hover .icon-style {
  transform: scale(1.1);
}



.dark-section {
  padding: 15px;
}

.abc {
  background-color: #1e1e1e;
  padding: 0.8rem 0.8rem !important;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
  border-radius: 1rem;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(6, 6, 6, 0.9);
}

.card-img-top {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  object-fit: cover;
  height: 150px;
  width: 100%;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 1rem auto;
}

.icon-circle i {
  color: white;
  font-size: 1.5rem;
}

.card-text {
  color: white;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.card h5 {
  font-weight: bold;
  color: white;
  margin-bottom: 0.3rem;
}

.custom-heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #f4f4f4;
  position: relative;
  display: inline-block;
}

.custom-heading::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}


.card-body.abc {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon-circle i {
  font-size: 1.2rem;
  color: white;
}

.card-text {
  font-size: 0.85rem;
}







.section-highlights {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 0.5rem;
}

/* Common list styling */
.section_notice ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.section_notice ul li a {
  text-decoration: none;
  color: white;
}

/* Right border for every column */
.section-highlights .col-md-4 {
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  padding-right: 1.5rem;
}

/* Remove right border from the last column */
.section-highlights .col-md-4:last-child {
  border-right: none;
}

/* Notice Board Scroll */
.notice-board {
  max-height: 180px;
  overflow: hidden;
  padding-left: 1rem;
  position: relative;
}

/* Scroll animation */
.notice-list {
  animation: scroll-notice 15s linear infinite;
  padding-left: 0;
  margin: 0;
}

/* Stop animation on hover */
.notice-board:hover .notice-list {
  animation-play-state: paused;
}

.notice-list li {
  list-style: none;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

/* Anchor styling inside notices */
.notice-list li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.notice-list li a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

@keyframes scroll-notice {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}



.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.avatar-img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.register-box {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  border: none;
}

.btn-primary:hover {
  background-color: #e0a800;
  color: white;
}









.banners {
  background-image: url('/images/banners.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 8px #000;
}

.feature-icon {
  font-size: 40px;
  color: #0d6efd;
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}

/* Technologies Section */
.section-tech {
  background: linear-gradient(180deg, #3863a3 0%, #022a51 100%);
  color: white;
}

/* Feature icons */
.feature-icon {
  font-size: 40px;
  color: #ffc107;
}

/* Projects Section */
.section-projects {
  background-color: #b8bfc6;
  /* light gray */
}

.section-projects .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-projects .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



.hero-android {
  background: linear-gradient(135deg, #00b894, #0984e3);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-android h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-android p {
  font-size: 1.25rem;
}

.features-android {
  background-color: #f0f4f8;
  padding: 60px 0;
}

.feature-box {
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 40px;
  color: #00b894;
  margin-bottom: 20px;
}


/* App image styling */
.app-img-box img {
  height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-img-box img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}


.app-showcase {
  padding: 60px 0;
}

.app-showcase img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.cta-section {
  background: #00b894;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section a.btn {
  background: white;
  color: #00b894;
  font-weight: 600;
}

.cta-section a.btn:hover {
  background: #f1f1f1;
}




.software-hero {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.software-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.software-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.tech-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-icon {
  font-size: 40px;
  color: #1e88e5;
  margin-bottom: 15px;
}

.projects-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.project-img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-img:hover {
  transform: scale(1.03);
}

.cta-section {
  background: #1e88e5;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section a.btn {
  background-color: white;
  color: #1e88e5;
  font-weight: 600;
}

.cta-section a.btn:hover {
  background-color: #f1f1f1;
}

.bg-tech-gradient {
  background: linear-gradient(135deg, #e8f0ff, #f0f8ff);
  /* Light blue to almost white */
}




.cyber-hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cyber-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.cyber-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.service-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.service-body {
  padding: 25px;
}

.service-body h5 {
  font-weight: 600;
}

.section-gradient {
  background: linear-gradient(135deg, #e0ecf7, #f4f8fb);
}

.cta-section {
  background: #203a43;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section .btn {
  background-color: white;
  color: #203a43;
  font-weight: 600;
}

.cta-section .btn:hover {
  background-color: #e0e0e0;
}



.wp-header {
  background: linear-gradient(120deg, #4e54c8, #8f94fb);
  color: white;
  padding: 4rem 2rem;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wp-header h1 {
  font-size: 3rem;
  font-weight: 700;
}

.wp-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.wp-section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
  display: inline-block;
}

.wp-section-title::after {
  content: '';
  width: 50px;
  height: 4px;
  background: #4e54c8;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 2px;
}

.wp-card {
  border: none;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.wp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.wp-card h5 {
  font-weight: 600;
  color: #4e54c8;
}

.wp-card p {
  color: #555;
}

.wp-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #4e54c8;
}

.wp-chapter {
  background: linear-gradient(135deg, #f8f9fa, #eef2f3);
  border-radius: 12px;
  padding: 1.5rem;
}

.wp-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}









.lphp-hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lphp-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.lphp-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.lphp-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  color: #203a43;
}

.lphp-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #2c5364;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.lphp-outcome-card,
.lphp-chapter-card {
  background: white;
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.lphp-outcome-card:hover,
.lphp-chapter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.lphp-icon {
  font-size: 2.2rem;
  color: #2c5364;
  margin-bottom: 1rem;
}

.lphp-outcome-card h5,
.lphp-chapter-card h5 {
  font-weight: 600;
  color: #203a43;
}

.lphp-outcome-card p,
.lphp-chapter-card p {
  color: #555;
}






.pyfs-hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 0 0 30px 30px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.2);
}

.pyfs-hero-text {
  max-width: 600px;
}

.pyfs-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f7f9fe;
}

.pyfs-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.pyfs-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2d5a;
  position: relative;
}

.pyfs-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #1f2d5a;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.pyfs-outcomes {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
}

.pyfs-outcome-card {
  min-width: 300px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.pyfs-outcome-card:hover {
  transform: translateY(-5px);
}

.pyfs-outcome-icon {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 0.5rem;
}

.pyfs-outcome-card h5 {
  font-weight: 600;
  color: #0d47a1;
}

.pyfs-chapter-card {
  background: #ffffff;
  border: none;
  border-left: 6px solid #0d47a1;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.pyfs-chapter-card:hover {
  background: #f1f3ff;
}

.pyfs-chapter-card h5 {
  font-weight: 600;
  color: #1f2d5a;
}

.pyfs-chapter-card p {
  color: #444;
}




.ccpp-hero {
  background: linear-gradient(to right, #0066cc, #003366);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.ccpp-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.ccpp-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.ccpp-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #003366;
  margin-bottom: 2rem;
  position: relative;
}

.ccpp-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #003366;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.ccpp-card {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.ccpp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

.ccpp-icon {
  font-size: 2rem;
  color: #0066cc;
  margin-bottom: 0.5rem;
}

.ccpp-card h5 {
  font-weight: 600;
  color: #003366;
}

.ccpp-card p {
  color: #444;
}

.ccpp-section {
  background: #f8fbff;
  padding: 4rem 0;
}








.java-hero {
  background: linear-gradient(to right, #ff9800, #ff5722);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.java-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.java-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.95;
}

.java-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #ff5722;
  position: relative;
}

.java-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #ff5722;
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

.java-card {
  background: #ffffff;
  border: 2px solid #ffe0b2;
  border-left: 5px solid #ff9800;
  border-radius: 10px;
  padding: 1.5rem;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.java-card:hover {
  background: #fff3e0;
  border-color: #ffcc80;
  transform: scale(1.01);
}

.java-card h5 {
  font-weight: 600;
  color: #e65100;
}

.java-card p {
  color: #555;
}

.java-icon {
  font-size: 2rem;
  color: #ff5722;
  margin-bottom: 0.5rem;
}

.java-section {
  padding: 4rem 0;
}









.advjava-hero {
  background: linear-gradient(135deg, #212121, #424242);
  color: #fff;
  padding: 5rem 2rem;
  position: relative;
  text-align: left;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.advjava-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url('https://www.transparenttextures.com/patterns/graphy.png');
  opacity: 0.05;
}

.advjava-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.advjava-hero p {
  font-size: 1.1rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.advjava-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #263238;
  margin-bottom: 2rem;
  position: relative;
}

.advjava-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #37474f;
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

.advjava-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-left: 6px solid #37474f;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.advjava-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.advjava-card h5 {
  font-weight: 600;
  color: #1a237e;
}

.advjava-card p {
  color: #555;
}

.advjava-icon {
  font-size: 2rem;
  color: #1a237e;
  margin-bottom: 0.5rem;
}

.advjava-section {
  padding: 4rem 0;
}








.ds-hero {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  clip-path: ellipse(100% 85% at 50% 0%);
}

.ds-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  font-weight: 600;
}

.ds-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.95;
}

.ds-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #005792;
  margin-bottom: 2rem;
  position: relative;
}

.ds-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #0072ff;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.ds-card {
  background: white;
  border: 1px solid #dbeafe;
  border-left: 5px solid #0072ff;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.ds-card:hover {
  background: #f0faff;
  transform: translateY(-4px);
}

.ds-card h5 {
  font-weight: 600;
  color: #004ba0;
}

.ds-card p {
  color: #444;
}

.ds-icon {
  font-size: 2rem;
  color: #0072ff;
  margin-bottom: 0.5rem;
}

.ds-section {
  padding: 4rem 0;
}








.csharp-hero {
  background: linear-gradient(135deg, #5c6bc0, #1a237e);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.csharp-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.csharp-hero p {
  font-size: 1.1rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.csharp-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #1a237e;
  margin-bottom: 2rem;
  position: relative;
}

.csharp-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #5c6bc0;
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

.csharp-card {
  background: #fff;
  border-left: 5px solid #5c6bc0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.csharp-card:hover {
  background: #eef1fc;
  transform: translateY(-4px);
}

.csharp-card h5 {
  font-weight: 600;
  color: #283593;
}

.csharp-card p {
  color: #444;
}

.csharp-icon {
  font-size: 2rem;
  color: #3f51b5;
  margin-bottom: 0.5rem;
}

.csharp-section {
  padding: 4rem 0;
}




.aspnet-hero {
  background: radial-gradient(circle at center, #283593, #1a237e);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.aspnet-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.aspnet-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.95;
}

.aspnet-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #1a237e;
  margin-bottom: 2rem;
  position: relative;
}

.aspnet-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #3949ab;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.aspnet-card {
  background: #fff;
  border-left: 5px solid #3949ab;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.aspnet-card:hover {
  background: #f0f4ff;
  transform: translateY(-3px);
}

.aspnet-card h5 {
  font-weight: 600;
  color: #1a237e;
}

.aspnet-card p {
  color: #444;
}

.aspnet-icon {
  font-size: 2rem;
  color: #283593;
  margin-bottom: 0.5rem;
}

.aspnet-section {
  padding: 4rem 0;
}







.about-hero {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(59, 130, 246, 0.85));
  color: white;
  text-align: center;
  padding: 5rem 2rem 6rem;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  margin-top: 1rem;
  opacity: 0.95;
}

.about-section {
  padding: 4rem 1rem;
}

.about-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #3b4cca;
  margin-bottom: 3rem;
  position: relative;
}

.about-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #3b82f6;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.about-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.about-card h5 {
  color: #1e3a8a;
  font-weight: 600;
}

.about-card p {
  color: #374151;
}

.about-highlight {
  background: linear-gradient(to right, #3b82f6, #6366f1);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin-top: 4rem;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

.about-highlight h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-highlight p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
  margin-top: 1rem;
  opacity: 0.95;
}










.contact-hero {
  background: linear-gradient(to right, #3b82f6, #6366f1);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-section {
  padding: 4rem 1rem;
}

.contact-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 3rem;
  position: relative;
}

.contact-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #6366f1;
  margin: 12px auto 0;
  border-radius: 4px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

.contact-card h5 {
  font-weight: 600;
  color: #1e40af;
}

.contact-card p {
  color: #374151;
  margin-bottom: 0.4rem;
}

.contact-icon {
  font-size: 1.2rem;
  color: #3b82f6;
  margin-right: 0.5rem;
}

.contact-map iframe {
  border: none;
  border-radius: 16px;
  width: 100%;
  height: 350px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.btn-gradient {
  background: linear-gradient(to right, #3b82f6, #6366f1);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #2563eb, #4f46e5);
}

.shadow-wrap {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}



.hover-shadow:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.card-body img {
  flex-shrink: 0;
}

.card-body h5 {
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .card-body .d-flex {
    flex-direction: column !important;
  }
}






.androidapp-hero-section {
  background: linear-gradient(to right, #fceabb, #f8b500);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.androidapp-heading {
  color: #2d2d2d;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.androidapp-subheading {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.androidapp-card {
  background: linear-gradient(to bottom, #ffffff, #fff3e0);
  border: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}

.androidapp-portal-card {
  background: linear-gradient(to bottom right, #ffffff, #e1f5fe);
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  transition: transform 0.6s ease, background 0.6s ease;
}


.androidapp-portal-card:hover {
  transform: translateY(-8px);
}





.larphp-wrapper {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
}

.larphp-hero {
  background: linear-gradient(to right, #4c88d5, #f0f9ff);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.larphp-title {
  font-size: 28px;
  font-weight: bold;
  color: #3b82f6;
  margin-bottom: 40px;
}

.larphp-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow:
    0 6px 8px rgba(0, 0, 0, 0.06),
    0 9px 18px rgba(0, 0, 0, 0.08);
}

.larphp-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.10),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.larphp-projects {
  padding: 40px 0;
}

.larphp-enroll {
  padding: 50px 0;
  background-color: #f3e5f5;
}

.larphp-enroll-btn {
  padding: 10px 40px;
  font-weight: bold;
}

.larphp-modal-header {
  background: linear-gradient(to right, #4e54c8, #8f94fb);
}




/* 
.fullstack-course-section {
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.fullstack-course-section h2 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background-color: #f8f9fa;
  color: #333;
  transition: background 0.3s ease;
}

.accordion-button:hover {
  background-color: #e3f2fd;
}

.accordion-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}
 */


.wordpress-wrapper {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
}

.wordpress-hero {
  background: linear-gradient(to right, #c6f1ff, #e0c3fc);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.wordpress-title {
  font-size: 28px;
  font-weight: bold;
  color: #5e35b1;
  margin-bottom: 40px;
}

.wordpress-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.06),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.wordpress-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid #7e57c2;
}

.wordpress-enroll {
  padding: 50px 0;
  background-color: #f3e5f5;
}

.wordpress-enroll-btn {
  padding: 10px 40px;
  font-weight: bold;
}

.wordpress-modal-header {
  background: linear-gradient(to right, #5e35b1, #512da8);
}








.pyd-wrapper {
  background: linear-gradient(to right, #e0f7fa, #e1f5fe);
}

.pyd-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a237e;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #6a11cb;
  display: inline-block;
}

.pyd-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pyd-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

.pyd-card:hover {
  transform: scale(1.02);
}

.pyd-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pyd-hero {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.pyd-hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pyd-hero p {
  font-size: 1.2rem;
}



.and-wrappers {
  background: linear-gradient(to right, #fceabb, #e1dcce);
}

.and-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1a237e;
  text-align: center;
  margin: 0 auto 2.5rem auto;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #ff6f00;
  display: inline-block;
  text-shadow: 1px 1px 1px #ccc;
}

.and-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.and-hero {
  background: linear-gradient(to right, #ff6f00, #f57c00);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.and-hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.and-hero p {
  font-size: 1.2rem;
}

.and-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

.and-card:hover {
  transform: scale(1.02);
}






.java-wrapper {
  background: linear-gradient(to right, #e0f7fa, #e1f5fe);
}

.java-hero {
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.pyd-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a237e;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #6a11cb;
  display: inline-block;
}

.java-hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.java-hero p {
  font-size: 1.2rem;
}

.java-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3e2723;
  text-align: center;
  margin: 0 auto 2.5rem auto;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #ff5722;
  display: inline-block;
  text-shadow: 1px 1px 1px #ccc;
}

.java-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.java-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

.java-card:hover {
  transform: scale(1.02);
}









.linux-wrapper {
  background: linear-gradient(to right, #f0f4c3, #c8e6c9);
  padding-top: 30px;
  padding-bottom: 30px;
}

.linux-hero {
  background: linear-gradient(to right, #43cea2, #185a9d);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.linux-hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.linux-hero p {
  font-size: 1.2rem;
}

.linux-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1a237e;
  text-align: center;
  margin: 0 auto 2.5rem auto;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #388e3c;
  display: inline-block;
  text-shadow: 1px 1px 1px #ccc;
}

.linux-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

.linux-card:hover {
  transform: scale(1.02);
}






.cyber-wrapper {
  background: linear-gradient(to right, #e0f7fa, #e1f5fe);
  padding-top: 30px;
  padding-bottom: 30px;
}

.cyber-hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cyber-hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cyber-hero p {
  font-size: 1.2rem;
}

.cyber-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #0d47a1;
  text-align: center;
  margin: 0 auto 2.5rem auto;
  border-bottom: 3px solid #00acc1;
  display: inline-block;
  padding-bottom: 0.5rem;
  text-shadow: 1px 1px 1px #ccc;
}

.cyber-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

.cyber-card:hover {
  transform: scale(1.02);
}




.front-wrapper {
  background: linear-gradient(to right, #f8f9fa, #e3f2fd);
  padding-top: 30px;
  padding-bottom: 30px;
}

.front-hero {
  background: linear-gradient(to right, #007991, #78ffd6);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.front-hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.front-hero p {
  font-size: 1.2rem;
}

.front-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #004d40;
  text-align: center;
  margin: 0 auto 2.5rem auto;
  border-bottom: 3px solid #00acc1;
  display: inline-block;
  padding-bottom: 0.5rem;
  text-shadow: 1px 1px 1px #ccc;
}

.front-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

.front-card:hover {
  transform: scale(1.02);
}








.crm-wrapper {
  background: linear-gradient(to right, #4695cd, #ffffff);
  font-family: 'Raleway', sans-serif;
}

.crm-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d47a1;
}

.crm-card {
  background-color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

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

.crm-video video {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.institute-wrapper {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
}

.institute-hero {
  background: linear-gradient(to right, #7f7fd5, #86a8e7, #91eae4);
  position: relative;
  z-index: 1;
}

.curve-left,
.curve-right {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: #ffffff33;
  border-radius: 50%;
  z-index: 0;
}

.curve-left {
  top: -50px;
  left: -80px;
}

.curve-right {
  bottom: -60px;
  right: -80px;
}

.institute-card {
  background-color: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.institute-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.institute-img img {
  border-radius: 12px;
  object-fit: cover;
}




.hostel-wrapper {
  font-family: 'Poppins', sans-serif;
  background-color: #92a3bc;
  /* subtle gray makes white card shadow pop */
}

.hostel-hero {
  background: linear-gradient(to right, #43cea2, #185a9d);
  position: relative;
  z-index: 1;
}

.curve-left,
.curve-right {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: #ffffff33;
  border-radius: 50%;
  z-index: 0;
}

.curve-left {
  top: -50px;
  left: -80px;
}

.curve-right {
  bottom: -60px;
  right: -80px;
}


.hostel-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  /* stronger soft shadow */
}

.icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3f2fd;
  border-radius: 12px;
  flex-shrink: 0;
}

.hostel-card {
  background-color: #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.hostel-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 10px rgba(0, 0, 0, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.2);
}





.ecom-wrapper {
  font-family: 'Poppins', sans-serif;
  background-color: #e3f2fd;
}

.ecom-hero {
  background: linear-gradient(to right, #2193b0, #6dd5ed);
  position: relative;
  z-index: 1;
}

.curve-left,
.curve-right {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: #ffffff33;
  border-radius: 50%;
  z-index: 0;
}

.curve-left {
  top: -50px;
  left: -80px;
}

.curve-right {
  bottom: -60px;
  right: -80px;
}

.ecom-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #bbdefb;
  border-radius: 12px;
  flex-shrink: 0;
}

.ecom-card {
  background-color: #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.ecom-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 10px rgba(0, 0, 0, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.2);
}




.travel-hero {
  min-height: 70vh;
  background: linear-gradient(to right, rgba(0, 82, 160, 0.8), rgba(0, 132, 193, 0.9)),
    url('https://source.unsplash.com/1600x900/?travel,world') center/cover no-repeat;
  position: relative;
  z-index: 1;
  color: #fff;
}

.travel-curve {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.travel-curve-left {
  top: -60px;
  left: -80px;
}

.travel-curve-right {
  bottom: -60px;
  right: -80px;
}

.travel-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease-in-out;
}

.travel-card:hover {
  transform: translateY(-6px);
}

.travel-icon-circle {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.travel-card:hover .travel-icon-circle {
  transform: scale(1.1);
}

.travel-icon-circle i {
  color: #0d6efd;
}

.travel-tour-card img {
  height: 200px;
  object-fit: cover;
}





.transport-hero {
  min-height: 70vh;
  background: linear-gradient(to right, #2193b0, #6dd5ed);
  position: relative;
  z-index: 1;
  color: #fff;
}

.transport-curve {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.transport-curve-left {
  top: -60px;
  left: -60px;
}

.transport-curve-right {
  bottom: -60px;
  right: -60px;
}

.transport-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease-in-out;
}

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

.transport-icon-circle {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.transport-card:hover .transport-icon-circle {
  transform: scale(1.1);
}

.transport-icon-circle i {
  color: #0d6efd;
}

.transport-tour-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
}

.transport-tour-card:hover {
  transform: translateY(-4px);
.transport-icon-circle {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s;
}
}

.js-hero {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.js-section {
    background: linear-gradient(to right, #eef2f3, #dfe9f3);
}

.js-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.js-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.list-group-item {
    background-color: #fff;
    border-left: 5px solid #0d6efd;
}


.flash-glow {
  animation: flashGlow 1s infinite;
}

@keyframes flashGlow {
  0%, 100% {
    text-shadow: 0 0 8px #fff, 0 0 16px #ffc107, 0 0 24px #ffc107;
    color: #ffc107;
  }
  50% {
    text-shadow: 0 0 16px #fff, 0 0 32px #ffff00, 0 0 48px #ffff00;
    color: #ffff00;
  }
}




  .lgbanner {
background: linear-gradient(135deg, #7f798b, #333537);
        margin-top: -25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Segoe UI', sans-serif;

    }

    .login-container {
        width: 100%;
        max-width: 1000px;
        background-color: #fff;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        overflow: hidden;
    }



    .login-form {
        padding: 40px 30px;
    }

    .form-control {
        border-radius: 10px;
    }

    .btn-primary {
        border-radius: 10px;
    }

    .form-title {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
    }

    .form-footer {
        font-size: 14px;
        margin-top: 10px;
    }
    /* Responsive adjustments */
@media (max-width: 768px) {
    .login-form {
        padding: 20px 15px;
    }
    .form-title {
        font-size: 20px;
    }
    .form-control {
        font-size: 14px;
    }
    .btn-primary {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .lgbanner {
        flex-direction: column;
        font-size: 14px;
    }
    .form-title {
        font-size: 18px;
    }
    .login-form {
        padding: 15px 10px;
    }
}

