

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fafafa, #f4f4f4);
  color: #222;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

.bubble {
  width: 60px;
  height: 60px;
  background: var(--circle-gradient);
  border-radius: 50%;
  position: absolute;
  opacity: 0.3;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 60px 30px;
}

.project-banner {
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: zoomIn 1s ease;
}

.project-banner .overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 0 0 30px 30px;
}

.project-banner h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.project-banner p {
  color: #eaeaea;
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

.section-title {
  color: var(--primary-orange);
  font-size: 36px;
  margin-top: 60px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: var(--gradient);
  margin-top: 10px;
  border-radius: 5px;
  animation: slideIn 1s ease;
}

.project-details ul {
  padding-left: 30px;
  margin-bottom: 30px;
  color: #444;
}

.project-details ul li {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  animation: fadeInUp 1s ease;
}

.highlight-box {
  background: #fff5ee;
  padding: 30px;
  border-left: 7px solid var(--primary-orange);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.highlight-box:hover {
  transform: translateY(-8px) scale(1.02);
  background-color: #fff0e6;
}

.highlight-box h4 {
  color: var(--primary-orange);
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
}

.highlight-box p {
  color: #555;
  font-size: 16px;
  font-weight: 400;
}

blockquote {
  background-color: #fffbea;
  padding: 30px;
  border-left: 6px solid var(--primary-orange);
  border-radius: 12px;
  margin: 40px 0;
  font-style: italic;
  font-size: 18px;
  color: #444;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  animation: fadeIn 1.2s ease;
}

.btn-group {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  background: var(--gradient);
  color: white;
  padding: 16px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: scale(1.08);
  background: linear-gradient(to right, var(--primary-orange), var(--primary-pink));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: #fff;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.btn-secondary:hover {
  background: var(--primary-orange);
  color: #fff;
  border-color: var(--primary-orange);
}

.nda-note {
  margin-top: 3rem;
  padding: 2rem;
  border-left: 6px solid var(--primary-pink);
  background-color: #fff4e5;
  border-radius: 12px;
  font-size: 1.05rem;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.nda-note strong {
  color: #d84315;
}

/* Responsive */
@media (max-width: 768px) {
  .project-banner h1 {
    font-size: 36px;
  }

  .project-banner p {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .highlight-box {
    padding: 20px;
  }

  .container {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .project-banner {
    height: 400px;
  }

  .project-banner h1 {
    font-size: 28px;
  }

  .project-banner p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
}

/* === Footer Section Styling === */
.footer {
  background: var(--footer-bg);
  padding: 90px 20px 50px;
  margin-top: 100px;
  border-top: 1px solid #333;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 80px 80px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--footer-text);
}

.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--accent), var(--accent-light));
  border-radius: 0 0 80px 80px;
  z-index: -1;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 26px;
  font-weight: bold;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-brand .logo:hover {
  color: var(--accent-light);
}

.footer-text {
  margin-top: 12px;
  font-size: 15px;
  color: var(--footer-link);
  line-height: 1.8;
}

.footer-list-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-link {
  display: inline-block;
  font-size: 15px;
  color: var(--footer-link);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link:hover::after {
  width: 100%;
}

.social-list {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.social-link {
  font-size: 18px;
  color: var(--accent);
  background: var(--social-bg);
  padding: 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(246, 193, 119, 0.15);
}

.social-link ion-icon {
  font-size: 22px;
}

.social-link:hover {
  background: var(--accent);
  color: #1a1a1a;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(246, 193, 119, 0.3);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  padding-top: 25px;
  border-top: 1px solid #333;
}
:root {
  /* Brand Gradient */
  --gradient: linear-gradient(90deg, #ff6a00, #ff2d55); /* orange to pink */

  /* Core Colors */
  --primary-orange: #ff6a00;  /* strong orange */
  --primary-pink: #ff2d55;    /* strong pink */
  --white: #ffffff;
  --black: #000000;
  --dark-gray: #1e1e1e;
  --text-gray: #4a4a4a;

  /* Backgrounds */
  --bg-white: #ffffff;
  --bg-light: #f8f8f8;
  --bg-footer: #1a1a1a;

  /* Footer & Accent Colors */
  --footer-bg: #1a1a1a;
  --footer-text: #f1f1f1;
  --footer-link: #d0d0d0;
  --accent: #ff2d55;
  --accent-light: #ff6a00;
  --social-bg: #262626;

  /* Shadows and Effects */
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  --circle-gradient: radial-gradient(circle at center, #ffc0cb, #ffa07a); /* soft pink-orange */

  /* Fonts */
  --ff-primary: 'Poppins', sans-serif;

  /* Font Sizes */
  --fs-xl: 3rem;
  --fs-lg: 2rem;
  --fs-md: 1.2rem;
  --fs-sm: 1rem;

  /* Border Radius */
  --radius: 16px;

  /* Transitions */
  --transition: 0.3s ease;
}
