/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #f97316; /* Vibrant Orange */
  --primary-dark: #ea580c;
  --primary-light: #fff7ed;
  --secondary-color: #1e293b; /* Slate for text */
  --bg-color: #ffffff;
  --bg-gray: #f8fafc;
  --text-main: #334155;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* --- Navigation --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  line-height: 1.2;
}

.logo span {
  display: block;
}

.logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Home Page Image Animation */
.animate-image {
  animation: scaleUpDown 10s ease-in-out infinite alternate;
}

@keyframes scaleUpDown {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-animate {
  animation: heroPulse 20s infinite alternate;
}

@keyframes heroPulse {
  0% { background-position: center; transform: scale(1); }
  100% { background-position: center; transform: scale(1.05); }
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--secondary-color);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 0; /* Changed because header is fixed */
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url('Homepage.jpg') center/cover no-repeat;
  color: #ffffff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}

.badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.2);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(249, 115, 22, 0.5);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f5f9;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Highlights / Features Cards --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-link:hover {
  text-decoration: underline;
}

/* --- About Preview --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.experience-badge h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0;
}

/* --- Inner Page Hero --- */
.inner-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--bg-gray) 0%, var(--primary-light) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.inner-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumb {
  color: var(--text-light);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--primary-color);
}

/* --- Founder Section --- */
.founder-section {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-md);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.founder-img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.founder-content h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.founder-content h4 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.founder-content p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.founder-quote {
  font-style: italic;
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin-top: 20px;
  color: var(--secondary-color);
  font-weight: 500;
}

/* --- Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  padding: 30px;
  background: var(--bg-gray);
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.value-card:hover h4, .value-card:hover p {
  color: white;
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* --- Contact Section --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: var(--primary-color);
  color: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-info h3, .contact-info p {
  color: white;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-form {
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-gray);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px var(--primary-light);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* --- Gallery & Resources --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249, 115, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

.list-checked {
  margin-top: 20px;
}

.list-checked li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.list-checked li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

/* --- Footer --- */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  background: white;
  padding: 5px;
  border-radius: 50%;
}

.footer-text {
  color: #94a3b8;
  margin-bottom: 20px;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-widget h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .about-preview { grid-template-columns: 1fr; }
  .experience-badge { right: 20px; }
  .founder-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow-md);
    clip-path: circle(0% at 100% 0);
    transition: all 0.4s ease-out;
  }
  .nav-links.active {
    clip-path: circle(150% at 100% 0);
  }
  .hero h1 { font-size: 2.2rem; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo, .social-links { justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
}
