html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;  
}

.hero,
.services-preview,
.final-cta,
main>section {
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

main>section.visible,
.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 50px;
}

.flexColumns {
  display: flex;
 flex-direction: column;
  gap: 1rem;
  margin-bottom: 50px;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  margin: 5px 0;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Highlight section on scroll */
section:target {
  outline: 3px dashed #f5612a;
  outline-offset: 10px;
}


section:not(.full-length) {
  padding: 4rem 1rem;
  max-width: 1200px; 
  margin: 0 auto;  
  margin-bottom: 200px;
  background-color: var(--color-bg-main);
}

section .full-length {
  max-width: 100vw; 
}
section.hero {
  background-size: cover;  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;  
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;  
  display: flex;
  flex-direction: column;
  letter-spacing: 2px;
}

.hero-overlay {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 5rem;  
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 12px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: 2px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: white;
}


.hero img {
  border-radius: 12px;
  
}
section h2 {
  font-size: xxx-large;
  font-weight: 600;
  margin-bottom: 20px;  
}

section h3 {
  font-size: 1.4rem;
  margin-top: 1.2rem;
  color: #333;
}

section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

section ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

section ul li {
  margin-bottom: 0.5rem;
  color: #555;
  list-style: none;
}

/* Final Call to Action */
section.final-cta {
  background-color: var(--color-secondary);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 10px;
  margin-top: 3rem;
}
section.final-cta h2 {
  color: #fff;
}

section.final-cta p {
  font-size: large;
  padding: 0.1rem 2rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
}

section.final-cta .cta-buttons {
  margin-top: 2rem;
}

section.final-cta .cta-buttons a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.1rem 2rem;
  background-color: white;
  color: #f5612a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

section.final-cta .cta-buttons a:hover {
  background-color: #e6e6e6;
}

/* Unique Hero Backgrounds */
.hero-home {
  background-image: url(images/hero.jpg);
}

.hero-about {
  background-image: url(images/Aboutus.jpg);
}

.hero-careers {
  background-image: url(images/careersBg.jpg);
}

.hero-contact {
  background-image: url(images/contactBg.jpg);
  opacity: 0.5;
  background-color: firebrick;
}

.hero-industries {
  background-image: url(images/industriesBg.jpg);
}

.hero-services {
  background-image: url(images/servicesBg.jpg);
}

.hero-products {
  background-image: url(images/hero.jpg);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-main);
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 24px;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: #0a0a0a;
}

a {
  color: #f5612a;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
  color: #ffffff;
  
  /* background: #452a11;     */
}

.cta-buttons a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}


.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

button,
.cta-buttons a {
  transition: transform 0.2s ease;
}

button:hover,
.cta-buttons a:hover {
  transform: translateY(-2px);
}

/* Scroll Animation Integration (AOS or similar) */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-in"] {
  transform: scale(0.98);
}

.callout-section {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}

.callout-card {
  max-width: 700px;
  background-color: #f1f6fc;
  border-left: 6px solid #f5612a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}


.callout-card a {
  color: #f5612a;
  font-weight: 500;
}

.highlight-bg {
  background: linear-gradient(to right, #eef3fc, #f6fafd);
  padding: 3rem 1rem;
}

.highlight-card {
  background: #ffffff;
  border: 1px solid #dde3f0;
  border-left: 5px solid #f5612a;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.icon-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.role-card ul {
  padding-left: 1.2rem;
}

.callout-card.alt-theme {
  background-color: #fce3d9;
  border-left: 6px solid #f5612a;
}

.internship-section {
  background: #fdfdfd;
  padding: 2rem;
  border-top: 1px solid #eee;
  text-align: center;
}

.logo img:hover,
a.logo img {
  background: transparent
}
.promo-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;  
  margin: 40px auto;  
  max-width: 1200px;
  background-color: #fff;
}

.promo-section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 40px 60px;
  margin:20px auto;  
  max-width: 1200px;
  background-color: #fff;
}

.promo-section .content {
  max-width: 60%;
}


.promo-section p {
  font-size: large;
  color: #555;
  margin-bottom: 25px;
}

 .btn, .btn.primary {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--color-secondary);
  border-radius: 9999px;
  text-decoration: none;
  color: var(--color-secondary);
  background: white;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn.filled {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--color-secondary);
  border-radius: 9999px;
  text-decoration: none;
  background: #f5612a;
  color: white;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #f5612a;
  color: #fff;
}

.btn.filled:hover {
  background-color: #fff;
  color: #f5612a;
}



.promo-section .image-container {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}

.promo-section .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-btn:hover {
  color: #000;
}

.nav-btn span {
  font-size: 0.8rem;
  margin-top: 5px;
}

.industries-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}


.industries-section .industry-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.industries-section .card {
  width: 275px;
  height: 260px;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 20px;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.02);
}

.industries-section .card img {
  max-height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

.industries-section .card p {
  margin: 0;
  color: #555;
  font-size: large;
}

.industries-section .explore-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #a8774f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.industries-section .explore-btn:hover {
  background-color: #f5612a;
}

.why-section {
  max-width: 1200px;
  margin: 250px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.why-section__container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.why-section__image img {
  max-width: 400px;
  height: auto;
  border-radius: 20px;
}

.why-section__content {
  flex: 1;
  min-width: 300px;
}


.why-section__list {
  all: unset;
  display: block;
  margin: 0 0 30px;
  padding: 0;
}

.why-section__list li {
  all: unset;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: large;
  color: #333;
  text-align: left;
}
.why-section__btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #000;
  border-radius: 9999px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.why-section__btn:hover {
  background-color: #000;
  color: #fff;
}

/* Sections */
.content-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.content-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.alt-bg {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

/* Global container utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero h1 {
  position: absolute;
  bottom: 20px;
  left: 40px;
  font-size: 3rem;
  color: #fff;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.about-who h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

/* MISSION */
.about-mission {
  background-color: #f8f8f8;
}
.about-mission h2 {
  color: #444;
}
.about-mission p {
  font-weight: 500;
}

/* DIFFERENCE */
.about-difference {
  background-color: #fff;
}
.about-difference ul {
  list-style: none;
  padding-left: 0;
}
.about-difference li {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
.about-difference strong {
  display: block;
  font-weight: bold;
}

/* DELIVERABLES */
.about-deliverables {
  background-color: #f4f4f4;
}
.about-deliverables ul {
  padding-left: 20px;
}
.about-deliverables li {
  margin-bottom: 10px;
}

/* VISION */
.about-vision {
  background-color: #fff;
  text-align: center;
}
.about-vision p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* CTA */
.about-cta {
  background-color: #f5612a;
  color: #fff;
  text-align: center;
}
.about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* Elegant Hero Shared Styles */
.elegant-hero {
  max-width: 1000px;
  margin: auto;
  padding: 4rem 2rem;
  background: rgba(15, 15, 15, 0.94);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #0a0a0a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #444;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero-text {
  font-size: 1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.vision-mission {
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  padding: 3rem 1rem;
}

.vision-mission__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-mission__block {
  flex: 1 1 45%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.vision-mission__block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
}

.vision-mission__block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.category-display {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-display__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.category-display.left .category-display__image {
  order: 0;
}
.category-display.right .category-display__image {
  order: 1;
}
.category-display.right .category-display__content {
  order: 0;
}

.category-display__image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.category-display__content {
  flex: 1;
  min-width: 280px;
}

.category-display h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.category-display .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: center;
}

.category-display ul {
  padding-left: 1.2rem;
  list-style: circle;
  list-style-type: disc;
}

.category-display ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #333;
  text-align: left;
  list-style: circle;
  list-style-type: disc;
}

.singleCategoryIndustry {
  background-color: #f3f8f0;
  padding: 2rem;
}
.single-category-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
  gap: 2rem;
}
.single-category-wrapper .image img {
  max-width: 100%;
  border-radius: 8px;
}
.single-category-wrapper .content {
  max-width: 600px;
}

.single-category-wrapper .content p{
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.single-category-wrapper .badge {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #555;
}
.single-category-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.single-category-wrapper p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.single-category-wrapper .btn {
  padding: 0.7rem 1.5rem;
  background: white;
  border: 1px solid #000;
  border-radius: 999px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: inline-block;
  transition: background 0.3s;
}
.single-category-wrapper .btn:hover {
  background: #000;
  color: white;
}

.twoCategoryIndustry {
  padding: 2rem;
}
.two-category-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.category-card {
  background-color: #f4f4f4;
  border-radius: 20px;
  padding: 2rem;
  flex: 1;
  min-width: 280px;
  text-align: center;
}
.card-one {
  background-color: #ecf4f8;
}
.card-two {
  background-color: #f7f3f1;
}
.category-card .badge {
  font-weight: 500;
  color: #555;
  display: block;
  margin-bottom: 0.5rem;
}
.category-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.category-card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.category-card .btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid #000;
  border-radius: 999px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}
.category-card .btn:hover {
  background-color: #000;
  color: #fff;
}
.category-card img {
  max-width: 80%;
  margin-top: 1rem;
  border-radius: 12px;
}
.contact-details {
  background: #f8fafd;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #0a0a0a;
}

.contact-container {
  max-width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  color: #f5612a;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-item a {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: underline;
}

.contact-item a:hover {
  color: #f5612a;
}

@media (max-width: 768px) {
  .two-category-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .single-category-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .category-display__container {
    flex-direction: column;
    text-align: center;
  }

  .category-display__image img {
    max-width: 100%;
  }

  .category-display ul {
    text-align: left;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .vision-mission__container {
    flex-direction: column;
  }

  .vision-mission__block {
    flex: 1 1 100%;
  }
}

/* Mobile-Specific Styling */
@media (max-width: 768px) {
  .compact-hero {
    padding: 3rem 1.5rem;
    border-radius: 14px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

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

  .hero-cta a {
    padding: 10px 20px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 260px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
    left: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn.filled {
    width: 100%;
    max-width: 260px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .promo-section-container {
    flex-direction: column;
    align-items: center;
  }
  .why-section__container {
    flex-direction: column;
    align-items: center;
  }

  .why-section__image,
  .why-section__content {
    width: 100%;
  }

  .why-section__btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
  }
}

/* Scoped Responsive */
@media (max-width: 768px) {
  .industries-section .card {
    width: 100%;
    max-width: 300px;
  }

  .industries-section .explore-btn {
    width: 100%;
    max-width: 240px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {


  .nav-btn {
    flex-direction: row;
    justify-content: center;
    margin: 10px 0;
  }
}
@media (max-width: 600px) {
  .cta-buttons a {
    display: block;
    margin: 0.5rem auto;
  }
}

/* Responsive tweaks if needed */
@media (max-width: 768px) {
  .hero {
    padding: 1rem;
  }
}
