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

:root {
  --bg-color: #f8f9fa;
  --surface-color: #ffffff;
  --surface-color-glass: rgba(255, 255, 255, 0.8);
  --primary-color: #E6A100; /* Rich Amber */
  --primary-color-hover: #CC8E00;
  --text-main: #0B2C24; /* Dark Forest Green */
  --text-muted: #475569;
  --border-color: rgba(11, 44, 36, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Typography */
.text-primary { color: var(--primary-color); }
.text-muted { color: var(--text-muted); }

/* Layout & Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: var(--surface-color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 161, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

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

/* Sections */
section {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title span {
  color: var(--primary-color);
}

/* Cards (Glassmorphism) */
.glass-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12rem;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 6rem 0 3rem;
  }
}

/* Page Specific Overrides */
.page-header {
  text-align: center;
  padding: 10rem 0 4rem;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.05), transparent);
}

.page-title {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* Specific Section Layouts */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-muted);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-main);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-color);
  border: 4px solid var(--primary-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
}

.timeline-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-left::after, .timeline-right::after {
    left: 21px;
  }
  .timeline-right {
    left: 0%;
  }
}

/* Footer */
footer {
  background-color: var(--text-main);
  color: #fff;
  padding: 5rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: #fff;
}
.footer-desc {
  color: #a0a0a0;
  margin-bottom: 2rem;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #fff;
}
.footer-socials a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: #a0a0a0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #a0a0a0;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Behance Module Redesign Styles --- */

/* Pill Buttons */
.btn-dark-pill {
  background-color: var(--text-main);
  color: var(--surface-color);
  border-radius: 50px;
}
.btn-dark-pill:hover {
  background-color: #061C16;
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline-pill {
  background-color: var(--surface-color);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: 50px;
}
.btn-outline-pill:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Header Adjustments */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hero Split Layout */
.hero-split {
  padding-top: 10rem;
  padding-bottom: 5rem;
  min-height: auto;
}
.hero-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background-color: rgba(230, 161, 0, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-text .hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-text .hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.hero-text .hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

/* Right Image Area */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.hero-image-bg {
  position: absolute;
  top: 10%;
  left: 10%;
  right: -10%;
  bottom: -10%;
  background-color: #f1f5f9;
  border-radius: 2rem;
  z-index: -1;
}
.hero-portrait {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.hero-portrait img {
  width: 100%;
  height: auto;
  display: block;
}
.float-badge {
  position: absolute;
  background: var(--surface-color);
  padding: 0.8rem 1.2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--border-color);
  animation: float-up-down 4s ease-in-out infinite;
}
.float-1 {
  bottom: 10%;
  left: -15%;
  animation-delay: 0s;
}
.icon-circle {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-hire-btn {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(230, 161, 0, 0.3);
  transition: var(--transition);
  animation: float-up-down 5s ease-in-out infinite 1s;
}
.float-hire-btn:hover {
  transform: scale(1.1);
  color: #fff;
  animation-play-state: paused;
}

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

/* Accordion */
.accordion-btn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  margin-bottom: 0.5rem;
}
.accordion-btn.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--primary-color);
  background: rgba(230, 161, 0, 0.05);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: none;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}
.accordion-content p {
  padding: 1.5rem;
  color: var(--text-muted);
}

/* Tabs */
.tab-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}
.tab-content {
  display: none;
  animation: fadeEffect 0.5s;
}
.tab-content.active {
  display: block;
}
@keyframes fadeEffect {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Featured Blog Image */
.blog-featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.infographic {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

/* Marquee Ticker */
.marquee-wrapper {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}
.marquee-content {
  display: inline-flex;
  gap: 3rem;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: scroll-marquee 20s linear infinite;
}
.marquee-content i {
  font-size: 1rem;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats Section */
.bg-light-alt {
  background-color: #f8fafc;
}
.stats-section {
  padding: 6rem 0;
  min-height: auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.stats-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.stat-number {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stat-label {
  font-weight: 600;
  color: var(--text-main);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text .hero-btns {
    justify-content: center;
  }
  .float-1 {
    left: 5%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Logo styling updates */
.nav-logo {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .nav-logo {
    height: 45px;
  }
}


/* Interactive CTA Section */
.cta-box {
  padding: 4rem 2rem;
  background: white;
  color: var(--text-main);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.cta-box:hover {
  transform: translateY(-5px);
}
.cta-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: var(--text-main);
}
.cta-desc {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  color: var(--text-light);
}
.cta-btn {
  background: var(--primary-color);
  color: white;
  font-weight: 800;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(230,161,0,0.2);
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: var(--text-main);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(11,44,36,0.3);
}


/* Advanced CTA Grid */
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-features {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  color: var(--text-light);
}
.cta-features li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.cta-features i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.2rem;
}
.cta-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}
.cta-action-card:hover {
  transform: translateY(-10px);
}
.cta-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.cta-action-card h3 {
  color: var(--text-main);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cta-action-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.1rem;
}
@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-title {
    font-size: 2.2rem !important;
  }
}


