* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.autocad-engineering-container {
    width: 100%;
    min-height: 100vh;
}

/* ===== Autocad Engineering Hero Section ===== */
.autocad-engineering-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.autocad-engineering-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.autocad-engineering-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.autocad-engineering-bg-image:hover {
    transform: scale(1.05);
}

.autocad-engineering-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.autocad-engineering-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.autocad-engineering-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white; /* Accent color for Training & Talent theme */
}

.autocad-engineering-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.looksgood {
    font-weight: 600;
    color: skyblue; /* Highlight color */
    font-size: 1.3rem;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .autocad-engineering-title {
        font-size: 2.5rem;
    }
    .autocad-engineering-subtitle {
        font-size: 1.1rem;
    }
    .looksgood {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .autocad-engineering-title {
        font-size: 2rem;
    }
    .autocad-engineering-subtitle {
        font-size: 1rem;
    }
    .looksgood {
        font-size: 1.1rem;
    }
}

/* ====== Internship & Industrial Training Programs CSS ====== */

:root {
  --sku-blue: #0b5fff;
  --light-blue: #e6f0ff;
  --text-dark: #0a1a33;
  --text-light: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--light-blue);
  color: var(--text-dark);
}

.training-programs {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #e6f0ff, #f8fbff);
}

.training-programs .container {
  max-width: 900px;
  margin: auto;
  background: var(--text-light);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(11, 95, 255, 0.1);
  padding: 50px 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.training-programs .container:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 95, 255, 0.2);
}

.training-programs h2 {
  font-size: 28px;
  color: var(--sku-blue);
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
}

.training-programs h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--sku-blue);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.training-programs ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 30px;
}

.training-programs ul li {
  background: var(--light-blue);
  margin: 15px 0;
  padding: 15px 20px;
  border-left: 5px solid var(--sku-blue);
  border-radius: 8px;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.training-programs ul li:hover {
  background: var(--sku-blue);
  color: var(--text-light);
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .training-programs .container {
    padding: 30px 20px;
  }

  .training-programs h2 {
    font-size: 24px;
  }

  .training-programs ul li {
    font-size: 16px;
  }
}



body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    margin: 0;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.1rem;
    color: #555;
}

.course-section {
    margin-bottom: 50px;
}

.course-section h2 {
    text-align: center;
    color: #2980b9;
    margin-bottom: 30px;
    font-size: 2rem;
}

.course-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    margin: 15px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.course-icon {
    font-size: 2.5rem;
    color: #2980b9;
    flex-shrink: 0;
}

.course-content h3 {
    margin: 0 0 10px;
    color: #2c3e50;
}

.course-content p {
    margin: 0;
    color: #555;
}

/* Responsive */
@media(max-width:768px) {
    .course-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .course-icon {
        margin-bottom: 10px;
    }
}



body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f8;
    color: #333;
    margin: 0;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    color: #555;
}

.softskills-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.softskill-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.softskill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.softskill-card h2 {
    color: #d35400;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.modules, .benefits {
    margin-bottom: 15px;
}

.modules h3, .benefits h3 {
    color: #2980b9;
    margin-bottom: 8px;
}

ul {
    padding-left: 20px;
    margin: 0;
}

ul li {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Responsive */
@media(max-width:768px) {
    .softskills-section {
        grid-template-columns: 1fr;
    }
}
