* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #1F5EA8;
  position: sticky;
  top: 0;
}

.logo {
    color: #ffffff;
  font-size: 22px;
  font-weight: bold;
}

.logo span {
    color: #F4A62A;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: #F4A62A;
}

/* Hero */
.hero {
  padding: 80px 8%;
   background: linear-gradient(to right, #1F5EA8, #163F73);
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 800px;
  margin: auto;
}

.hero-buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
 background: #1F5EA8;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}
.btn:hover {
  background: #163F73;
}

.btn.secondary {
   background: #F4A62A;
  color: #1E293B;
}
.btn.secondary:hover {
  background: #ffffff;
}

.btn.outline {
  border: 1px solid #F4A62A;
  color: #ffffff;
}

/* Sections */
.section {
  padding: 60px 8%;
}
.section-title {
  color: #1F5EA8;
}
.section.light {
  background: #f4f6fa;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Courses */
.course {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #F4A62A;
}
.card:hover {
  
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(31, 94, 168, 0.2);
}

/* Lists */
.list {
  max-width: 600px;
  margin: auto;
}

.list li {
  margin: 10px 0;
}

/* Text */
.text {
  max-width: 900px;
  margin: 0 auto 15px;
  text-align: center;
}

/* Founder */
blockquote {
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.founder {
  text-align: center;
  margin-top: 10px;
}
/* =========================
   FOUNDERS SECTION – UPGRADED
========================= */

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Founder Card */
.founder-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  box-shadow: 0 14px 35px rgba(31,94,168,0.2);
}

/* Avatar */
.founder-avatar {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(to right, #1F5EA8, #163F73);
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Name */
.founder-card h3 {
  color: #1F5EA8;
  margin-bottom: 5px;
  font-size: 18px;
}

/* Designation */
.designation {
  color: #F4A62A;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 14px;
}

/* Description */
.founder-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-card {
    padding: 25px 20px;
  }
}

/* Form */
.form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
}

.form input,
.form textarea {
  padding: 10px;
  margin-bottom: 10px;
}

/* Footer */
footer {
   background: #1F5EA8;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }
}

/* =========================
   DCET SECTION (MATCHING SITE STYLE)
========================= */

#dcet {
  background: #f4f6fa;
  /* same as .section.light */
}

/* Title */
#dcet .section-title {
  font-size: 28px;
  /* same as global */
  margin-bottom: 30px;
  color: #0a1f44;
}

/* Intro text */
#dcet .text {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
  color: #333;
  font-size: 15px;
}

/* DCET cards */
#dcet .card {
  background: #fff;
  padding: 22px;
  border-radius: 8px;
  /* same as global card */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

/* Card headings */
#dcet .card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-left: 10px;
    border-left: 4px solid #F4A62A;
  color: #1F5EA8;
}

/* Lists inside DCET */
#dcet .list {
  max-width: 100%;
  margin: 0;
  padding-left: 18px;
}

#dcet .list li {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Paragraph inside cards */
#dcet .card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Grid spacing */
#dcet .grid.two {
  margin-bottom: 25px;
}

/* =========================
   Responsive (Same Pattern)
========================= */

@media (max-width: 768px) {
  #dcet .section-title {
    font-size: 24px;
  }

  #dcet .card h3 {
    font-size: 17px;
  }

  #dcet .card {
    padding: 18px;
  }
}

/* =========================
   CONTACT SECTION – UPGRADED
========================= */

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
  align-items: start;
}

/* Contact Info */
.contact-info {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
  color: #1F5EA8;
  margin-bottom: 15px;
}

.contact-info p {
  color: #444;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
  color: #1F5EA8;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1F5EA8;
}

/* Map */
.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    gap: 25px;
  }
}


/* =========================
   INTERNSHIP SECTION – UPGRADED
========================= */

.internship-section {
  background: #ffffff;
}

/* Highlights grid */
.internship-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Internship cards */
.internship-card {
  background: #f4f6fa;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid #F4A62A;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.internship-card h3 {
  color: #1F5EA8;
  margin-bottom: 10px;
  font-size: 18px;
}

.internship-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.internship-card:hover {
  
  box-shadow: 0 12px 28px rgba(31,94,168,0.2);
}

/* Available internships section */
.available-internships {
  margin-top: 50px;
  background: linear-gradient(to right, #1F5EA8, #163F73);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.available-internships h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* Internship domain pills */
.internship-domains {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.internship-domains span {
  background: rgba(255,255,255,0.15);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* CTA */
.internship-cta .btn {
  background: #F4A62A;
  color: #1E293B;
  font-weight: 600;
}

.internship-cta .btn:hover {
  background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .available-internships {
    padding: 30px 20px;
  }

  .available-internships h3 {
    font-size: 20px;
  }
}
/* =========================
   RESULTS SECTION – UPGRADED
========================= */

.results-section {
  background: #ffffff;
}

/* Metrics grid */
.results-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Result cards */
.result-card {
  background: linear-gradient(to right, #1F5EA8, #163F73);
  color: #ffffff;
  padding: 35px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(31,94,168,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card h3 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #F4A62A;
}

.result-card p {
  font-size: 15px;
  letter-spacing: 0.3px;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(31,94,168,0.35);
}

/* Highlights */
.results-highlight {
  margin-top: 50px;
  background: #f4f6fa;
  padding: 35px;
  border-radius: 14px;
  border-left: 5px solid #F4A62A;
}

.results-highlight h3 {
  color: #1F5EA8;
  margin-bottom: 15px;
}

.results-highlight ul {
  padding-left: 20px;
}

.results-highlight ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .result-card h3 {
    font-size: 30px;
  }

  .results-highlight {
    padding: 25px;
  }
}
