/* ===== CSS VARIABLES - WARM CORAL THEME ===== */
:root {
  --primary-color: #ff7f50;
  --secondary-color: #fff5e6;
  --accent-color: #6a5acd;
  --text-color: #2b2b2b;
  --bg-color: #ffffff;
  --font-family: "Poppins", sans-serif;
  --light-orange: #ffe4d6;
  --soft-purple: #e6e0ff;
  --warm-gray: #f5f5f5;
  --dark-gray: #666666;
  --coral-shadow: 0 4px 20px rgba(255, 127, 80, 0.15);
  --purple-shadow: 0 4px 20px rgba(106, 90, 205, 0.15);
  --subtle-shadow: 0 2px 10px rgba(43, 43, 43, 0.08);
  --smooth-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --small-radius: 8px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER NAVIGATION ===== */
.primary-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 127, 80, 0.1);
  z-index: 1000;
  transition: var(--smooth-transition);
}

.primary-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--coral-shadow);
}

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-identity .navbar-logo {
  height: 65px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.3))
    drop-shadow(0 0 16px rgba(78, 205, 196, 0.2));
}

.brand-identity .navbar-logo:hover {
  transform: scale(1.05) translateY(-3px);
  filter: drop-shadow(0 0 12px rgba(255, 107, 157, 0.5))
    drop-shadow(0 0 24px rgba(78, 205, 196, 0.3))
    drop-shadow(0 0 36px rgba(123, 104, 238, 0.2)) brightness(1.15);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .brand-identity .navbar-logo {
    height: 52px;
    filter: drop-shadow(0 0 6px rgba(255, 107, 157, 0.3));
  }

  .brand-identity .navbar-logo:hover {
    transform: scale(1.03) translateY(-2px);
  }
}

.primary-navigation {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-item {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--smooth-transition);
}

.nav-item:hover {
  color: var(--primary-color);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  transition: var(--smooth-transition);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.menu-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.trigger-line {
  width: 28px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: var(--smooth-transition);
}

.menu-trigger.active .trigger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-trigger.active .trigger-line:nth-child(2) {
  opacity: 0;
}

.menu-trigger.active .trigger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SHOWCASE ===== */
.hero-showcase {
  padding: 150px 2rem 100px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--bg-color) 70%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 127, 80, 0.05) 0%,
    transparent 70%
  );
  animation: float-gentle 8s ease-in-out infinite;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.showcase-text {
  font-size: 1.2rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.action-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary-color), #ff6b35);
  color: white;
  padding: 18px 36px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: var(--coral-shadow);
  transition: var(--smooth-transition);
  position: relative;
  overflow: hidden;
}

.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--smooth-transition);
}

.primary-button:hover::before {
  left: 100%;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 127, 80, 0.3);
}

.outline-button {
  background: transparent;
  color: var(--primary-color);
  padding: 18px 36px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--smooth-transition);
}

.outline-button:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--coral-shadow);
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.graphic-circle {
  width: 280px;
  height: 280px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--coral-shadow);
  animation: rotate-slow 20s linear infinite;
  position: relative;
}

.graphic-icon {
  font-size: 4rem;
  color: white;
  z-index: 2;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float-gentle 6s ease-in-out infinite;
}

.shape-1 {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 15px;
  height: 15px;
  background: var(--accent-color);
  top: 25%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 25px;
  height: 25px;
  background: var(--light-orange);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 18px;
  height: 18px;
  background: var(--soft-purple);
  bottom: 35%;
  right: 10%;
  animation-delay: 1s;
}

/* ===== COMPANY STORY ===== */
.company-story {
  padding: 120px 2rem;
  background: var(--bg-color);
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  position: relative;
}

.visual-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--light-orange), var(--soft-purple));
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--subtle-shadow);
}

.team-illustration {
  font-size: 5rem;
  color: var(--primary-color);
  z-index: 2;
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 127, 80, 0.1),
    rgba(106, 90, 205, 0.1)
  );
}

.story-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.story-paragraph {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.achievement-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.metric-item {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* ===== SERVICE OFFERINGS ===== */
.service-offerings {
  padding: 120px 2rem;
  background: var(--warm-gray);
}

.offerings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: var(--bg-color);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--smooth-transition);
  box-shadow: var(--subtle-shadow);
  border: 1px solid rgba(255, 127, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 127, 80, 0.03) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: var(--smooth-transition);
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--coral-shadow);
  border-color: var(--primary-color);
}

.service-symbol {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  transition: var(--smooth-transition);
}

.service-item:hover .service-symbol {
  transform: scale(1.1);
}

.service-icon {
  font-size: 2rem;
  color: white;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.service-details {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ===== PROJECT GALLERY ===== */
.project-gallery {
  padding: 120px 2rem;
  background: var(--bg-color);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-tile {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--subtle-shadow);
  transition: var(--smooth-transition);
  cursor: pointer;
  position: relative;
}

.project-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--coral-shadow);
}

.tile-image {
  height: 250px;
  background: linear-gradient(135deg, var(--light-orange), var(--soft-purple));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tile-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--smooth-transition);
}

.project-tile:hover .tile-image::before {
  left: 100%;
}

.project-symbol {
  font-size: 3rem;
  color: var(--primary-color);
  z-index: 2;
}

.tile-content {
  padding: 1.5rem;
}

.project-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.project-type {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  padding: 120px 2rem;
  background: var(--warm-gray);
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 1.5rem;
  color: white;
}

.detail-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.3rem;
}

.detail-info p {
  font-size: 1rem;
  color: var(--dark-gray);
}

.inquiry-form {
  background: var(--bg-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--subtle-shadow);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(255, 127, 80, 0.2);
  border-radius: var(--small-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--smooth-transition);
  background: var(--bg-color);
  color: var(--text-color);
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.1);
}

.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: linear-gradient(135deg, var(--primary-color), #ff6b35);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--small-radius);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--smooth-transition);
  width: 100%;
  box-shadow: var(--coral-shadow);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 127, 80, 0.3);
}

/* ===== WEBSITE FOOTER ===== */
.website-footer {
  background: var(--text-color);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-sections {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.brand-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
  max-width: 350px;
}

.links-title,
.social-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.link-list {
  list-style: none;
}

.link-list li {
  margin-bottom: 0.8rem;
}

.link-list a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--smooth-transition);
}

.link-list a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: var(--smooth-transition);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: var(--coral-shadow);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  color: #cccccc;
  font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== ANIMATION CLASSES FOR JS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-up.animate {
  opacity: 1;
  transform: scale(1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .menu-trigger {
    display: flex;
  }

  .primary-navigation {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--coral-shadow);
    transform: translateX(-100%);
    transition: var(--smooth-transition);
  }

  .primary-navigation.mobile-open {
    transform: translateX(0);
  }

  .showcase-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .showcase-title {
    font-size: 2.5rem;
  }

  .story-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .achievement-metrics {
    justify-content: center;
  }

  .services-collection {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-wrapper {
    padding: 0 1rem;
  }

  .hero-showcase {
    padding: 120px 1rem 80px;
  }

  .showcase-title {
    font-size: 2rem;
  }

  .showcase-text {
    font-size: 1rem;
  }

  .action-group {
    flex-direction: column;
    align-items: center;
  }

  .primary-button,
  .outline-button {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .story-heading {
    font-size: 2.2rem;
  }

  .achievement-metrics {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-item {
    padding: 2rem 1.5rem;
  }

  .inquiry-form {
    padding: 2rem 1.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-light);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand-logo h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.navigation-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.toggle-bar {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-banner {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-main-title {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-action-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-action-btn {
  background: var(--primary-color);
  color: white;
  padding: 15px 35px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.primary-action-btn:hover {
  background: #3a7bd8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.secondary-action-btn {
  background: transparent;
  color: var(--primary-color);
  padding: 15px 35px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.secondary-action-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.hero-visual-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-illustration {
  position: relative;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color), #6b9df7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-heavy);
}

.hero-icon {
  font-size: 80px;
  color: white;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.element-2 {
  width: 15px;
  height: 15px;
  background: #6b9df7;
  top: 70%;
  right: 10%;
  animation-delay: 2s;
}

.element-3 {
  width: 25px;
  height: 25px;
  background: var(--secondary-color);
  bottom: 20%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* About Section */
.company-about {
  padding: 100px 20px;
  background: var(--bg-color);
}

.about-content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-heading {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.about-paragraph {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.company-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: var(--dark-gray);
  font-weight: 500;
}

.about-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-placeholder {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--secondary-color), #e8f1ff);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-medium);
}

.team-icon {
  font-size: 100px;
  color: var(--primary-color);
}

/* Services Section */
.services-showcase {
  padding: 100px 20px;
  background: var(--light-gray);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-color);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(76, 139, 245, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #6b9df7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.service-icon {
  font-size: 32px;
  color: white;
}

.service-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}

.service-description {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Portfolio Section */
.portfolio-gallery {
  padding: 100px 20px;
  background: var(--bg-color);
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.portfolio-image {
  height: 280px;
  background: linear-gradient(135deg, var(--secondary-color), #e8f1ff);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.portfolio-icon {
  font-size: 60px;
  color: var(--primary-color);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(76, 139, 245, 0.95));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-category {
  font-size: 14px;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: var(--light-gray);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--dark-gray);
  font-size: 15px;
}

.contact-form {
  background: var(--bg-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 139, 245, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--primary-color);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.submit-btn:hover {
  background: #3a7bd8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Footer */
.site-footer {
  background: var(--text-color);
  color: white;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
}

.footer-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: #3a7bd8;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
  font-size: 14px;
}

/* Animation Classes for JavaScript */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .navigation-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    box-shadow: var(--shadow-light);
    transform: translateX(-100%);
    transition: var(--transition);
  }

  .navigation-menu.mobile-active {
    transform: translateX(0);
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-main-title {
    font-size: 36px;
  }

  .hero-action-buttons {
    justify-content: center;
  }

  .about-content-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-heading {
    font-size: 32px;
  }

  .company-stats {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    padding: 100px 15px 60px;
  }

  .hero-main-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .primary-action-btn,
  .secondary-action-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .section-heading {
    font-size: 26px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-item .portfolio-image {
    height: 220px;
  }
}

/* ===== ENHANCED LOGO ANIMATIONS & FAVICON STYLES ===== */

/* Navbar Logo Enhanced Animations */
.brand-identity .navbar-logo {
  height: 45px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(255, 127, 80, 0.2));
}

.brand-identity .navbar-logo:hover {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(255, 127, 80, 0.3)) brightness(1.1);
}

/* Header scroll effect on logo */
.primary-header.scrolled .navbar-logo {
  height: 55px;
  transition: all 0.3s ease;
}

/* Logo focus styles for accessibility */
.brand-identity .navbar-logo:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Enhanced logo animations on mobile */
@media (max-width: 768px) {
  .brand-identity .navbar-logo {
    height: 50px;
    filter: drop-shadow(0 1px 3px rgba(255, 127, 80, 0.2));
  }

  .brand-identity .navbar-logo:hover {
    transform: scale(1.05) translateY(-1px);
  }

  .primary-header.scrolled .navbar-logo {
    height: 45px;
  }
}

/* SVG Animation Enhancement */
.navbar-logo svg {
  width: 100%;
  height: 100%;
}

/* Favicon and PWA styles */
.favicon-animation {
  animation: faviconPulse 3s ease-in-out infinite;
}

@keyframes faviconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Logo loading animation */
.brand-identity {
  position: relative;
}

.brand-identity::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: logoLoader 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-identity.loading::before {
  opacity: 1;
}

@keyframes logoLoader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Enhanced hover effects for the entire header */
.primary-header:hover .navbar-logo {
  filter: drop-shadow(0 3px 6px rgba(255, 127, 80, 0.25)) brightness(1.05);
}

/* Logo text selection prevention */
.brand-identity .navbar-logo {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Print styles for logo */
@media print {
  .brand-identity .navbar-logo {
    filter: none !important;
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .brand-identity .navbar-logo {
    filter: contrast(1.2);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .brand-identity .navbar-logo {
    transition: none;
  }

  .brand-identity .navbar-logo:hover {
    transform: none;
  }

  .navbar-logo svg * {
    animation-duration: 0s !important;
  }
}
