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

:root {
  --primary-color: #f15a24; /* Vibrant orange */
  --secondary-color: #0b132a; /* Dark blue/navy */
  --text-color: #4a4a52;
  --light-bg: #f9f9fb;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

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

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

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

ul {
  list-style: none;
}

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

.section-padding {
  padding: 80px 0;
}

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

.section-title h5 {
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title h2 {
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: #d14918;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

/* Header */
.header {
  background-color: var(--secondary-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav-links li a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
}

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

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

/* Hero Slider Section */
.hero-slider-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--secondary-color);
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100vh;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 0;
}
.hero-slide::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(11, 19, 42, 0.85);
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--primary-color);
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-logos {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 19, 42, 0.95);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 1;
}

.hero-logos .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-logos img {
  height: 30px;
  opacity: 0.7;
  filter: grayscale(100%) brightness(200%);
  transition: var(--transition);
}

.hero-logos img:hover {
  opacity: 1;
  filter: none;
}

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.about-images img {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
}
.about-images img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

.about-content h5 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-content h2 {
  color: var(--secondary-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item h3 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

/* Services Section */
.services {
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.why-item .icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.why-item h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* Portfolio */
.portfolio {
  background-color: var(--light-bg);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

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

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
}

.portfolio-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: var(--primary-color);
  font-size: 14px;
}

/* Testimonials */
.testimonials {
  background-color: var(--secondary-color);
  color: var(--white);
}
.testimonials .section-title h2 { color: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: var(--border-radius);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.client-info span {
  font-size: 12px;
  color: var(--primary-color);
}

/* Process */
.process-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-item {
  text-align: center;
  width: 18%;
  position: relative;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.process-step {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  color: var(--white);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.process-item h4 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.process-item p {
  font-size: 14px;
}

/* FAQ */
.faq {
  background-color: var(--light-bg);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary-color);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}
.faq-item.active .faq-question {
  color: var(--primary-color);
}

/* Footer / CTA */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  display: block;
}
.footer-about p {
  opacity: 0.8;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-links a:hover {
  background: var(--primary-color);
}
.footer-widget h4 {
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
  font-size: 14px;
}

/* CTA Section inside footer */
.cta-section {
  background: var(--secondary-color);
  padding-bottom: 40px;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.cta-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.cta-content ul {
  margin-top: 20px;
}
.cta-content li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-content li i { color: var(--primary-color); }

.contact-form {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: var(--border-radius);
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 4px;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}
.btn-block {
  width: 100%;
}

/* Page Hero */
.page-hero {
  background-color: var(--secondary-color);
  padding: 150px 0 80px;
  text-align: center;
  color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
  .nav-links, .header .btn { display: none; }
  .mobile-menu-btn { display: block; }
  
  .hero-title { font-size: 40px; }
  .about-grid, .cta-grid { grid-template-columns: 1fr; }
  .services-grid, .why-grid, .portfolio-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-grid { flex-direction: column; gap: 30px; }
  .process-item { width: 100%; }
}

@media (max-width: 768px) {
  .services-grid, .why-grid, .portfolio-grid, .testimonial-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero-logos .container { justify-content: center; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 15px; }
  .footer-top { grid-template-columns: 1fr; }
}
