/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

p {
  color: #555;
}

/* =========================
   COMMON UTILITIES
========================= */
.section {
  padding: 80px 0;
}

.text-primary {
  color: #0d6efd !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  margin-left: 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #0d6efd;
}
.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
              url('caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  color: #ddd;
}

/* =========================
   BUTTONS
========================= */
.btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
}

.btn-primary {
  background: #0d6efd;
  border: none;
}

.btn-primary:hover {
  background: #0b5ed7;
}

/* =========================
   ABOUT SECTION
========================= */
.about p {
  max-width: 800px;
  margin: auto;
}
.about img {
  max-height: 400px;
  object-fit: cover;
}
/* =========================
   SERVICE SECTION
========================= */
/* SERVICE BOX */
.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid #eee;
}

/* ICON STYLE */
.service-box i {
  transition: 0.4s;
}

/* HOVER EFFECT */
.service-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}

/* ICON ANIMATION */
.service-box:hover i {
  transform: rotateY(180deg);
  color: #6610f2;
}

/* GRADIENT TOP BORDER */
.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  transform: scaleX(0);
  transition: 0.4s;
}

.service-box:hover::before {
  transform: scaleX(1);
}

/* TEXT */
.service-box h5 {
  font-weight: 600;
  margin-top: 10px;
}

.service-box p {
  font-size: 14px;
  color: #666;
}
/* =========================
   INDUSTRIES
========================= */
/* SECTION BACKGROUND */
.industries-modern {
  background: lightgray;
}

/* CARD */
.industry-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ICON CIRCLE */
.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  font-size: 22px;
  transition: 0.4s;
}

/* TEXT */
.industry-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.industry-card p {
  font-size: 14px;
  color: #555;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.4s;
}

/* HOVER EFFECT (DIFFERENT STYLE) */
.industry-card:hover {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  color: #fff;
}

/* ICON EFFECT */
.industry-card:hover .icon-circle {
  background: #fff;
  color: #0d6efd;
}

/* TEXT SLIDE UP */
.industry-card:hover p {
  transform: translateY(0);
  opacity: 1;
  color: #fff;
}

/* TITLE COLOR */
.industry-card:hover h5 {
  color: #fff;
}

/* =========================
   CARDS (CASE STUDY)
========================= */
/* CASE CARD */
.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.case-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* CONTENT OVERLAY */
.case-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 20px;
  transition: 0.4s;
}

/* TITLE */
.case-content h5 {
  font-weight: 600;
}

/* LIST */
.case-content ul {
  padding-left: 18px;
  margin: 10px 0 0;
  font-size: 14px;
}

/* HOVER EFFECT (SLIDE UP) */
.case-card:hover .case-content {
  bottom: 0;
}

/* IMAGE ZOOM */
.case-card:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

/* =========================
   TESTIMONIAL
========================= */
.testimonial {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
}

.testimonial:hover {
  background: #e9ecef;
}

/* =========================
   STATS SECTION
========================= */
/* SECTION BACKGROUND */
.stats-section {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  padding: 80px 0;
}

/* STAT BOX */
.stat-box {
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.4s;
  position: relative;
}

/* ICON */
.stat-box i {
  font-size: 35px;
  margin-bottom: 15px;
  display: block;
}

/* NUMBER */
.stat-box h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* TEXT */
.stat-box p {
  color: #ddd;
  font-size: 14px;
}

/* HOVER EFFECT (DIFFERENT STYLE) */
.stat-box:hover {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  transform: scale(1.05);
}

/* DIVIDER LINE (OPTIONAL LOOK) */
.stat-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

/* REMOVE LAST LINE */
.col-lg-3:last-child .stat-box::after {
  display: none;
}
/* =========================
   CONTACT FORM
========================= */
form input,
form textarea {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
}

form input:focus,
form textarea:focus {
  border-color: #0d6efd;
  box-shadow: none;
}

/* =========================
   CTA SECTION
========================= */
/* CTA BACKGROUND */
.cta-section {
  background: lightgray;
  padding: 80px 0;
}

/* TEXT */
.cta-section p {
  max-width: 800px;
  margin: auto;
  color: black;
}

/* BUTTON */
.cta-section .btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

/* BUTTON HOVER */
.cta-section .btn-light:hover {
  background: #fff;
  color: #0d6efd;
}

.cta-section .btn-outline-light:hover {
  background: #fff;
  color: #0d6efd;
}
/* =========================
   FOOTER
========================= */
/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 20px;
}

/* LINKS */
.footer a {
  color: #aaa;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer a:hover {
  color: #0d6efd;
}

/* SOCIAL ICONS */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: #222;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0d6efd;
}

/* ICON */
.footer i {
  margin-right: 8px;
}

/* BORDER */
.footer .border-top {
  border-color: rgba(255,255,255,0.1) !important;
}

/* =========================
   ICONS (WHATSAPP / CALL)
========================= */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp-icon img {
  width: 50px;
}

.call-icon {
  position: fixed;
  bottom: 80px;
  right: 20px;
}

.call-icon img {
  width: 50px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  .section {
    padding: 50px 0;
  }

  .navbar-brand {
    font-size: 18px;
  }
}

/* =========================
   EXTRA (PREMIUM LOOK)
========================= */
.shadow-hover {
  transition: 0.3s;
}

.shadow-hover:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rounded-xl {
  border-radius: 15px;
}

.text-gradient {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* INITIAL STATE (HIDDEN) */
.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* WHEN VISIBLE */
.animate-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* OPTIONAL DELAY (for stagger effect) */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }