/* Global Typography - Montserrat Font, Non-Bold, Small Sizes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap');

/* Hornbill IoT Solutions - Uniform with Website Design */

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family: 'Montserrat' !important;
  font-weight: 400 !important;
}

html, body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400 !important;
}

strong, b {
  font-weight: 400 !important;
}

nav, nav a, .navbar, .nav-link, .menu-item, .main-nav a, .mobile-nav-link {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-family: 'Montserrat' !important;
}

p {
  font-size: 13px;
  font-weight: 400 !important;
}

:root {
  --gold: #d4a000;
  --bg: #f5f5f5;
  --paper: #ffffff;
  --muted: #666666;
  --dark: #1a1a1a;
}

/* Hero Section */
.hornbill-hero {
  padding: 120px 40px 80px;
  background: linear-gradient(135deg, rgba(212,160,0,0.1) 0%, rgba(212,160,0,0.05) 100%);
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.hornbill-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hornbill-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 160, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-main-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  font-family: 'Montserrat';
  line-height: 1.2;
}

.hero-underline {
  width: 100px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 30px;
  box-shadow: 0 2px 10px rgba(212, 160, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Montserrat';
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section - Creative Layout */
.hornbill-about {
  padding: 100px 40px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hornbill-about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 3px solid rgba(212, 160, 0, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hornbill-about::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border: 3px solid rgba(212, 160, 0, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hornbill-about .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 15px;
  font-family: 'Montserrat';
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 2px 10px rgba(212, 160, 0, 0.3);
}

.about-tagline {
  font-size: 1.3rem;
  color: var(--muted);
  font-family: 'Montserrat';
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual Element */
.about-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-circle {
  position: absolute;
  border: 2px solid rgba(212, 160, 0, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  border-color: rgba(212, 160, 0, 0.3);
}

.circle-2 {
  width: 280px;
  height: 280px;
  border-color: rgba(212, 160, 0, 0.2);
  animation-duration: 25s;
  animation-direction: reverse;
}

.circle-3 {
  width: 360px;
  height: 360px;
  border-color: rgba(212, 160, 0, 0.15);
  animation-duration: 30s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.visual-center {
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 160, 0, 0.1) 0%, rgba(212, 160, 0, 0.05) 100%);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(212, 160, 0, 0.2);
  transition: all 0.4s ease;
}

.visual-center:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(212, 160, 0, 0.3);
}

.center-icon {
  color: var(--gold);
  margin-bottom: 10px;
}

.visual-center h3 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #000000;
  margin: 0;
  font-family: 'Montserrat';
}

/* Text Content */
.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission-statement {
  background: linear-gradient(135deg, rgba(212, 160, 0, 0.08) 0%, rgba(212, 160, 0, 0.03) 100%);
  border-left: 4px solid var(--gold);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mission-statement:hover {
  box-shadow: 0 8px 25px rgba(212, 160, 0, 0.15);
  transform: translateX(5px);
}

.mission-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 160, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.mission-statement:hover .mission-icon {
  background: var(--gold);
  color: #000000;
  transform: scale(1.1);
}

.mission-statement h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  margin: 0 0 15px 0;
  font-family: 'Montserrat';
}

.mission-statement p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  font-family: 'Montserrat';
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-point:hover {
  background: var(--paper);
  border-color: rgba(212, 160, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(212, 160, 0, 0.1);
}

.point-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 160, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-point:hover .point-icon {
  background: var(--gold);
  color: #000000;
  transform: scale(1.1) rotate(5deg);
}

.point-content h4 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #000000;
  margin: 0 0 8px 0;
  font-family: 'Montserrat';
  transition: color 0.3s ease;
}

.feature-point:hover .point-content h4 {
  color: var(--gold);
}

.point-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  font-family: 'Montserrat';
}

/* Services Section */
.hornbill-services {
  padding: 80px 40px;
  background: var(--bg);
  position: relative;
}

.hornbill-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 160, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 160, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hornbill-services .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Service Category */
.service-category {
  margin-bottom: 80px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(212, 160, 0, 0.2);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 160, 0, 0.15) 0%, rgba(212, 160, 0, 0.08) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 160, 0, 0.2);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000000;
  margin: 0;
  font-family: 'Montserrat';
  position: relative;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(212, 160, 0, 0.3);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.solution-card {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--gold);
  position: relative;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: 2;
}

.solution-card:hover::before {
  transform: scaleY(1);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(212, 160, 0, 0.25);
  border-left-width: 6px;
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}

.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 160, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.solution-card:hover .card-image::after {
  opacity: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.95);
}

.solution-card:hover .card-image img {
  transform: scale(1.12);
  filter: brightness(1.05);
}

.card-content {
  padding: 30px;
  position: relative;
}

.card-content h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
  margin: 0 0 15px 0;
  font-family: 'Montserrat';
  transition: color 0.3s ease;
  line-height: 1.3;
}

.solution-card:hover .card-content h3 {
  color: var(--gold);
}

.card-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  font-family: 'Montserrat';
  transition: color 0.3s ease;
}

.solution-card:hover .card-content p {
  color: #444;
}

/* Benefits Section */
.hornbill-benefits {
  padding: 80px 40px;
  background: var(--paper);
  position: relative;
}

.hornbill-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212,160,0,0.02) 0%, transparent 100%);
  pointer-events: none;
}

.hornbill-benefits .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(212, 160, 0, 0.25);
  border-top-color: var(--gold);
  background: var(--paper);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: rgba(212, 160, 0, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s ease;
  position: relative;
}

.benefit-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: var(--gold);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: -1;
}

.benefit-card:hover .benefit-icon {
  background: var(--gold);
  color: #000000;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(212, 160, 0, 0.3);
}

.benefit-card:hover .benefit-icon::after {
  width: 100px;
  height: 100px;
  opacity: 0.2;
}

.benefit-icon svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  margin: 0 0 15px 0;
  font-family: 'Montserrat';
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--gold);
}

.benefit-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  font-family: 'Montserrat';
  transition: color 0.3s ease;
}

.benefit-card:hover p {
  color: #444;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 800px) {
  .hornbill-hero {
    padding: 100px 20px 60px;
  }

  .hero-main-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hornbill-about,
  .hornbill-services,
  .hornbill-benefits {
    padding: 60px 20px;
  }

  .service-category {
    margin-bottom: 60px;
  }

  .category-header {
    margin-bottom: 30px;
  }

  .category-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-tagline {
    font-size: 1.1rem;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    height: 300px;
    order: 1;
  }

  .about-text-content {
    order: 2;
  }

  .visual-center {
    width: 140px;
    height: 140px;
  }

  .center-icon svg {
    width: 60px;
    height: 60px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .container {
    padding: 0 20px;
  }

  .card-content {
    padding: 25px;
  }

  .benefit-card {
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  .hornbill-hero {
    padding: 80px 15px 40px;
  }

  .hero-main-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hornbill-about,
  .hornbill-services,
  .hornbill-benefits {
    padding: 40px 15px;
  }

  .service-category {
    margin-bottom: 50px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .category-icon {
    width: 50px;
    height: 50px;
  }

  .category-icon svg {
    width: 28px;
    height: 28px;
  }

  .category-title {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .about-tagline {
    font-size: 1rem;
  }

  .about-header {
    margin-bottom: 50px;
  }

  .about-content-wrapper {
    gap: 40px;
  }

  .about-visual {
    height: 250px;
  }

  .visual-center {
    width: 120px;
    height: 120px;
  }

  .center-icon svg {
    width: 50px;
    height: 50px;
  }

  .visual-center h3 {
    font-size: 1rem;
  }

  .mission-statement {
    padding: 25px;
  }

  .mission-statement h3 {
    font-size: 1.3rem;
  }

  .mission-statement p {
    font-size: 1rem;
  }

  .feature-point {
    padding: 18px;
    gap: 15px;
  }

  .point-icon {
    width: 45px;
    height: 45px;
  }

  .point-content h4 {
    font-size: 1.1rem;
  }

  .point-content p {
    font-size: 0.9rem;
  }

  .solutions-grid,
  .benefits-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .card-image {
    height: 180px;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h3 {
    font-size: 1.3rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .benefit-icon svg {
    width: 36px;
    height: 36px;
  }

  .benefit-card h3 {
    font-size: 0.95rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 15px;
  }
}
