/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0d1b2a;
  color: #f0f4f8;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #0a1520;
  border-bottom: 1px solid #1c2b3a;
}

.logo {
  height: 100px;
}

.nav-right a {
  color: #f0f4f8;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-right a:hover {
  color: #69c0ff;
}

/* Hero */
.hero {
  background: linear-gradient(to bottom right, #0a1520, #1c2b3a);
  padding: 120px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #c0d6e4;
}

.cta-button {
  background-color: #69c0ff;
  color: #0a1520;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #40a9ff;
}

/* Features */
.features {
  padding: 80px 40px;
  background-color: #102030;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-box {
  background-color: #182b3a;
  padding: 20px;
  width: 280px;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h3 {
  margin-bottom: 10px;
  color: #69c0ff;
}

/* About Preview */
.about-preview,
.news-preview {
  padding: 60px 40px;
  text-align: center;
  background-color: #0d1b2a;
}

.about-preview h2,
.news-preview h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.learn-more {
  display: inline-block;
  margin-top: 20px;
  color: #69c0ff;
  text-decoration: none;
  border-bottom: 1px solid #69c0ff;
}

.learn-more:hover {
  color: #40a9ff;
  border-color: #40a9ff;
}

/* News List */
.news-preview ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.news-preview li {
  margin-bottom: 12px;
  color: #b0c4d4;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #0a1520;
  border-top: 1px solid #1c2b3a;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
  opacity: 0.8;
}

footer p {
  color: #8a9db2;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-right a {
    margin: 0 10px;
  }
}
.capability-card {
  background-color: #1b2e44;
  padding: 20px;
  width: 280px;
  border-radius: 10px;
  transition: 0.3s;
}

.capability-card:hover {
  transform: scale(1.05);
  background-color: #223b56;
}

/* About Section */
.about-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  color: #cbd6e4;
}

.about-section h1,
.about-section h2 {
  color: #69c0ff;
  margin-bottom: 16px;
}

.about-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.about-section ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 40px;
}

/* CEO Section */
.ceo-section {
  background-color: #102030;
  padding: 60px 20px;
  color: #cbd6e4;
  text-align: center;
}

.ceo-section h2 {
  color: #69c0ff;
  margin-bottom: 40px;
}

.ceo-container {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: center;
  text-align: left;
}

.ceo-photo {
  width: 200px;
  border-radius: 100px;
  border: 3px solid #69c0ff;
  object-fit: cover;
}

.ceo-bio {
  max-width: 600px;
}

.ceo-bio h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #a0d8ff;
}

.ceo-bio p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d0e8ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ceo-container {
    flex-direction: column;
    text-align: center;
  }

  .ceo-bio {
    max-width: 100%;
  }
}

/* Why Us Section */
.why-us {
  background-color: #122138;
  padding: 80px 40px;
  text-align: center;
  color: #d0e8ff;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #69c0ff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.why-us-item {
  background-color: #182b44;
  padding: 25px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-6px);
  background-color: #22416d;
}

.why-us-item h3 {
  margin-bottom: 12px;
  color: #a0d8ff;
  font-weight: 600;
}

.why-us-item p {
  font-size: 1rem;
  line-height: 1.4;
  color: #c1d7ff;
}


/* Projects Section */
.projects-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  color: #cbd6e4;
  text-align: center;
}

.projects-section h1 {
  color: #69c0ff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.projects-section p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #a9bedf;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Project Card */
.project-card {
  background-color: #182b44;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  background-color: #22416d;
}

.project-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-card h3 {
  color: #a0d8ff;
  margin-bottom: 10px;
}

.project-card p {
  color: #d0e8ff;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-section {
    padding: 0 15px;
  }
}

/* News Section */
.news-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  color: #cbd6e4;
  text-align: center;
}

.news-section h1 {
  color: #69c0ff;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.news-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.news-list li {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #a9bedf;
  border-left: 3px solid #69c0ff;
  padding-left: 15px;
}

.news-date {
  font-weight: 700;
  color: #a0d8ff;
  margin-right: 8px;
}

/* Contact Page */
.contact-top-blurb {
  max-width: 800px;
  margin: 60px auto 40px;
  padding: 0 20px;
  text-align: center;
  color: #cbd6e4;
}

.contact-top-blurb h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #69c0ff;
}

.contact-top-blurb p {
  font-size: 1.2rem;
  color: #a9bedf;
}

/* Contact Form */
.contact-form-section {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: 600;
  color: #69c0ff;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background-color: #1a2a44;
  color: #e0e8ff;
  resize: vertical;
  transition: background-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background-color: #25446e;
  outline: none;
}

button[type="submit"] {
  background-color: #69c0ff;
  color: #0a1520;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #40a9ff;
}

/* Contact Info */
.contact-info {
  max-width: 600px;
  margin: 0 auto 80px;
  padding: 0 20px;
  text-align: center;
  color: #cbd6e4;
}

.contact-info h2 {
  color: #69c0ff;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #a9bedf;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-form-section,
  .contact-info {
    padding: 0 15px;
  }
}

/* Portfolio Page */
.portfolio-intro {
  text-align: center;
  padding: 60px 20px 30px;
  color: #cbd6e4;
}

.portfolio-intro h1 {
  font-size: 2.5rem;
  color: #69c0ff;
  margin-bottom: 10px;
}

.portfolio-intro p {
  font-size: 1.2rem;
  color: #a9bedf;
  max-width: 700px;
  margin: 0 auto;
}

/* Portfolio Grid Layout */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

/* Portfolio Card & Hover */
.portfolio-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 65%; /* 3:2 aspect ratio */
}

.portfolio-image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Hover Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 40, 0.85);
  color: #cbe8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  text-align: center;
  font-size: 1.1rem;
  padding: 20px;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* Internship Page */
.intern-intro {
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 20px;
  color: #cbd6e4;
  text-align: center;
}

.intern-intro h1 {
  font-size: 2.5rem;
  color: #69c0ff;
  margin-bottom: 15px;
}

.intern-intro p {
  font-size: 1.15rem;
  color: #a9bedf;
  margin-bottom: 30px;
}

.pdf-viewer {
  border: 2px solid #305074;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Intern Gallery */
.intern-gallery {
  max-width: 1100px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
  color: #cbd6e4;
}

.intern-gallery h2 {
  font-size: 2rem;
  color: #69c0ff;
  margin-bottom: 10px;
}

.intern-gallery p {
  font-size: 1rem;
  color: #a9bedf;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card Hover Reveal */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(10, 25, 40, 0.85);
  color: #e0f4ff;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.abilities-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.abilities-list li {
  margin-bottom: 1.5rem;
  padding-left: 1.8rem;
  position: relative;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
}

.abilities-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #4da6ff;
  font-size: 1.2rem;
}