@charset "utf-8";
/* CSS Document */

 :root {
      --primary-color: #0a2342; /* Deep Navy */
      --accent-color: #2ca58d;  /* Tradition Green */
      --light-bg: #f8f9fa;
      --text-dark: #212529;
    }

    body { 
      font-family: "Google Sans", sans-serif;
      color: var(--text-dark); 
      overflow-x: hidden; 
      line-height: 1.8;
	  font-size:18px;
    }

    h1, h2, h3, .brand-font { font-family: "Google Sans", sans-serif; }

    /* Navbar styling */
    .navbar { transition: all 0.4s; padding: 20px 0; }
    .navbar.scrolled { 
      background: #11de6d !important; 
      padding: 10px 0; 
      box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    }
    .nav-link { font-weight: 500; letter-spacing: 0.5px; color:#fff !important; margin: 0 10px; }
	 .nav-link a { color:#fff !important;}

    /* Dropdown Hover Effect for Desktop */
    @media (min-width: 992px) {
      .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        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:hover {
      background-color: var(--accent-color);
      color: white;
    }

    /* Hero Section */
    .hero-img { height: 100vh;
  object-fit: cover;
  }
    .hero-caption { 
      bottom: 50%; 
      transform: translateY(50%); 
      text-align: center;
      text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    }
    .hero-caption h1 { font-size: 4.5rem; letter-spacing: 2px; }
    .tagline-hero { 
      font-size: 1.5rem; 
      color: var(--accent-color); 
      letter-spacing: 4px; 
      text-transform: uppercase;
    }

    /* About Section Decor */
    .italic-tagline {
      font-style: italic;
      color: var(--accent-color);
      position: relative;
      display: inline-block;
    }
    .italic-tagline::after {
      content: "";
      display: block;
      width: 50px;
      height: 2px;
      background: var(--accent-color);
      margin-top: 10px;
    }

    /* Zig-Zag Adjustments */
    .product-row { min-height: 500px; }
    .product-img { height: 100%; object-fit: cover; width: 100%; min-height: 400px; }
    
    /* Global Standards Cards */
    .cert-card {
      border: 1px solid #eee;
      padding: 30px;
      border-radius: 12px;
      transition: all 0.3s ease;
      background: white;
    }
    .cert-card:hover { 
      transform: translateY(-10px); 
      box-shadow: 0 15px 30px rgba(0,0,0,0.08); 
      border-color: var(--accent-color);
    }

    footer { background: #11de6d; min-height: 350px; }
	footer .text-secondary { color:#fff !important;}

    @media (max-width: 768px) {
      .hero-caption h1 { font-size: 2.8rem; }
      .hero-img { height: 85vh; }
      .product-row { text-align: center; }
    }
	
.services-section {
  width: 100%;
  padding: 80px 40px;
  background: #f8f9fa;
}

.services-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-title h2 {
  font-weight: 800;
}

.services-row {
  margin: 0;
}

/* ===============================
   SERVICE CARD
================================ */
.service-box {
  position: relative;
  height: 480px;
  overflow: hidden;
  padding: 0;
}

.service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

/* DARK OVERLAY */
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
  transition: background 0.5s ease;
}

/* CONTENT */
.service-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
  color: #fff;
  transition: transform 0.6s ease;
}

.service-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* READ MORE */
.service-content a {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* HOVER EFFECTS */
.service-box:hover img {
  transform: scale(1.2);
}

.service-box:hover .service-content p,
.service-box:hover .service-content a {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .service-box {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 60px 15px;
  }
  .service-content {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }
}


/* SECTION */
.sectors-section {
  background: #fff;
  padding: 70px 0;
}

.sectors-title {
  font-size: 42px;
  font-weight: 800;
}

.title-line {
  display: block;
  width: 70px;
  height: 3px;
  background: #198754;
  margin: 12px auto 0;
}

/* CARD */
.sector-card {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

/* DARK OVERLAY */
.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

/* TEXT OVERLAY */
.sector-overlay {
  position: absolute;
  bottom: 40px;
  left: 30px;
  right: 30px;
  color: #fff;
  z-index: 2;
}

.sector-overlay h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sector-overlay p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;
}

/* HOVER EFFECT */
.sector-card:hover img {
  transform: scale(1.15);
}

.sector-card:hover .sector-overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 767px) {
  .sector-card {
    height: 340px;
  }
}

.hero {
background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url('../images/07.jpg') center/cover no-repeat;
color: #fff;
padding: 120px 0;
animation: fadeDown 1.2s ease-out;
}


/* Cards */
.value-card {
border: none;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
height: 100%;
transition: all 0.4s ease;
}
.value-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* Image hover */
img {
transition: transform 0.6s ease, box-shadow 0.6s ease;
}
img:hover {
transform: scale(1.04);
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}


/* List animation */
.list-group-item {
transition: background-color 0.3s ease, padding-left 0.3s ease;
}
.list-group-item:hover {
background-color: #f1f8ff;
padding-left: 25px;
}


/* Keyframes */
@keyframes fadeDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}


  .service-section {
      padding: 60px 0;
      overflow: hidden;
    }

    /* Default hidden state */
    .service-section .col-md-6 img,
    .service-section .col-md-6.text-content {
      opacity: 0;
      transition: all 1s ease-out;
    }

    /* Slide directions */
    .service-section.left img {
      transform: translateX(-50px);
    }
    .service-section.left .text-content {
      transform: translateX(50px);
      transition-delay: 0.3s; /* Text delayed after image */
    }

    .service-section.right img {
      transform: translateX(50px);
    }
    .service-section.right .text-content {
      transform: translateX(-50px);
      transition-delay: 0.3s; /* Text delayed after image */
    }

    /* Visible state */
    .service-section.visible img,
    .service-section.visible .text-content {
      opacity: 1;
      transform: translateX(0);
    }

    .service-section h2 {
      margin-bottom: 20px;
    }

    .service-section ul {
      padding-left: 20px;
    }

    @media (max-width: 767px) {
      .service-section .row {
        flex-direction: column !important;
      }
      .service-section img,
      .service-section .text-content {
        transform: translateX(0) !important;
        opacity: 1 !important;
        transition-delay: 0 !important;
        margin-bottom: 20px;
      }
    }
	
	
	 /* Slide-in animation */
    .slide-in-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 1s ease;
    }
    .slide-in-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 1s ease;
    }
    .visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* Responsive map */
    .map-responsive {
      overflow:hidden;
      padding-bottom:56.25%;
      position:relative;
      height:0;
      border-radius: 0.5rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .map-responsive iframe {
      left:0;
      top:0;
      height:100%;
      width:100%;
      position:absolute;
      border:0;
      border-radius: 0.5rem;
    }

    /* Icon styling */
    .contact-info p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    .contact-info i {
      color: #0d6efd;
      margin-right: 0.5rem;
      font-size: 1.2rem;
    }

    /* Rounded background for form */
    .contact-form-wrapper {
      background: #fff;
      padding: 30px;
      border-radius: 1rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .btn-primary i {
      margin-right: 0.5rem;
    }