



/* New ....................................................................... */

:root {
  --primary-color: #E6392F; /* Main accent color */
  --primary-dark: #8b1c16;  /* Slightly darker variant */
  --text-light: #f7f7f7;
  --bg-dark: #000;
  --bg-light: #fff;
}

/* Global */
body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  z-index: 1000;
}

.navbar-nav .nav-link {
  position: relative;
  color: #111;
  font-weight: 400; 
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}

.logo-img {
  height: 64px;
  width: auto;
  transition: transform 0.3s ease;
  transform: scale(1.2);
}

.navbar-brand {
  font-size: 1.3rem;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),  /* dark overlay */
    url('images/bg.webp') center center/cover no-repeat;  /* background image */
  color: #fff;
  padding: 0 15px;
}


.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content p {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: #ccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-discuss {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(230, 57, 47, 0.3);
  text-decoration: none;
}

.btn-discuss:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 47, 0.5);
  color: #fff;
}

/* About & Stats */
.about-stats h3 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

/* Outline Buttons */
.btn-outline-team {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn-outline-team:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(230, 57, 47, 0.4);
}

/* Consultation Section */
.consultation-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
}

.consultation-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.consultation-section .btn-light {
  color: var(--primary-color);
  background-color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.consultation-section .btn-light:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer-links a:hover {
  color: var(--primary-color);
}

.btn-learn-more {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
}

.btn-learn-more:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  box-shadow: 0 6px 15px rgba(230, 57, 47, 0.5);
}

/* Scroll */
html {
  scroll-behavior: smooth;
}



/* About Us Section */
.about-section {
  background-color: #000;
  color: #fff;
  padding: 100px 0;
}

/* Curved Image Shape */
.shape-curve {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.shape-curve img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
  transition: transform 0.5s ease;
  opacity: 0.95;
}
.shape-curve:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.about-stats div {
  text-align: center;
}
.about-stats h3 {
  font-size: 2rem;
  color: #E6392F;
  font-weight: 700;
}
.about-stats p {
  color: #aaa;
  margin-top: 5px;
  font-size: 0.95rem;
}

/* Buttons */
.btn-learn-more {
  background: linear-gradient(135deg, #E6392F, #c92d25);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.4s ease;
  text-transform: uppercase;
}
.btn-learn-more:hover {
  background: linear-gradient(135deg, #c92d25, #E6392F);
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 6px 15px rgba(230, 57, 47, 0.5);
}
.btn-outline-team {
  border: 2px solid #E6392F;
  color: #E6392F;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.btn-outline-team:hover {
  background: #E6392F;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(230, 57, 47, 0.4);
}

/* Advanced Scroll Animation */
.service-row {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.service-row.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service-row.left {
  transform: translateX(-80px) scale(0.95);
}
.service-row.right {
  transform: translateX(80px) scale(0.95);
}
.service-row.visible.left,
.service-row.visible.right {
  transform: translateX(0) scale(1);
}


.service-img-wrapper {
  height: 220px;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ISO Section (Dark Theme) */
.iso-section-dark {
  background: linear-gradient(135deg, #121212, #1e1e1e);
}

.iso-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iso-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.25);
}

.iso-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iso-logo {
  width: 100px;
  height: auto;
  filter: brightness(0.95);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.iso-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}



/* =============================== */
/* 🔹 OUR CLIENTS SECTION STYLES 🔹 */
/* =============================== */

.clients-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

/* Section Title & Subtitle */
.clients-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color, #111);
}

.clients-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

/* Flex layout for client cards (equal width & centered) */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Each Client Card */
.client-card {
  width: 220px; /* Equal fixed width */
  flex: 0 0 220px;
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Logo Styling */
.client-logo {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-card:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Client Name & Tagline */
.client-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.client-tagline {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* Hover Animation Enhancements */
.client-card:hover .client-name {
  color: var(--primary-dark);
}

/* Check All Clients Button */
.clients-btn-wrapper {
  margin-top: 60px;
}

.btn-check-all {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 47, 0.3);
  text-transform: uppercase;
}

.btn-check-all:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 47, 0.5);
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .clients-section .section-title {
    font-size: 2.2rem;
  }

  .clients-grid {
    gap: 30px;
  }

  .client-card {
    width: 180px;
    flex: 0 0 180px;
    padding: 25px 15px;
  }

  .client-logo {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .client-card {
    width: 150px;
    flex: 0 0 150px;
    padding: 20px 10px;
  }

  .client-logo {
    width: 70px;
  }

  .client-name {
    font-size: 1rem;
  }

  .client-tagline {
    font-size: 0.85rem;
  }

  .btn-check-all {
    font-size: 0.9rem;
    padding: 0.8rem 1.8rem;
  }
}


/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
}

.contact-section h2 {
  color: #E6392F;
}

/* Contact Info List */
.contact-info-list {
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.4;
}

.contact-info-list i {
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
  margin-top: 3px;
}

.contact-info-list span {
  flex: 1;
  font-size: 0.95rem;
}

/* Form Styles */
.contact-section .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .form-control:focus {
  border-color: #E6392F;
  box-shadow: 0 0 6px rgba(230, 57, 47, 0.3);
}

/* Button Styling */
.contact-section button.btn-danger {
  background-color: #E6392F;
  border: none;
  transition: all 0.3s ease;
}

.contact-section button.btn-danger:hover {
  background-color: #c92d25;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(230, 57, 47, 0.3);
}


/* ======== Our Team Section ======== */
.team-section {
  padding: 100px 0;
  background: #f9fafc;
}

.team-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.team-section .section-subtitle {
  color: #666;
  margin-bottom: 60px;
  font-size: 1rem;
}

/* Grid layout for team members */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Team card style */
.team-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  width: 240px;
  flex: 0 0 240px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Team photo */
.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Name and role */
.team-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color:#2d2d2d;
}

.team-role {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Social icons */
.team-socials a {
  color: #333;
  font-size: 1.2rem;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.team-socials a:hover {
  color: #6c63ff;
}

/* Responsive */
@media (max-width: 768px) {
  .team-card {
    width: 180px;
    flex: 0 0 180px;
    padding: 20px 15px;
  }

  .team-photo {
    width: 90px;
    height: 90px;
  }
}


/* ========================= */
/* 🔹 OUR TEAM SECTION 🔹 */
/* ========================= */

/* TEAM SECTION - Stylish Background Image Cards */
.team-card {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.team-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.team-card:hover .overlay {
  background: rgba(0, 0, 0, 0.25);
}

.team-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  text-align: left;
  transition: transform 0.4s ease-in-out;
}

.team-card:hover .team-content {
  transform: translateY(-10px);
}

.team-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  color:#fff
}

.team-role {
  font-weight: 500;
  margin-bottom: 10px;
  color:#e8e1e1
}

.team-bio {
  font-size: 0.9rem;
  color: #f1f1f1;
  line-height: 1.4;
  margin-bottom: 15px;
}

.team-social a {
  color: #fff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.team-social a:hover {
  color: #ff4d5a;
  transform: scale(1.15);
}

/* Hover brightens card */
.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .team-card {
    height: 360px;
  }

  .team-content {
    padding: 20px;
  }

  .team-name {
    font-size: 1.2rem;
  }
}

