/* Reset default styles */
@font-face {
  font-family: 'arya';
  src: url('./assets/fonts/Arya/Arya-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'arya';
  src: url('./assets/fonts/Arya/Arya-Bold.ttf');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand Primary and Secondary Colors */
  --primary: #f48220;
  /* Bright Red – Now primary for headings, buttons, emphasis */
  --secondary: #5f0f40;
  /* Deep Purple – Now used for accents or secondary highlights */
  --accent: #f48120;
  /* Orange – For calls-to-action, icons, or UI elements */
  --highlight: #ffcb04;
  /* Yellow – Use sparingly for alerts or highlights */

  /* Neutral & Utility Colors */
  --para: #666666;
  --text-color: #5f0f40;
  /* Dark Purple – Strong body text color for contrast */
  --muted-text: #5f6363;
  /* Cool Gray – For secondary or less prominent text */
  --background: #ffffff;
  /* Standard background */
  --gradient-brand: linear-gradient(90deg, rgba(255, 203, 4, 1) 0%, rgba(249, 166, 18, 1) 25%, rgba(237, 25, 58, 1) 75%, rgba(95, 15, 64, 1) 100%);

  /* Semantic Aliases */
  --error: #ed193a;
  /* Matches primary, used for error messages */
  --warning: #ffcb04;
  /* Yellow – Warning indicators */
  --info: #f48120;
  /* Orange – Informational UI elements */
  --disabled: #5f6363;
  /* Gray – Disabled text or UI elements */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  /* position: relative; */
      height: 100%;
}



/* Base navbar styles */
.navbar {
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(237, 221, 83, 0) 100%); */
  background: #fff;
  transition: top 0.3s ease, background 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid #cdcdcd; 
}

/* Transparent (top of page) */
.navbar.transparent {
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(237, 221, 83, 0) 100%); */
  background-color: #fff !important;
}

.navbar.transparent .nav-link,
.navbar.transparent .navbar-brand {
  color: #000 !important;
}


/* Solid background (on scroll up) */
.navbar.solid {
  background: #fff !important; 
}

.navbar.solid .nav-link,
.navbar.solid .navbar-brand {
  color: #000 !important;
}

/* Hidden on scroll down */
.navbar.hidden {
  top: -140px;
}

/* Nav item spacing */
.nav-item {
  margin-right: 15px;
}

/* Hover and active styles */
.nav-link:hover {
  font-weight: 500;
}

.nav-link.active {
  font-weight: 600;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-slide video {
  display: block;
  width: 100%;
}

.navbar-nav-left {
  display: flex;
}

.navbar-nav-right {
  display: flex;
}

/* Target mobile screens only (up to 767px) */
 @media (max-width: 767px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem; /* optional spacing */
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0; /* removes default padding */
    margin: 0;  /* removes extra margin */
  }

  .navbar-brand img {
    max-height: 50px; /* control logo height */
    height: auto;
    width: auto;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    border: none;
    background: transparent;
    box-shadow: none;
    outline: none;
  }

  .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}



@media(max-width : 991px) {
  .navbar-brand img {
    width: 60% !important;
  }
}

.mega-menu {
  position: absolute;
  width: 100%;
  left: 0;
  background: #fff;
  padding: 3rem;
  display: none;
  z-index: 999;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mega-menu h4 {
  color: #f48220;
  margin-bottom: 15px;
}

.mega-menu ul {
  list-style: none;
  padding: 0;
}

.mega-menu li a {
  color: #333;
  text-decoration: none;
  padding: 5px 0;
  display: block;
  transition: color 0.3s;
}

.mega-menu li a:hover {
  color: #f48220;
}

.has-mega-menu:hover .mega-menu {
  display: block;
}

@media (max-width: 991px) {
  .mega-menu {
    position: static;
    padding: 0;
    background: transparent;
  }

  .mega-menu-content {
    display: block;
  }

  .mega-menu-column {
    margin-bottom: 10px;
  }

  .mega-menu h4 {
    cursor: pointer;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .mega-menu h4:after {
    content: '+';
    position: absolute;
    right: 15px;
  }

  .mega-menu h4.active:after {
    content: '-';
  }

  .mega-menu ul {
    display: none;
    padding: 10px;
  }

  .mega-menu ul.active {
    display: block;
  }

  .has-mega-menu:hover .mega-menu {
    display: none;
  }

  .has-mega-menu .mega-menu.show {
    display: block;
  }
}

.swiper-slide {
  position: relative;
}

.swiper-slide .swiper-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.swiper-content h1 {
  font-size: 5rem;
  font-weight: 600;
}


.hero-button {
  width: fit-content;
  display: flex;
  padding: 0.8em 2.1em;
  gap: 0.4rem;
  border: none;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
  /* background: linear-gradient(15deg,
      #880088,
      #aa2068,
      #cc3f47,
      #de6f3d,
      #f09f33,
      #de6f3d,
      #cc3f47,
      #aa2068,
      #880088) no-repeat; */
      background: #FE6A00;
/* background: linear-gradient(0deg,rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%); */
background: linear-gradient(180deg, rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%) no-repeat;
  background-size: 300%;
  background-position: left center;
  transition: background 0.3s ease;
  color: #fff;
}

.hero-button:hover {
  background-size: 320%;
  background-position: right center;
  background: linear-gradient(15deg,
      #880088,
      #aa2068,
      #cc3f47,
      #de6f3d,
      #f09f33,
      #de6f3d,
      #cc3f47,
      #aa2068,
      #880088) no-repeat;
}

.hero-button:hover svg {
  fill: #fff;
}

.hero-button svg {
  width: 23px;
  fill: #f09f33;
  transition: 0.3s ease;
}

.swiper-content h1 {
  font-family: 'arya', sans-serif;

}

.swiper-content p {
  font-family: 'Arial', sans-serif;
}

.section-title-footer {
  color: var(--primary);
  font-weight: 600;
  font-size: 25px;
  margin-left: 20px
}

.foreword h2 {
  font-family: 'arya', sans-serif;
  font-size: 2.3rem;
  line-height: 1.2;
}

.foreword p {
  color: var(--para);
}

.nameandposition {
  border: 4px solid var(--primary);
  border-top: none;
  border-right: none;
  border-bottom: none;
  padding-left: 1rem;
}

.services {
  background-color: #F7F8FC;
  padding-block: 3rem;
}

.services h2 {
  font-family: 'arya', sans-serif;
  font-size: 3rem;
}

.services p {
  color: var(--para);
}

.service-box {
  background-color: #fff;
  border-top: 5px solid var(--info);
  border-radius: 20px;
  padding: 1rem;
  transition: 0.5s all ease;
}
.service-box:hover{
  scale: 1.03;
  border-top: 7px solid var(--info);
}

.service-box a {
  text-decoration: none;
  color: var(--primary);
}

.service-box .fa-arrow-right {
  color: var(--primary);
}

@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 60s slides infinite linear;
}



.logo_items img {
  width: 200px;
  height: 100px;
  margin-inline: 30px;
  scale: 0.8;
}

.contact-footer {
  /* background: #FFCB04; */
/* background: linear-gradient(265deg, rgba(255, 203, 4, 1) 0%, rgba(244, 129, 32, 1) 25%, rgba(237, 25, 58, 1) 75%, rgba(95, 15, 64, 1) 100%); */
/* background: linear-gradient(90deg, #d4145a, #fbb03b, #fcee21); */
/* background: linear-gradient(90deg, #ff6a00 0%, #e52d27 30%,  #b31217 60%, #fbb03b 85%, #fff200 100%);
    color: white; */
  
/* background: linear-gradient(0deg,rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%) */
background: #FE6A00;
/* background: linear-gradient(0deg,rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%); */
background: linear-gradient(180deg, rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%);


}

.contact-footer .mail-box {
  color: #fff;
}

.email-form input {
  padding: 20px;
  width: 340px;
  outline: none;
  border: none;
}

.email-form button {
  margin-left: 5px;
  padding: 20px 30px;
  background-color: #fff;
  border: none;
  outline: none;
  color: var(--primary);
  font-weight: 600;
}

.line {
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.contact-box {
  color: #fff;
}

.contact-box svg {
  color: #fff !important;
  font-size: 25px;
}

.contact-box a {
  color: #fff !important;
}

.main-footer .quick-links a {
  color: #000;
}

.copyright {
  /* background: #FFCB04; */
/* background: linear-gradient(265deg, rgba(255, 203, 4, 1) 0%, rgba(244, 129, 32, 1) 25%, rgba(237, 25, 58, 1) 75%, rgba(95, 15, 64, 1) 100%); */
/* background: linear-gradient(90deg, #d4145a, #fbb03b, #fcee21); */
/* background: linear-gradient(90deg, #b31217 0%, #e52d27 30%, #ff6a00 60%, #fbb03b 85%, #fff200 100%); */

background: #FE6A00;
/* background: linear-gradient(0deg,rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%); */
background: linear-gradient(180deg, rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%);

   

}

.copyright p {
  color: #fff;
}

.copyright .social-links a {
  color: #fff;
}
.newsletter-btn{
  background: var(--primary);
  color: #fff;
}
.newsletter-btn:hover{
  background: var(--accent);
  color: #fff;
}

/* /////////////////////////////////////////////////////////// */


@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.photos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}


.photo_items {
  display: inline-block;
  animation: 60s slides infinite linear;
}



.photo_items img {
  width: 300px;
  height: 410px;
  margin-inline: 10px;
  border-radius: 20px;
}

.hero-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slide-image {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
}

.swiper-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.swiper-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .swiper-content h1 {
      font-size: 2rem;
  }

  .swiper-content p {
      font-size: 1rem;
  }
}

.employee-test{
  background-color: #F7F8FC;
}
.test-card{
  border-radius: 20px;
  transition: 0.3s all ease-in;
  border: 5px solid var(--info);
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.test-card:hover{
  scale: 1.03;
  box-shadow: #eaecf8 0px 0px 20px;
}


.quote-text {
  position: relative;
  display: inline-block;
  line-height: 1.4; /* Match your design */
}

.quote-text::before,
.quote-text::after {
  position: absolute;
  color: red;
  font-size: 2em;
  font-weight: bold;
  font-family: serif;
  line-height: 1;
}

.quote-text::before {
  content: '“';
  left: -50px; /* Adjust for exact alignment */
  top: 0;
}

.quote-text::after {
  content: '”';
  right: -20px; /* Adjust as needed */
  bottom: -40px;
}

/* //////////////////////////// careers page sections starts */

.careers-hero {
  background: linear-gradient(90deg, #f8fafc 60%, #e3e9f7 100%);
  padding: 60px 0 40px 0;
  text-align: center;
}

.careers-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a237e;
}

.careers-hero p {
  font-size: 1.2rem;
  color: #374151;
  margin-top: 15px;
}

.openings-section {
  padding: 40px 0 30px 0;
}

.openings-section h2 {
  /* font-size: 2rem; */
  font-weight: 600;
  font-family: arya;
  margin-bottom: 30px;
}

.job-card {
  border: 1px solid #e3e9f7;
  border-radius: 10px;
  padding: 24px 20px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.04);
  transition: 0.2s all ease-in;
}

.job-card:hover {
  box-shadow: 0 4px 16px rgba(26, 35, 126, 0.10);
  border-top : 4px solid var(--accent)
}

.job-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #263159;
}

.job-meta {
  font-size: 0.98rem;
  color: #607d8b;
  margin-bottom: 10px;
}

.job-desc {
  color: #374151;
  margin-bottom: 12px;
}

.apply-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.2s;
}

.apply-btn:hover {
  background: var(--accent);
  color: #fff;
}



@media (max-width: 767px) {
  .careers-hero h1 {
      font-size: 2rem;
  }

  .openings-section h2,
  .feedback-section h2 {
      font-size: 1.4rem;
  }

  .job-card,
  .feedback-card {
      padding: 18px 10px;
  }
} 

.careers-hero h1{
  color: var(--primary);
  font-family: 'arya', sans-serif;
}
.careers-hero p{
  color: var(--para);
}


/* /////////////////////////////testimonial section  */

.testimonial-section {
  padding: 60px 0;
}

.test-box .quotes h2{
  font-size: 5rem;
}

.testimonial-section .img-container{
  overflow: hidden;
  border-radius: 20px;
  scale: 0.9;
}
.testimonial-section .img-container img{
  width: 100%;
  object-fit: cover;
  transition: 0.5s all ease;
}
.testimonial-section .img-container img:hover{
  scale: 1.04;
}
.test-content{
  background-color: #F7F8FC;
  border-radius: 20px;
  /* box-shadow: #d7d7d7 0px 0px 20px; */
  border-left: 4px solid var(--accent);
  border-right: 4px solid var(--accent);
}

/* ////////////////bento grid */

.bento-grid .image-cover{
  width: 100%;
  /* background-color: red; */
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s all ease;
}
.bento-grid .image-cover:hover{
  scale: 1.02;
}
.bento-grid .image-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all ease;
}
.bento-grid .image-cover img:hover{
  scale: 1.04;
}
.raymond-group .img-container img{
  width: 100%;
}

.whoweare{
  background-color: #F7F8FC;
}
.whoweare .card{
  background-color: #fff;
    border: 5px solid var(--info);
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 20px;
    padding: 1rem;
    transition: 0.5s all ease;
}
.whoweare .card:hover{
  scale: 1.03;
}
.leadership .img-container img{
  width: 80%;
  transition: 0.5s all ease;
}
.leadership .leader-content h3{
  color: var(--primary);
}
.leadership .leader-content h6{
  color: var(--para)
}
.leadership .leader-content{
  overflow: hidden;
}
.leadership .img-container img:hover{
  scale: 1.03;
}
.global-presence .img-container img{
  width: 70%;
}

.sus-goals .img-container img{
  width: 90%;
}
.reportsanddata .header-text h2{
  font-size: 3rem;
  color: var(--primary);
  text-transform: uppercase;
}
.reportsanddata .data-numbers h2{
  font-size: 2.5rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
}
.data-numbers h2{
  font-size: 2.5rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
}
.reportsanddata .data-numbers .num-data{
  border-left: 4px solid var(--accent);
  border-radius: 5px;
}

.data-numbers .num-data{
  border-left: 4px solid var(--accent);
  border-radius: 5px;
}
.csr .csr-text h2{
  color: var(--primary);
}
.num-data{
  transition: 0.5s all ease;
}
.num-data:hover{
  scale: 1.03;
}



.business-verticals .card p{
  color: var(--para);
  font-size: 0.8rem;
}
.vertical-bg{
  background-color: #fff;
  border-radius: 20px;
  border-top: 4px solid var(--accent);
  box-shadow: #d7d7d7 0px 0px 20px;
  padding : 3rem !important;
}
.vertical-bg .card{
  border: none;
  outline: none;
}
.video-section{
  position: relative;
  z-index: 1;
}
.business-verticals {
  position: relative;
  z-index: 10;
  margin-top: -50px; 
}
.business-verticals .card-body button{
  outline: none;
  border:none;
  border-bottom : 2px solid var(--primary);
  background-color: transparent;
  padding : 5px;
  transition: 0.5s all ease;
}
.business-verticals .card-body button:hover{
  border-bottom : 2px solid var(--accent);

}
.event-card img{
  border-radius: 20px;
  width: 100%;
}
.event-card{
  background-color: #fff;
  box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.24);
  border-radius: 20px;
  padding: 2px;
}
.event-card p{
  color: var(--para);
  font-size: 14px;
}
.event-card a{
  text-decoration: none;
}

.past-events .past-gallary img{
  width: 100%;
  border-radius: 10px;
}
.past-events .event-title h2{
  color: var(--primary);
}
.past-events .event-title p{
  color: var(--para);
}


/* bento grid layout  */

.img-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 1rem;
  padding: 1rem;
}

.img-box {
  background-color: #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all ease;
}
.img-box img:hover{
  scale: 1.03;
}

/* Positioning specific boxes to mimic the layout in your image */

.box1 {
  grid-column: span 2;
  grid-row: span 2;
}

.box2 {
  grid-column: span 1;
}

.box3 {
  grid-column: span 1;
}

.box4 {
  grid-column: span 2;
}

.box5 {
  grid-column: span 2;
  grid-row: span 2;
}

.box6 {
  grid-column: span 2;
}

.box7 {
  grid-column: span 2;
  grid-row: span 1;
}

.box8 {
  grid-column: span 2;
}



/* Responsive tweaks */
@media (max-width: 1024px) {
  .img-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .img-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .img-box {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }
}

.image-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.image-popup img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px #000;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 100000;
}
.explore-more{
  background-color: #F7F8FC;
}
.explore-card{
  background-color: #fff;
  padding: 10px;
  
}

.explore-card img{
  width: 100%;
}
.explore-card a{
  text-decoration: none;
}
.brochure .swiper-slide img{
  border-radius: 20px;
}





.topics-container {
  display: flex;
  justify-content: center;
}

.topic-card {
  width: 400px;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.card-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent);
  color: white;
  padding: 16px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.card-info h3 {
  margin: 0;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-info .subtitle {
  margin-top: 4px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.card-description {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  background-color: white;
  color: #000;
  padding: 16px;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

/* Show overlay on hover */
.topic-card:hover .card-description {
  transform: translateY(0);
  z-index: 2;
}

.topic-card:hover .card-info {
  z-index: 3;
}



/* From Uiverse.io by LightAndy1 */ 
.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 190px;
}

.input {
  font-family: "arial", sans-serif;
  width: 100%;
  height: 45px;
  padding-left: 2.5rem;
  box-shadow: 0 0 0 1.5px #2b2c37, 0 0 25px -17px #000;
  border: none;
  border-radius: 12px;
  background-color: #fff;
  outline: none;
  color: #000;
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: text;
  z-index: 0;
}

.input::placeholder {
  color: #dadada;
}

.input:hover {
  box-shadow: 0 0 0 2.5px #2f303d, 0px 0px 25px -15px #000;
}

.input:active {
  transform: scale(0.95);
}

.input:focus {
  box-shadow: 0 0 0 2.5px #2f303d;
}

.search-icon {
  position: absolute;
  left: 1rem;
  fill: #000;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  z-index: 1;
}

/* facilities grid  */

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Fixed 5 columns */
  gap: 20px;
}

.facilities-grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Fixed 5 columns */
  gap: 20px;
}

.facility-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 400px;
  border-radius: 6px;
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.facility-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  color: white;
  transition: all 0.4s ease;
}

.facility-title {
  font-weight: 600;
  font-size: 16px;
  z-index: 2;
  position: relative;
}

.explore-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.explore-btn::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.facility-card:hover .explore-btn {
  opacity: 1;
  visibility: visible;
}

.explore-btn:hover::after {
  margin-left: 12px;
}


.numbers{
  background-color: #F7F8FC;
}

.numbers .number-card h2{
  font-size: 2.5rem;
  margin-bottom: 0px;
  color: var(--primary);
}
.number-card{
  flex: 1;
  border-right: 2px solid var(--accent);
}
.number-card:nth-child(6){
  border-right: none !important;
}
.number-card img{
  width: 20%;
}
.product-card{
  padding: 10px;
}
.products .product-card h2{
  font-size: 1.5rem;
}

.products .product-card a{
  text-decoration: none;
  font-size: 1.2rem;
}
.products .product-card img{
  width: 100%;
  transition: 0.5s all ease;
}
.products .product-card img:hover{
  scale: 1.03;
}

.sectors-swiper .sector-card{
  border-radius: 20px;
}

.award-card{
  background-color: #fff;
  border-radius: 20px;
  border-top: 5px solid var(--accent);
}
.award-card img{
  width: 60%;
}

.right-form{
   background-color: #F7F8FC;
   border-radius: 20px;
   border-top: 4px solid var(--accent);
   position: relative;
    animation: fadeIn 0.3s ease;
}

.right-form input{
  width: 100%;
  padding:5px 10px;
  border: none;
  outline: none;
  border-bottom: 1px solid #ccc;
  background-color: #F7F8FC;

}
.right-form textarea{
  width: 100%;
  padding:5px 10px;
  border: none;
  outline: none;
  border-bottom: 1px solid #ccc;
  background-color: #F7F8FC;

}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.tab-buttons, .sub-tab-buttons {
  display: flex;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}

.tab-buttons button, .sub-tab-buttons button {
  flex: 1;
  padding: 12px;
  background-color: #F7F8FC;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.tab-buttons button.active,
    .sub-tab-buttons button.active {
  background-color: #fff;
  border-bottom: 3px solid var(--accent);
  font-weight: bold;
}

.tab-content, .sub-tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active, .sub-tab-content.active {
  display: block;
}

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

.legends h5{
  color: var(--primary);
}

.festivals .fest-img-container{
  height: 200px;
  width: 300px;
  overflow: hidden;
  border-radius: 10px;
  margin-inline: 5px;
  margin-block: 10px;
}
.festivals .fest-img-container img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.5s all ease;
}
.festivals .fest-img-container img:hover{
  scale: 1.03;
}


.flex-basis-30 {
  flex: 0 0 calc(33.333% - 1rem); /* 3 in a row with spacing */
  /* margin-bottom: 1rem; */
}

.event-details h3{
  border-left: 4px solid var(--accent);
  padding: 10px 10px; 
  border-radius: 5px;
  background-color: #F7F8FC;
}
/* .event-details{
  background-color: #F7F8FC;
  padding: 10px 10px;
} */

.part-img-container{
  height: 300px;
  width: 300px;
  overflow: hidden;
  border-radius: 10px;
  margin-inline: 5px;
  margin-block: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.part-img-container img{
  object-fit: cover;
  width: 50%;
  transition: 0.5s all ease;
}
.part-img-container img:hover{
  scale: 1.03;
}
.overlay-container {
  position: relative;
}
.custom-overlay-text {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #F7F8FC;
  color: var(--primary);
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 700;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 2;
  max-width: 80%;
  text-align: center;
}
.card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-text {
  flex-grow: 1;
  font-style: italic;
  color: #333;
}

.test-card {
  background-color: #fff;
  border-radius: 16px;
}



.highlight-shimmer {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 5px;
}

.highlight-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(120deg, transparent, rgba(244,115,28,0.5), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}








.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* fade background */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}



/* Animation */
@keyframes fadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
   /* tile2 ------------------------------*/
.capabilities-section {
  padding: 4rem 1rem;
  background: #ffffff;
  text-align: center;
}

.capabilities-title {
  font-size: 28px;
  margin-bottom: 2.5rem;
  color: #111827;
  font-weight: 700;
}

/* Grid Layout */
.flip-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

/* Flip Card Setup */
.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 240px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.flip-front {
  /* background: linear-gradient(145deg, #fef6e4, #fff); */
  background: linear-gradient(90deg, white 0%, white 100%);


  border: 2px solid #f48220;
  z-index: 2;
}

/* .flip-back {
  background: #f48220;
  color: #fff;
  transform: rotateY(180deg);
  z-index: 1;
  font-size: 14px;
  padding: 1.2rem;
  text-align: center;
} */
 .flip-back {
  /* background: url('assets/images/background/tile2.png') no-repeat center center; */
  background-size: cover;
  color: #fff;
  transform: rotateY(180deg);
  z-index: 1;
  font-size: 18px;
  padding: 1.2rem;
  text-align: center;
}


/* Specific backgrounds for each card */
.bg-machining {
  background-image: url('assets/images/background/tile2/1.png');
}
.bg-assembly {
  background-image: url('assets/images/background/tile2/2.png');
}
.bg-ndt {
  background-image: url('assets/images/background/tile2/3.png');
}
.bg-metrology {
  background-image: url('assets/images/background/tile2/4.png');
}
.bg-raw {
  background-image: url('assets/images/background/tile2/5.png');
}



/* Icon Styling */
.icon-box {
  background: linear-gradient(180deg, rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%);
  border-radius: 50%;
  padding: 12px;
  margin-bottom: 12px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-box img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1); /* makes dark icons white */
}


.flip-front h3 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin: 0;
}

/* Responsive Text */
@media (max-width: 768px) {
  .capabilities-title {
    font-size: 22px;
  }

  .flip-inner {
    height: 220px;
  }

  .flip-back {
    font-size: 13px;
  }

  .flip-front h3 {
    font-size: 15px;
  }
}
/* tile3 */
.engineering-grid-section {
  background: #ffffff;
  padding: 3rem 1rem;
}

.section-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.engineering-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.engineering-subtext {
  text-align: center;
  font-size: 16px;
  color: #4b5563;
  max-width: 750px;
  margin: 0 auto 2rem auto;
}

.engineering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px
}

/* Individual Card */
/* .eng-card {
  background: #ffffff;
  background-size: cover;
  border-left: 6px solid #f48220;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.eng-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
} */

.eng-card h3 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.eng-card p {
  font-size: 15px;
  color: #ffffff;
  margin: 0;
}

.eng-card {
  position: relative;
  color: #fff;
  border-left: 6px solid #f48220;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

/* Dark overlay (optional, improves text readability) */
.eng-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  border-radius: 12px;
}

/* Different background images for each card */
.npd-card {
  background-image: url('assets/images/background/5.png');
}

.software-card {
  background-image: url('assets/images/background/6.png');
}

.workflow-card {
  background-image: url('assets/images/background/8.png');
}

.innovation-card {
  background-image: url('assets/images/background/4.png');
}

/* Responsive */
@media (max-width: 768px) {
  .engineering-title {
    font-size: 24px;
  }

  .engineering-subtext {
    font-size: 15px;
  }

  .eng-card h3 {
    font-size: 16px;
  }

  .eng-card p {
    font-size: 14px;
  }
}
/* tile-4 */
.aerospace-section {
  background: #fff;
  padding: 3rem 1rem;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.section-header {
  background: linear-gradient(90deg, #f48220 0%, #e64a19 100%);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.section-header h2 {
  font-size: 26px;
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 15px;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Card Style */
.aero-card {
  background: #ffffff;
  border-radius: 12px;
  border-top: 6px solid #f48220;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.aero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.card-header {
  font-size: 18px;
  font-weight: 600;
  padding: 1rem 1.2rem 0.5rem;
  color: #1f2937;
}

.card-body {
  font-size: 15px;
  color: #4b5563;
  padding: 0 1.2rem 1.2rem;
  line-height: 1.6;
}

.card-body ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style-type: disc;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }

  .card-header {
    font-size: 16px;
  }

  .card-body {
    font-size: 14px;
  }
}
/* tile-1 */
.counter-section {
  background: #ffffff;
  padding: 3.5rem 1rem;
  text-align: center;
}

.tagline h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  max-width: 800px;
  margin: auto;
  line-height: 1.4;
  margin-bottom: 3rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: auto;
}

.counter-card {
  background: #fffaf5;
  border-radius: 14px;
  /* padding: 2rem 1.2rem 2rem; */
  border-bottom: 6px solid #f48220;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  overflow: visible;
  min-height: 100px;
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fe6a00, #f48220);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-wrap img {
  width: 36px;
  height: 36px;
  /* filter: brightness(100%) invert(1); */
}

.count {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 3.2rem;
  margin-bottom: 0.3rem;
}

.counter-card p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}





/* ✅ Different background images */
.card-exports {
  background-image: url('assets/images/background/tile1/1.png');
}

.card-customers {
  background-image: url('assets/images/background/tile1/2.png');
}

.card-countries {
  background-image: url('assets/images/background/tile1/3.png');
}

/* Responsive */
@media (max-width: 768px) {
  .tagline h2 {
    font-size: 24px;
  }

  .count {
    font-size: 28px;
  }

  .counter-card p {
    font-size: 15px;
  }

  .icon-wrap {
    width: 70px;
    height: 70px;
  }

  .icon-wrap img {
    width: 30px;
    height: 30px;
  }
}

/* ---------------------------------------------------------------------------------tile4-2 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.aerospace-modern {
  background: #f7f8fc;
  padding: 60px 20px;
}

.aerospace-modern .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 200, 200, 0.3);
  border-radius: 16px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.icon-box {
  background-color: #007bff;
  color: white;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  color: #555;
}


/* about-------------------------- */
.aerospace-facility-section {
  background: #ffffff;
  padding: 80px 20px;
}

.aerospace-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.aerospace-content {
  flex: 1 1 500px;
}

.aerospace-content h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 15px;
}

.aerospace-content p {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}

.aerospace-content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #000;
}

.aerospace-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.aerospace-image {
  flex: 1 1 400px;
  text-align: center;
}

.aerospace-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.aerospace-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .aerospace-container {
    flex-direction: column;
    text-align: center;
  }

  .aerospace-content ul {
    text-align: left;
  }
}
/* about-1 */

/* 

/* GLOBAL FOOTPRINT SECTION */
.global-footprint-vibrant {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title-about {
  font-size: 28px;
    font-weight: 700;
    color: #fe6a00;
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.section-subtitle {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #555;
}

/* FOOTPRINT CARDS */
.footprint-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.card-item {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #f3f4f6;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.card-icon {
  font-size: 36px;
  color: #f97316; /* orange tone */
  margin-bottom: 10px;
}

/* WHY IT MATTERS SECTION */
.why-matters {
  margin-top: 2rem;
  text-align: left;
}

.why-matters-text {
  max-width: 700px;
  margin: 0 auto;
}

.why-title {
  font-size: 22px;
  font-weight: bold;
  color: #111827;
  border-left: 4px solid #f97316;
  padding-left: 12px;
  margin-bottom: 1rem;
}

.why-matters-text ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
  font-size: 16px;
}
.card-item {
  position: relative;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-top: 2px solid rgba(254, 106, 0, 1) ;
  border-bottom: 2px solid rgba(254, 106, 0, 1) ;
}

.card-item:hover {
  transform: translateY(-5px);
}

/* Hover shape effect */
.card-item::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: linear-gradient(180deg, rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%);
  border-bottom-right-radius: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

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

/* Optional: push icon and text above the hover shape */
.card-icon,
.card-item p {
  position: relative;
  z-index: 1;
}
.card-item::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: linear-gradient(0deg, rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%);
  border-top-left-radius: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.card-item:hover::after {
  opacity: 1;
}
.global-footprint-vibrant {
  background-color: #f7f8fc;
  padding: 30px 20px;
}
/* about3 */
section.infra-upgrade {
    padding-top: 30px;
    padding-bottom: 60px;
}
.infra-header {
    text-align: center;
}
.infra-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.infra-item {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 20px 18px;
  border-left: 5px solid #fe6a00;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.infra-item:hover {
  transform: translateY(-4px);
}

.infra-number {
  font-size: 26px;
  font-weight: bold;
  color: #fe6a00;
  min-width: 40px;
}

.infra-content h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #222;
}

.infra-content h4 i {
  color: #fe6a00;
  margin-right: 8px;
}

.infra-content p {
  color: #666;
  margin: 0;
  font-size: 15px;
}

/* Responsive handling for tablets/mobiles */
@media screen and (max-width: 992px) {
  .infra-item {
    flex: 1 1 100%;
  }

  .infra-list {
    flex-direction: column;
  }
}
/* our------------------------------------------------------------------ */

/* our1 journey---------------------------------- */
.our-journey-zigzag {
  padding: 60px 10px;
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
  overflow-x: hidden;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #000;
  position: relative;
  
}
.section-title-con {
  /* text-align: center; */
  font-size: 28px;
  /* font-weight: 800; */
  margin-bottom: 20px;
  color: #000;
  position: relative;
  
}

.timeline-zigzag {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1px;
}

.timeline-zigzag::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #e63946, #fca311);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 2px;
}

.timeline-row {
  width: 50%;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.timeline-row::after {
  content: '';
  position: absolute;
  top: 24px;
  width: 14px;
  height: 14px;
  background: #e63946;
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.2);
}

.timeline-row.left::after {
  right: -7px;
}

.timeline-row.right::after {
  left: -7px;
}

.timeline-row.left {
  left: 0;
}

.timeline-row.right {
  left: 50%;
}

.content-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}

.content-box:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.timeline-row.left .content-box {
  margin-right: 20px;
  text-align: right;
  border-top: 5px solid #f48120;
}

.timeline-row.right .content-box {
  margin-left: 20px;
  text-align: left;
  border-top: 5px solid #f48120;
}

.year {
  font-size: 16px;
  font-weight: bold;
  background: #fe6a00;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.content-box h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #000000;
}

.content-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}







/* Responsive */
@media (max-width: 768px) {
  .timeline-zigzag::before {
    left: 10px;
  }

  .timeline-row,
  .timeline-row.left,
  .timeline-row.right {
    width: 100%;
    left: 0;
  }

  .timeline-row.left .content-box,
  .timeline-row.right .content-box {
    margin: 0 0 25px 25px;
    text-align: left;
  }

  .timeline-row::after {
    left: -7px;
  }
}

/* .accordion-button:not(.collapsed) {
  border-left: 5px solid rgba(254, 106, 0, 1);
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(254, 106, 0, 0.2); 
  /* optional soft glow */
/* }
.accordion-body ul {
  list-style: none;
  padding-left: 0;
}

.accordion-body ul li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.accordion-body ul li::before {
  content: "✅";
  color: green;
  position: absolute;
  left: 0;
}  */


  .gradient-section {
    background: linear-gradient(0deg, rgba(254, 106, 0, 1) 36%, rgba(230, 0, 0, 1) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
  }
  
  ul li::marker {
    color: #000;
  }

  .csr-section-title {
    color: #000;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
  }

  /* .csr-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
  } */
   .csr-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    /* margin-bottom: 20px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 4px solid #f48220;
}

  .csr-list li {
    list-style: none;
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
  }

  .csr-list li::before {
    content: "•";
    color: #fe6a00;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    line-height: 1;
  }

  .highlight {
    font-weight: 600;
    color: #000000;
    text-align: center;
  }
  
    .banner {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

header {
  background: #222;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
  letter-spacing: 2px;
}

.container_blog {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* MAIN CONTENT on the LEFT */
main {
  flex: 3 1 0;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  order: 1;
  min-width: 0;
}

/* SIDEBAR on the RIGHT */
.sidebar-right {
  flex: 1 1 220px;
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  min-width: 220px;
  max-width: 260px;
  align-self: flex-start;
  order: 2;
}

.sidebar-left {
  display: none; /* not used in this layout */
}

/* Blog list inside sidebar */
.sidebar-left .blog-list,
.sidebar-right .blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.sidebar-left .blog-list li,
.sidebar-right .blog-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.blog-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
}

.blog-list a {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  text-decoration: none;
}

.blog-list a:hover {
  text-decoration: underline;
}

/* Headings */
h1, h2, h3 {
  color: #fe6a00;
  margin-top: 1.5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

ul, ol {
  margin-left: 1.5rem;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

/* .checklist li::before {
  content: '✅ ';
  color: #388e3c;
} */

.checklist li {
  position: relative;
  padding-left: 30px;
  list-style: none;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url('/assets/images/check.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .container_blog {
    gap: 1rem;
  }

  .sidebar-right {
    min-width: 160px;
    max-width: 200px;
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 900px) {
  .container_blog {
    flex-direction: column;
    gap: 1.5rem;
  }

  main,
  .sidebar-right {
    order: unset;
    max-width: 100%;
    min-width: 0;
  }

  .sidebar-right img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  main,
  .sidebar-right {
    padding: 1rem;
  }

  header {
    font-size: 1.2rem;
  }

  .banner {
    height: 120px;
  }

  h1 {
    font-size: 1.3rem;
  }
}
.single-services {
      padding: 40px 0;
    }

    #tabs .row {
      display: flex;
      flex-wrap: wrap;
    }

    #tabs .col-md-4,
    #tabs .col-md-8 {
      padding: 15px;
    }

    /* Sidebar */
    #tabs ul {
      list-style: none;
      padding: 0;
    }

    #tabs ul li {
      margin-bottom: 10px;
    }

    #tabs ul li a {
      text-decoration: none !important;
      color: #000;
      background-color: #e37222;
      display: block;
      padding: 12px 15px;
      border-radius: 5px;
      font-weight: bold;
      transition: background 0.3s;
      width: 100%;
    }

    #tabs ul li a:hover,
    #tabs ul li a.active {
      background-color: #c55c00;
      color: #fff;
    }

    /* Tab content */
    .tabs-content article {
      display: none;
    }

    .tabs-content article.active {
      display: block;
    }

    .tab-content .d-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .flex-basis-30 {
      flex: 1 1 calc(30% - 10px);
      position: relative;
    }

    .img-fluid {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .custom-overlay-text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      text-align: center;
      padding: 8px;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .flex-basis-30 {
        flex: 1 1 100%;
      }
    }

    @media (min-width: 992px) {
      #tabs .col-md-4 {
        width: 30%;
      }
      #tabs .col-md-8 {
        width: 70%;
      }
      #tabs ul li a {
        width: 225px;
      }
    }


 /* product   --------------------------------------------------------------*/


/* Product Section Container */
#product-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}


#product-section .product-layout {
  display: flex;
  flex-wrap: wrap;
}

#product-section .product-sidebar {
  width: 25%;
  padding: 10px;
}

#product-section .product-sidebar ul {
  list-style: none;
  padding-left: 0;
}

#product-section .product-sidebar ul li {
  margin-bottom: 10px;
}

#product-section .product-sidebar ul li a {
  display: block;
  background-color: transparent;
  color: var(--accent);
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid var(--accent);
}

#product-section .product-sidebar ul li a:hover {
  background-color: #ff873c;
  color: #fff;
}


#product-section .product-content {
  width: 75%;
  padding: 10px;
}


#product-section .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}


#product-section .col-img {
  width: 33.3333%;
}

#product-section .outerfit {
  width: 100%;
  background-color: #f8f8f8;
  border: 1px solid #c6c6c6;
  overflow: hidden;
}

#product-section .fill_a {
  height: 200px;
  background-color: #f8f8f8;
}

#product-section .product-img {
  height: 140px;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

#product-section .product-img img {
  max-width: 100%;
  max-height: 100%;
}

#product-section .title {
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tablet: 2 Columns */
@media (max-width: 991px) {
  #product-section .product-sidebar,
  #product-section .product-content {
    width: 100%;
  }

  #product-section .col-img {
    width: 48%;
  }
}

/* Mobile: 1 Column */
@media (max-width: 576px) {
  #product-section .col-img {
    width: 100%;
  }

  #product-section .fill_a {
    height: auto;
  }

  #product-section .product-img {
    height: auto;
  }
}
#product-section .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

/* Desktop: 3 columns */
#product-section .col-img {
  width: calc(33.333% - 13.33px); /* fix overflow due to gap */
  box-sizing: border-box;
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
  #product-section .product-sidebar,
  #product-section .product-content {
    width: 100%;
  }

  #product-section .col-img {
    width: calc(50% - 10px);
  }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
  #product-section .col-img {
    width: 100%;
  }
}


#product-section .product-sidebar ul li a .active {
  background-color: #d35400;   
  color: #fff;
  font-weight: bold;
  border-left: 4px solid #b84300;
}


/*----------------------------------zoomeffect---------------------------------------------------------- */
@keyframes zoomInCard {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}
.col-img {
  animation: zoomInCard 0.8s ease-out forwards;
  animation-delay: 0.3s;
  transform: scale(1);
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.col-img:nth-child(1) { animation-delay: 0.2s; }
.col-img:nth-child(2) { animation-delay: 0.4s; }
.col-img:nth-child(3) { animation-delay: 0.6s; } 
/* --------------------eye overlay------------------------------- */
/* .view-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.view-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  
}
#imageModal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
#imageModal img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #fff;
  border-radius: 8px;
}
#imageModal .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
} 
.modal-overlay {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}
.product-img {
  position: relative;
}

.product-img:hover .view-icon {
  display: block;
} */

.product-img {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  text-align: center;
}

.zoom-img {
  max-width: 100%;
  max-height: 200px; 
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease
}

.product-img:hover .zoom-img {
  transform: scale(1.05);
}

/* .view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 12px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-img:hover .view-icon {
  opacity: 1;
} */
 .view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 8px; /* Reduced padding */
  font-size: 16px; /* Reduced icon size */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-img:hover .view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1); /* slight zoom effect on hover */
}


.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  padding-top: 60px;
}

/* .modal-content {
  max-width: 80%;
  max-height: 80vh;
  margin: auto;
  display: block;
  border-radius: 8px;
} */

.modal-content {
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  aspect-ratio: 1 / 1;         
  object-fit: contain;         
  background-color: #ccc;
  margin: auto;
  display: block;
  border-radius: 8px;
  padding: 10px;               
  box-shadow: 0 0 20px rgba(0,0,0,0.5); 
}
@media (max-width: 768px) {
  .modal-content {
    max-width: 90vw;
    max-height: 90vw; 
  }
}

/* .close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  padding: 16px;
  cursor: pointer;
  transform: translateY(-50%);
}

.prev { left: 30px; }
.next { right: 30px; }


/* Tablet screens (768px and below) 
@media (max-width: 768px) {
  .close {
    top: 20px;
    right: 30px;
    font-size: 28px;
  }

  .prev, .next {
    font-size: 30px;
    padding: 12px;
  }

  .prev { left: 20px; }
  .next { right: 20px; }
}

/* Mobile screens (480px and below) 
@media (max-width: 480px) {
  .close {
    top: 15px;
    right: 20px;
    font-size: 24px;
  }

  .prev, .next {
    font-size: 24px;
    padding: 10px;
  }

  .prev { left: 10px; }
  .next { right: 10px; }
}*/

.modal-caption {
  margin-top: 10px;
  color: #ccc;
  font-size: 18px;
} 

/* Base Styles - Desktop */
/* .close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  padding: 16px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 30px; }
.next { right: 30px; }

.modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: auto;
  display: block;
  border-radius: 8px;
  background-color: #ccc;
}

@media (max-width: 768px) {
  .close {
    top: 20px;
    right: 30px;
    font-size: 28px;
  }

  .prev, .next {
    font-size: 30px;
    padding: 12px;
  }

  .prev { left: 20px; }
  .next { right: 20px; }
}

@media (max-width: 480px) {
  .close {
    top: 15px;
    right: 20px;
    font-size: 24px;
  }

  .prev, .next {
    font-size: 26px;
    padding: 10px;
  }

  .prev { left: 15px; }
  .next { right: 15px; }
}
 */


/* product end-------------------------------------------------------------- */



.img-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.img-modal .modal-content {
  width: 90vmin;          
  height: 90vmin;
  max-width: 500px;       
  max-height: 500px;
  object-fit: contain;   
  display: block;
  margin: auto;
  border-radius: 10px;
  background-color: #cccccc;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.img-modal .modal-caption {
  text-align: center;
  color: white;
  margin-top: 15px;
  font-size: 16px;
}

/* Close Button */
.img-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

/* Arrows */
.img-modal .arrows-container {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 5;
}

.img-modal .arrow {
  color: white;
  cursor: pointer;
  font-size: 30px;
  transition: transform 0.2s;
  margin-right: 40px;
}

.img-modal .arrow:hover {
  transform: scale(1.3);
}

/* @media screen and (max-width: 360px) {
  .img-modal .modal-content {
    width: 95vmin;
    height: 95vmin;
  }
} */

@media (max-width: 767px) {
  .img-modal .arrows-container {
    top: 50%;
    padding: 0 10px; 
  }

  .arrow {
    width: 36px;
    height: 36px;
  }

  .arrow i {
    font-size: 14px;
  }

  .arrow svg {
    width: 36px;
    height: 36px;
  }
}
.img-modal {
  padding-top: 60px; 
}

@media (max-width: 767px) {
  .img-modal {
    padding-top: 80px; 
  }
}


.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

.arrows-container {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.arrow {
  pointer-events: auto;
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  color: white;
}

.arrow i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: white;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease;
  z-index: 1;
}

.arrow.left i {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.arrow.right i {
  transform: translate(-50%, -50%) rotate(45deg);
}

.arrow svg {
  width: 44px;
  height: 44px;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  stroke-width: 2;
  stroke: white;
  fill: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: stroke-dashoffset 1.6s ease;
}

.arrow.animate svg {
  stroke-dashoffset: 0;
}
.arrow {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  margin: 0 10px;
  cursor: pointer;
}

.arrow svg {
  width: 100%;
  height: 100%;
  stroke: #ffffff;
  stroke-width: 2;
}

.arrow i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 16px; /* reduce size */
  color: #ffffff;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none; /* prevents click from affecting icon */
}


.arrow {
  width: 30px;
  height: 30px;
}

.arrow svg {
  width: 30px;
  height: 30px;
}

.arrow i {
  font-size: 12px; /* smaller arrow inside */
}
@media (min-width: 992px) {
  .arrow {
    width: 44px;
    height: 44px;
  }

  .arrow svg {
    width: 44px;
    height: 44px;
  }

  .arrow i {
    font-size: 16px;
  }
}

/* awards---------------------------------------------- */

/* Optional Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.awards-wrapper {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.awards-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}
.awards-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, gold, darkorange);
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}
.award-section {
  display: grid;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  grid-template-columns: repeat(1, 1fr); 
}

.award-box {
  background: #fff;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, gold, orange) 1;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.award-box img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.award-box p {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  margin: 0;
  line-height: 1.4;
}

.award-box span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #777;
}
/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
  .award-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  .award-section {
    grid-template-columns: repeat(3, 1fr);
  }
}
.custom-link {
    color: black;
    text-decoration: none;
  }

  .custom-link:hover {
    color: #f48220;
  }
 /* -----------------------------.accordion-body------------------------------------- */
/* .accordion-body ul {
  padding-left: 0;
  margin-bottom: 1rem;
}

.accordion-body li {
  position: relative;
  padding-left: 30px;
  list-style: none;
  margin-bottom: 8px;
}

.accordion-body li::before {
  content: '\f00c'; 
  font-family: 'Font Awesome 6 Free'; 
  font-weight: 900; 
  color: black; 
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.accordion-button {
  font-size: 1rem;
  font-weight: 600;
}

.accordion-body p,
.accordion-body li {
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .accordion-button {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .accordion-body {
    font-size: 0.9rem;
  }
}

.accordion-item {
  border: 1px solid #ffc280; 
}

.accordion-button:not(.collapsed) {
  border-bottom: none; 
}

.accordion-body {
  border-top: none;
}
.accordion-item {
  border: 1px solid #ffc280; 
  border-radius: 4px;
}

.accordion-button {
  background-color: #fff7f0; 
  color: #000;
  border: 1px solid #ffc280; 
  box-shadow: none;
}


.accordion-button:hover {
  background-color: #ffebcc; 
  color: #000;
}

.accordion-button:not(.collapsed) {
  background-color: #ffe0b3 !important; 
  color: #000;
  box-shadow: none !important;
  border: 1px solid #ffc280; 
  border-bottom: none; 
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: #ffc280;
}

.accordion-body {
  border-top: none;
  background-color: #fffdf9; 
} */
.carousel-indicators [data-bs-target] {
  background-color: #ff8c00; 
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.csr-img .swiper {
  width: 100%;
  height: auto;
}

/* .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
} */
.csr-img,
.csr-text {
  padding-left: 0;
  padding-right: 0;
}

.csr-text {
  padding-left: 15px; 
}
p.engg_excellence {
    text-align: justify;
}
ul.engg_excellence li {
    text-align: justify;
}


.swiper-pagination-bullet-active {
    background: #f97316 !important;
}

/* .gallery-section {
  padding: 50px 20px;
  background: #f7f9fc;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
} */
 .gallery-section {
      padding: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* 4 images per row */
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      transition: transform 0.4s ease;
      cursor: pointer;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s ease;
    }

    .gallery-item:hover .overlay {
      opacity: 1;
    }

    .eye-icon {
      font-size: 28px;
      color: white;
      cursor: pointer;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      z-index: 9999;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }

    .lightbox .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: white;
      cursor: pointer;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      font-size: 40px;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
      transform: translateY(-50%);
      padding: 0 15px;
      z-index: 10000;
    }

    .prev-btn {
      left: 20px;
    }

    .next-btn {
      right: 20px;
    }
/* RESPONSIVE GRID BREAKPOINTS */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for small tablets/large phones */
  }

  .eye-icon {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }

  .eye-icon {
    font-size: 20px;
  }

  .lightbox .close-btn,
  .nav-btn {
    font-size: 30px;
  }
}

.icon-circle {
    background-color: #FF6600; /* JK Maini Orange */
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
}
.bg-orange {
    background-color: #FF6600 !important;
}
/* .left-content {
    border-radius: 20px; 
    border-bottom: 4px solid var(--accent);
} */
 .left-content {
    background-color: #ffffff;
    border-radius: 20px;
    border-top: 4px solid var(--accent); /* Typically orange */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
    padding: 24px; /* Adds inner spacing */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* .contact-details-card {
    border-radius: 12px;
    padding: 20px;
} */


.icon-circle {
    background-color: #FF6600;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    flex-shrink: 0;
}

/* Media query for small devices */
@media (max-width: 576px) {
    .contact-details-card {
        padding: 16px;
        font-size: 14px;
    }

    .icon-circle {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 15px;
    }

    .contact-details-card h2 {
        font-size: 16px;
    }
    .left-content {
    margin-bottom: 35px;
}
}
.landing_subheading
{
   color: var(--primary);
   font-family: "Montserrat", "Helvetica Neue", sans-serif;
   font-size: 18px;
   font-weight: 700;
}
.engineering-title
{
  color: var(--primary);
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
/*----------------------------------- contact section----------------------------- */
  /* Section Wrapper */
.office-locations {
  background-color: #fff;
  /* padding: 40px 0; */
}

.office-locations h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  /* margin-bottom: 30px; */
  color: #222;
  padding: 30px;
}

/* Info Cards */
.info-card {

    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
    background: #F7F8FC;
    border-left: 5px solid #ffa14d;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.20);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: 20px;
}



.info-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Icon Styling */
.icon-box {
  background: #ff6600;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
}

/* Text Styling */
.info-text {
  flex: 1;
}

.info-text .label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: #333;
}

.info-text a,
.info-text .value {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  word-wrap: break-word;
}

/* Map Styling */
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); /* optional map shadow */
}


/* Responsive */
@media (max-width: 991px) {
  .office-locations .row {
    flex-direction: column;
  }

  .col-md-4,
  .col-md-8 {
    width: 100%;
    max-width: 100%;
    
  }

  .info-card {
    flex-direction: row;
  }
}

@media (max-width: 576px) {
  .info-card {
    /* flex-direction: column; */
    align-items:center;
  }

  .icon-box {
    margin-bottom: 10px;
  }
}
h2.landing_mainheading {
    
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--bs-heading-color);
    max-width: 800px;
    margin: auto;
    line-height: 1.4;
    margin-bottom: 3rem;
    font-family: "Poppins", "Arial", sans-serif;
}
.about-title {
  color: #f48220;
  font-size: 1rem; /* Responsive base size */
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.about-heading {
  font-size: 2rem; /* Scales well on all screens */
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Responsive font sizes for smaller screens */
@media (max-width: 768px) {
  .about-title {
    font-size: 0.9rem;
  }

  .about-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 0.85rem;
  }

  .about-heading {
    font-size: 1.3rem;
  }
}


/* about second section */
/* Title above image */
.facility-title {
  color: #f48220;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Heading */
.facility-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

/* Text paragraph */
.csr-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

/* Feature list styling */
.facility-features {
  padding-left: 1.2rem;
}

.facility-features li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
}
@media (max-width: 768px) {
  .facility-heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .facility-title {
    font-size: 0.9rem;
    text-align: center;
  }

  .csr-text {
    font-size: 0.95rem;
    text-align: center;
  }

  .facility-features {
    padding-left: 1rem;
  }

  .facility-features li {
    font-size: 0.95rem;
    text-align: left;
  }

  .facility-image-block img {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .facility-heading {
    font-size: 1.25rem;
  }

  .facility-title {
    font-size: 0.85rem;
  }

  .csr-text {
    font-size: 0.9rem;
  }

  .facility-features li {
    font-size: 0.9rem;
  }
}
.facility-image {
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* optional for better effect */
  transition: transform 0.3s ease;
}

.facility-image:hover {
  transform: scale(1.02);
}
.gallery-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
}

.gallery-subtext {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}
.env-card {
  background: #fff;
  padding: 1.5rem;
  border-top: 5px solid #f48220; /* Orange top border */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.env-card:hover {
  transform: translateY(-5px);
}

.env-card-title {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .env-card {
    margin-bottom: 1.5rem;
  }

  .env-card-title {
    font-size: 0.95rem;
  }
}
.env-Stew .container {
  padding-left: 1rem;
  padding-right: 1rem;
}
.row.mt-4.sustainability_card

 {
    margin-bottom: 1.5rem !important;
}


@media (min-width: 992px) {
  .csr-text {
    max-width: 90%;
  }

  .csr-swiper img {
    max-height: 400px;
    object-fit: cover;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .csr-text {
    padding-left: 20px;
    padding-right: 20px;
  }
  .csr-img {
    padding-left: 10px;
    padding-right: 10px;
  }
}
 .engg_excellence {
      text-align: justify;
    }
    .csr-text ul {
      padding-left: 1.2rem;
    }
    .facility-image {
      border-radius: 6px;
    }
    @media (max-width: 767.98px) {
      .csr-text h2 {
        font-size: 1.5rem;
      }
    }
  /* Default: mobile and tablet screens */
section.container-csr.py-4 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Large screens (≥992px): desktop view */
@media (min-width: 992px) {
  section.container-csr.py-4 {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    padding-left: 0;
    padding-right: 0;
  }
}
h2.csr-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
}
.csr-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0; /* Top & bottom space */
}

.csr-card-icon img {
  width: 60px;
  height: auto;
}

@media (max-width: 768px) {
  .csr-card-icon {
    margin: 12px 0;
  }

  .csr-card-icon img {
    width: 50px;
  }
}

@media (max-width: 576px) {
  .csr-card-icon {
    margin: 10px 0;
  }

  .csr-card-icon img {
    width: 45px;
  }
}

/* -------------------------------------------product sidebar-------------------------------- */
.product-sidebar ul li a.active-link{
  background-color: var(--accent) !important;
  color: #fff !important;
}

.img-fluid-facility-image{
  border-radius: 25px;
}
div#map-image {
    margin-top: -3rem;
}
nav ul{
  margin-left: 0!important;
}
/* -------------------------preloader -------------------------*/
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Main content (hidden initially) */
.main-content {
  display: none;
  padding: 80px 20px;
  text-align: center;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #df824c;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Thin horizontal line */
.horizontal-line {
  width: 0;
  height: 1px; /* 🔧 Make it thin */
  background-color: #ffffff;
  animation: loadLine 1.2s ease-in-out forwards;
}

/* Animation */
@keyframes loadLine {
  0% {
    width: 0;
  }
  50% {
    width: 60%;
  }
  100% {
    width: 100%;
  }
}

/* Fade out preloader */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
/* breaddrume css */
.slide-image {
  position: relative;
}

.slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
}
.hero-title span {
  display: inline-block;
  margin-right: 8px;
}

/* social button css */

  
  .social-login-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    -webkit-box-reflect: below 5px linear-gradient(transparent, #00000055);
  }
  .social-login-icons svg {
    width: 40px;
  }

  .social-icon-1,
  .social-icon-1-1,
  .social-icon-2,
  .social-icon-2-2,
  .social-icon-3,
  .social-icon-3-3,
  .social-icon-4,
  .social-icon-4-4 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 20px 0 0px 0;
  }

  .icon svg {
    fill: #111;
  }

  .socialcontainer {
    height: 70px;
    overflow: hidden;
  }
  .social-icon-1 {
    transition-duration: 0.4s;
    background-color: rgb(0, 0, 0);
    transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  }
  .social-icon-1 svg,
  .social-icon-2 svg,
  .social-icon-3 svg,
  .social-icon-4 svg {
    opacity: 0;
    transition-duration: 0.5s;
    transition-delay: 0.2s;
  }
  .social-icon-1-1 {
    transition-duration: 0.4s;
    background-color: rgb(0, 0, 0, 0);
  }
  .socialcontainer:hover .social-icon-1 {
    transform: translateY(-70px);
  }
  .socialcontainer:hover .social-icon-1 svg,
  .socialcontainer:hover .social-icon-2 svg,
  .socialcontainer:hover .social-icon-3 svg,
  .socialcontainer:hover .social-icon-4 svg {
    opacity: 1;
  }
  .social-icon-2 {
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
    background: linear-gradient(
      72.44deg,
      #ff7a00 11.92%,
      #ff0169 51.56%,
      #d300c5 85.69%
    );
  }
  .socialcontainer:hover .social-icon-2 {
    transform: translateY(-70px);
  }
  .social-icon-3 {
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
    background: #316ff6;
  }

  .socialcontainer:hover .social-icon-3 {
    transform: translateY(-70px);
  }
  .social-icon-4 {
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);

    background: #0A66C2;
  }

  .socialcontainer:hover .social-icon-4 {
    transform: translateY(-70px);
  }