@charset "utf-8";
/* CSS Document */

:root {
  --primary-color: #0a2342; /* Deep Navy */
  --accent-color: #2ca58d;  /* Tradition Green */
  --light-bg: #f8f9fa;
  --text-dark: #212529;
}

/* ================= GLOBAL TYPOGRAPHY ================= */
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ================= NAVBAR TYPOGRAPHY (UPDATED) ================= */

/* Brand */
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.6px;
}

/* Navigation Links */
.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 10px;
  transition: color 0.3s ease;
}

/* Hover & Active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

/* Navbar Container */
.navbar {
  transition: all 0.4s ease;
  padding: 20px 0;
}

/* Navbar on Scroll */
.navbar.scrolled {
  background: var(--primary-color) !important;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Slightly smaller text after scroll */
.navbar.scrolled .nav-link {
  font-size: 0.9rem;
}

/* ================= DROPDOWN ================= */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
}

.dropdown-item {
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* ================= HERO ================= */
.hero-caption h1 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.tagline-hero {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--accent-color);
}

/* ================= HERO IMAGE EFFECTS ================= */
.hero-img {
  height: 80vh;
  object-fit: cover;
  filter: brightness(0.6);
  transform: scale(1.08);
  transition: transform 6s ease;
}

.carousel-item.active .hero-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  z-index: 1;
}

.hero-caption {
  z-index: 2;
  top: 4%;
  left: 10%;
  right: 10%;
  text-align: left;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

/* ================= BUTTONS ================= */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ================= PRODUCT / CARDS ================= */
.product-row {
  min-height: 500px;
}

.product-img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 400px;
}

.cert-card {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
}

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

/* ================= IDEAL CARD ================= */
.ideal-card {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.35s ease;
}

.ideal-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.ideal-card i {
  transition: transform 0.35s ease, color 0.35s ease;
}

.ideal-card:hover i {
  transform: scale(1.15);
  color: #198754;
}

.ideal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,135,84,0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ideal-card:hover::after {
  opacity: 1;
}

/* ================= FOOTER ================= */
footer {
  background: var(--primary-color);
  min-height: 350px;
}

footer a:hover {
  color: #28a745 !important;
  transition: 0.3s ease;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-caption h1 {
    font-size: 2.6rem;
  }

  .hero-img {
    height: 85vh;
  }

  .product-row {
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.6px;
  }
}

.hero-slider .carousel-caption { top:25%;}
.contactV3 { padding-top:150px; padding-bottom:150px;}
	.contactV3 .contact-wrapper {

            max-width: 1100px;

            margin: 60px auto;

            background: var(--bg);

            display: grid;

            grid-template-columns: 1fr 1.2fr;

            border-radius: 20px;

            overflow: hidden;

            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

        }



        /* Brand Side */

        .contactV3 .contact-info-panel {

            background: var(--primary);

            color: white;

            padding: 60px;

            display: flex;

            flex-direction: column;

            justify-content: space-between;

        }



        .contactV3 .info-item {

            margin-bottom: 40px;

            display: flex;

            gap: 20px;

        }



        .contactV3 .icon {

            font-size: 1.5rem;

            color: var(--accent);

        }



        .contactV3 .info-item h4 { margin: 0 0 5px 0; font-size: 1.1rem; }

        .contactV3 .info-item p { margin: 0; color: #9ca3af; font-size: 0.95rem; }



        /* Form Side */

        .contactV3 .contact-form-panel {

            padding: 0;

        }



        .contactV3 .contact-form-panel h2 { margin-top: 0; font-size: 1.8rem; line-height:44px; margin-bottom:10px;}



        .contactV3 .form-group { margin-bottom: 20px; }

        .contactV3 label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }

        

        .contactV3 input, .contactV3 textarea {

            width: 100%;

            padding: 12px;

            border: 1px solid #e5e7eb;

            border-radius: 8px;

            font-size: 1rem;

            box-sizing: border-box;

            background: #fbfbfb;

        }



        .contactV3 button {

            background:#004612;

            color: white;

            border: none;

            padding: 15px 30px;

            border-radius: 8px;

            font-weight: 600;

            cursor: pointer;

            width: 100%;

            transition: opacity 0.2s;

        }



        .contactV3 button:hover { opacity: 0.9; }



        /* Mobile Adjustments */

        @media (max-width: 850px) {

            .contactV3 .contact-wrapper { grid-template-columns: 1fr; margin: 20px; }

            .contactV3 .contact-info-panel { padding: 40px; }

            .contactV3 .contact-form-panel { padding: 40px; }

        }
		.canada-flag {
  width: 80px;
  height: auto;
  background-color: #efefef;
  padding: 5px;
}

.contact-card {

            max-width: 400px;

            border: none;

            box-shadow: 0 4px 8px rgba(0,0,0,0.1);

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

			margin-bottom:20px;

        }

		

		.contact-card:hover{

  box-shadow:0 8px 25px rgba(0,0,0,0.15);

  transform:translateY(-4px);

  border-color:#ccc;

}
.contactV3 {
  padding-top: 200px;
  background-color: #f4f4f4;
}

/* ================= HERO ================= */
.history-hero {
  min-height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url('../images/banner-4.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

/* ================= TIMELINE ================= */
.timeline {
  position: relative;
  max-width: 850px;
  margin: auto;
  padding-left: 30px;
  border-left: 2px solid #198754;
}

.timeline-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 45px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #198754;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.6s ease;
}

.timeline-item.is-visible::before {
  transform: scale(1);
}

.timeline-year {
  font-weight: 700;
  color: #198754;
  font-size: 1.1rem;
}

.timeline-desc {
  color: #555;
  margin-top: 6px;
  line-height: 1.7;
}

/* ================= MOBILE SAFETY ================= */
@media (max-width: 768px) {
  .timeline-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .timeline-item::before {
    transform: scale(1) !important;
  }
}

.text-secondary { color:#e0e0e0 !important;}


/* ================= FILTER ================= */
.filter-group .btn{
  font-weight:600;
  text-transform:uppercase;
}

/* ================= GRID ================= */
.company-col.hide{
  display:none;
}

/* ================= CARD ================= */
.company-card {
  transition:
    transform 0.45s cubic-bezier(.19,1,.22,1),
    box-shadow 0.45s cubic-bezier(.19,1,.22,1);
}

.company-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.company-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.45),
    rgba(255,255,255,0)
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.company-card:hover::before {
  opacity: 1;
}

.company-card {
  position: relative;
  overflow: hidden;
  background-color:#fff;
}


.country-title{  
  font-weight:600; font-size:24px;
}

.machine-text{
  font-size:.85rem;
  font-weight:600;
  text-transform:uppercase;
  color:#6c757d;
}

.flag {
  width: 64px;
  height: 64px;                 /* SAME AS WIDTH */
  object-fit: contain;          /* Keeps full flag visible */
  background: #f1f3f5;          /* Light premium background */
  padding: 6px;                 /* Breathing space */
  border-radius: 8px;           /* Soft corporate look */
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.company-card:hover .flag {
  background: #e9ecef;
}

/* ================= MOBILE SAFETY ================= */
@media(max-width:768px){
  .gsap-reveal{
    opacity:1!important;
    transform:none!important;
  }
}
