:root  {
  --primary-color: #4a6bdf;
  --primary-dark: #2541b2;
  --primary-light: #c9d2fa;
  --secondary-color: #ffffff;
  --text-primary: #212121;
  --text-secondary: #757575;
  --accent-color: #ff9800;
  --border-color: #e0e0e0;
  --background-color: #f0f4ff;
  --sidebar-background: #ffffff;
  --footer-background: #2541b2;
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.15);
  --transition-speed: 0.3s;
  --border-radius: 12px;
  --gradient-bg: linear-gradient(135deg, #e8eaff, #c9d2fa);
  --gradient-primary: linear-gradient(135deg, #4a6bdf, #2541b2);
  --btn-gradient: linear-gradient(135deg, #4a6bdf, #2541b2);
  --title-gradient: linear-gradient(to right, #6a11cb, #2575fc);
}
    

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body  {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-color);
  background-image: 
    radial-gradient(circle at 80% 10%, rgba(106, 17, 203, 0.15), transparent 400px),
    radial-gradient(circle at 20% 60%, rgba(37, 117, 252, 0.1), transparent 400px),
    linear-gradient(135deg, #f0f4ff 0%, #e8eaff 100%);
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234a6bdf' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: -1;
}
    

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn  {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-image: var(--btn-gradient);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-speed);
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.btn:active {
  transform: translateY(-1px);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
    

/*  Header Styles */

.logo-container  {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.logo  {
  width: 60px;
  height: 60px;
  background-image: var(--title-gradient);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  font-weight: bold;
  margin-right: 1.2rem;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
  position: relative;
  overflow: hidden;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}
    

.logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.logo-container:hover .logo {
  transform: rotate(0);
}

.logo-container:hover .logo::before {
  left: 100%;
}

.title-container {
  transition: all 0.3s ease;
}

.logo-container:hover .title-container {
  transform: translateX(5px);
}

.title-container  h1 {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #6a11cb, #2575fc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}

.title-container h1::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
  z-index: -1;
  border-radius: 10px;
}
    

.title-container p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
    

#navbar {
  position: relative;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links  li a {
  color: var(--text-primary);
  padding: 0.6rem 1rem;
  position: relative;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  z-index: 1;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-dark);
}

.nav-links li a:hover::before,
.nav-links li a.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all var(--transition-speed);
  opacity: 0;
}

.nav-links li a.active::after {
  width: 60%;
  left: 20%;
  opacity: 1;
}
    

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: var(--text-primary);
  transition: all var(--transition-speed);
}

.mobile-menu.active {
  display:block;
  flex-direction: row;
  background-color: ;
}

/* Main Content Styles */
main {
  padding: 2rem 0;
  min-height: calc(100vh - 210px);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 1.5rem;
}

/* Sidebar Styles */
.sidebar  {
  background-color: var(--sidebar-background);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  height: fit-content;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(187, 222, 251, 0.5);
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}
    

.left-sidebar,
.right-sidebar {
  flex: 0 0 20%;
}

.content  {
  flex: 1;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}
    

.sidebar h3 {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.useful-links li {
  margin-bottom: 0.5rem;
}

.useful-links  li a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
}

.useful-links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(187, 222, 251, 0.5), transparent);
  transition: all 0.5s;
  z-index: -1;
}

.useful-links li a:hover {
  background-color: rgba(187, 222, 251, 0.2);
  padding-left: 1.5rem;
  color: var(--primary-dark);
}

.useful-links li a:hover::before {
  left: 100%;
}
    

.notice-board {
  max-height: 300px;
  overflow-y: auto;
}

/*  Google Translate Widget Styles */
.translate-widget {
  position: absolute;
  top: 1.2rem;
  right: 2.5rem;
  z-index: 1001;
}

#google_translate_element {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 107, 223, 0.2);
  transition: all 0.3s ease;
}

#google_translate_element:hover {
  box-shadow: 0 6px 20px rgba(74, 107, 223, 0.15);
  transform: translateY(-2px);
}

/* Style Google Translate dropdown */
.goog-te-combo {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
  color: white !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  min-width: 120px !important;
  text-align: center !important;
}

.goog-te-combo:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 4px 12px rgba(74, 107, 223, 0.3) !important;
}

.goog-te-combo:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(74, 107, 223, 0.3) !important;
}

/* Hide Google Translate branding */
.goog-te-gadget {
  font-family: 'Poppins', sans-serif !important;
}

.goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  font-size: 0 !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
  color: white !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
  color: white !important;
}

.goog-te-gadget-simple .goog-te-menu-value:before {
  content: '🌐 ';
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* Hide Google branding */
.goog-te-gadget-simple .goog-te-menu-value span:first-child {
  display: none;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
}

.goog-te-banner-frame {
  display: none !important;
}

.goog-te-menu-frame {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(74, 107, 223, 0.2) !important;
  background: white !important;
}

/* Enhanced translate button for mobile */
.translate-mobile-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border:#ec1b1b;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(74, 107, 223, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.translate-mobile-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(74, 107, 223, 0.4);
}

.notice  {
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.notice:last-child {
  border-bottom: none;
}

.notice::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
  border-radius: 3px;
}

.notice:hover {
  padding-left: 10px;
  background-color: rgba(187, 222, 251, 0.1);
}

.notice:hover::before {
  height: 80%;
}

.notice h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.notice p {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.notice small {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-style: italic;
  display: block;
  text-align: right;
}
    

/* Carousel Styles */
.carousel-container  {
  position: relative;
  margin-bottom: 2.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(30, 136, 229, 0.1);
}
    

.carousel {
  display: flex;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.carousel-item {
  flex: 0 0 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  height: 100%;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem;
}

.carousel-caption h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.carousel-control  {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(30, 136, 229, 0.6);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-speed);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-control:hover {
  background-color: rgba(13, 71, 161, 0.8);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
    

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Course Boxes */
.section-title  {
  color: var(--primary-dark);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 15px;
}

.section-title::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  left: 0;
  top: 0;
  background-image: var(--gradient-primary);
  border-radius: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  bottom: -10px;
  left: 15px;
  background-image: var(--gradient-primary);
}
    

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.course-box  {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.8rem;
  transition: all var(--transition-speed);
  background-color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.course-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(187, 222, 251, 0.2), rgba(30, 136, 229, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(30, 136, 229, 0.15);
  border-color: rgba(30, 136, 229, 0.3);
}

.course-box:hover::before {
  opacity: 1;
}

.course-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
}

.course-box:hover::after {
  height: 100%;
}
    

.course-box h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.course-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Software Tools */
.software-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.software-tools  {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.tool-btn {
  padding: 1rem 1.5rem 1rem 3.5rem;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.tool-btn::before {
  content: '';
  position: absolute;
  left: 10px;
  width: 32px;
  height: 32px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
}

.tool-btn[data-tool="tally"]::before {
  background-image: url('https://images.unsplash.com/photo-1713990983242-e65d22c36f35?ixid=M3w3MjUzNDh8MHwxfHNlYXJjaHwyfHxzb2Z0d2FyZSUyMGxvZ28lMjBpY29ucyUyMHRhbGx5JTIwcGhvdG9zaG9wJTIwY29yZWwlMjBkcmF3JTIwbXMlMjB3b3JkJTIwdHJhbnNwYXJlbnQlMjBiYWNrZ3JvdW5kfGVufDB8fHx8MTc0OTgwOTE0NXww&ixlib=rb-4.1.0&fit=fillmax&h=100&w=100');
}

.tool-btn[data-tool="msword"]::before {
  background-image: url('https://images.unsplash.com/photo-1706426634339-153de9f0c7f8?ixid=M3w3MjUzNDh8MHwxfHNlYXJjaHwzfHxzb2Z0d2FyZSUyMGxvZ28lMjBpY29ucyUyMHRhbGx5JTIwcGhvdG9zaG9wJTIwY29yZWwlMjBkcmF3JTIwbXMlMjB3b3JkJTIwdHJhbnNwYXJlbnQlMjBiYWNrZ3JvdW5kfGVufDB8fHx8MTc0OTgwOTE0NXww&ixlib=rb-4.1.0&fit=fillmax&h=100&w=100');
}

.tool-btn[data-tool="photoshop"]::before {
  background-image: url('https://images.unsplash.com/photo-1637519290541-0a12b3185485?ixid=M3w3MjUzNDh8MHwxfHNlYXJjaHwxfHxzb2Z0d2FyZSUyMGxvZ28lMjBpY29ucyUyMHRhbGx5JTIwcGhvdG9zaG9wJTIwY29yZWwlMjBkcmF3JTIwbXMlMjB3b3JkJTIwdHJhbnNwYXJlbnQlMjBiYWNrZ3JvdW5kfGVufDB8fHx8MTc0OTgwOTE0NXww&ixlib=rb-4.1.0&fit=fillmax&h=100&w=100');
}

.tool-btn[data-tool="coreldraw"]::before {
  background-image: url('https://images.unsplash.com/photo-1712227167767-e2cdf46e6fbe?ixid=M3w3MjUzNDh8MHwxfHNlYXJjaHw0fHxzb2Z0d2FyZSUyMGxvZ28lMjBpY29ucyUyMHRhbGx5JTIwcGhvdG9zaG9wJTIwY29yZWwlMjBkcmF3JTIwbXMlMjB3b3JkJTIwdHJhbnNwYXJlbnQlMjBiYWNrZ3JvdW5kfGVufDB8fHx8MTc0OTgwOTE0NXww&ixlib=rb-4.1.0&fit=fillmax&h=100&w=100');
}

.tool-btn:hover {
  background-color: white;
  color: var(--primary-dark);
  box-shadow: 0 6px 15px rgba(30, 136, 229, 0.15);
  transform: translateY(-3px);
  padding-left: 4rem;
}
    

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 600px;
  position: relative;
  transform: translateY(-50px);
  transition: transform var(--transition-speed);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.close-modal:hover {
  color: var(--text-primary);
}

/*  Footer Styles */
footer {
  background-color: var(--footer-background);
  background-image: linear-gradient(135deg, #1976d2, #0d47a1);
  color: white;
  padding: 3rem 0 0;
  position: relative;
  margin-top: 4rem;
}

footer::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: linear-gradient(135deg, transparent 25%, var(--footer-background) 25%, var(--footer-background) 50%, transparent 50%, transparent 75%, var(--footer-background) 75%);
  background-size: 20px 20px;
}
    

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bbdefb;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon  {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: rgba(228, 18, 18, 0.1);
  border-radius: 50%;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(212, 19, 19, 0.1);
}

.social-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(196, 55, 55, 0.2);
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.social-icon:hover {
  background-color: rgba(100, 27, 218, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(107, 49, 49, 0.2);
}

.social-icon:hover::before {
  transform: scale(1);
}
    

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* About Page */
.page-title {
  color: var(--primary-dark);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-size: 1.75rem;
}

.page-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  background-color: var(--primary-light);
  padding: 1rem;
  border-radius: var(--border-radius);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-dark);
}

.stat-label {
  font-size: 0.85rem;
}

.team-section {
  margin-top: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.team-member {
  text-align: center;
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--primary-light);
  margin: 0 auto 1rem;
}

.team-member h4 {
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.team-member p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Courses Page */
.course-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.courses-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.course-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.course-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.course-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-header h3 {
  margin: 0;
}

.course-duration {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.course-body {
  padding: 1.5rem;
}

.course-body h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.course-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.highlight {
  display: flex;
  flex-direction: column;
}

.highlight-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.highlight-value {
  font-weight: 500;
}

/* Syllabus Page */
.syllabus-nav {
  margin-bottom: 2rem;
}

.syllabus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.syllabus-tab {
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: all var(--transition-speed);
}

.syllabus-tab:hover {
  background-color: var(--primary-light);
}

.syllabus-tab.active {
  background-color: var(--primary-color);
  color: white;
}

.syllabus-panel {
  display: none;
}

.syllabus-panel.active {
  display: block;
}

.syllabus-panel h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.syllabus-panel > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.semester, .modules {
  margin-bottom: 1.5rem;
}

.semester h4, .modules h4, .learning-outcomes h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.syllabus-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.syllabus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

/* Enquiry Form */
.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-intro {
  margin-bottom: 1.5rem;
  text-align: center;
}

.enquiry-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.form-row .form-group {
  flex: 1;
  min-width: 250px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.required {
  color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.5rem;
}

.checkbox-label input {
  width: auto;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.submit-btn {
  background-color: var(--primary-color);
}

.reset-btn {
  background-color: var(--text-secondary);
}

.form-response {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  display: none;
}

.form-response.success {
  display: block;
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-response.error {
  display: block;
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Gallery Page */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  cursor: pointer;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem;
  transform: translateY(100%);
  transition: transform var(--transition-speed);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.gallery-caption p {
  font-size: 0.85rem;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1200;
}

.lightbox-content {
  display: block;
  max-width: 80%;
  max-height: 80%;
  margin: 5% auto;
  object-fit: contain;
}

.lightbox-caption {
  color: white;
  text-align: center;
  padding: 1rem;
  max-width: 70%;
  margin: 0 auto;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  z-index: 1200;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Contact Page */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--background-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: transform var(--transition-speed);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-details h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-form-container {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.contact-form-container h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-container {
  margin-top: 2rem;
}

.map-container h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.map-placeholder {
  height: 300px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary-dark);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .container {
    flex-direction: column;
  }
  
  .left-sidebar, .right-sidebar {
    flex: 0 0 100%;
  }
  
  .about-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  .mobile-menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-light);
    padding: 1rem;
    z-index: 1000;
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .software-tools {
    justify-content: center;
  }
  
  .carousel {
    height: 300px;
  }
  
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 576px) {
  .form-row {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .stats-container,
  .team-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel {
    height: 250px;
  }
}
  