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

body,
html {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;}




.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-radius: 12px;
}


.container-1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border-radius: 12px;
}



header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}


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

.logo img {
  height: 86px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #003558;
  border-radius: 2px;
  transition: 0.3s;
}


.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #003154;
  font-weight: bold;
  font-size: 13px;
  padding: 5px 0;
  transition: color 0.3s ease-in-out;
}


.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #003154;
  transition: width 0.4s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
  background-color: #003154;
}


.nav-links a.active {
  color: #003154;
}


@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .logo {
    width: 100%;
    justify-content: flex-start;
  }

  .hamburger {
    display: flex;
    align-self: flex-end;
    margin-top: -50px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 20px;
    animation: slideDown 0.4s ease forwards;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
  }

  .logo img {
    height: 90px;
    margin: 5px;
  }
}


@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 500px;
  position: relative;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 25%;
  left: 10%;
  right: 10%;
  z-index: 2;
  color: white;
  max-width: 80%;
  /* text-shadow: 0 2px 4px rgba(0,0,0,0.6); */
  /* background: #bbb; */
  padding: 30px;
}

.heading {
  font-size: 2.8em;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInHeading 1.2s ease forwards;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@keyframes fadeInHeading {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 1️⃣  Centre the whole line */
.typewriter-wrapper{
  display:flex;
  justify-content:center;        /* horizontal centring */
}

/* 2️⃣  Typewriter + finite caret‑blink */
#typewriter{
  /* keep it as tight as its natural width */
  display:inline-block;
  overflow:hidden;
  white-space:nowrap;
 text-align: center;
  border-right:2px solid #e3c274;/* caret */
  font-size:20px;
  color:#fff;

  /*    — 1st animation: “typing”      (4 s, 52 steps → 52 characters)
     — 2nd animation: caret blink (0.8 s, 6 repeats) starts
       *after* typing ends (delay 4 s) and then freezes */
  animation:
    typing 4s steps(52,end) forwards,
    blink   0.8s step-end 6 4s forwards;
}

/* reveals text, one “step” per character */
@keyframes typing{
  from{width:0;}
  to  {width:100%;}
}

/* caret blinks 6× then stays invisible */
@keyframes blink{
  0%,50%  {border-color:#e3c274;}   /* visible */
  50%,100%{border-color:transparent;}/* hidden */
}


.slide-para {
  margin-top: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInPara 1.2s ease forwards;
  animation-delay: 3.2s;
  /* color: black; */
}

@keyframes fadeInPara {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navigation-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #fff;
}

@media (max-width: 768px) {
  .slider {
    height: auto;
  }

  .slide {
    height: auto;
  }

  .slide img {
    height: 100%;
    object-fit: cover;
  }

  .slide-content {
    top: 10%;
    left: 5%;
    right: 5%;
    padding: 20px 15px;
    /* background: rgba(255, 255, 255, 0.85); */
    color: #003154;
    border-radius: 10px;
    text-align: center;
  }

  .heading {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #typewriter {
    font-size: 10px;
    width: 100%;
    overflow-wrap: break-word;
  }

  .slide-para {
    font-size: 7px;
    line-height: 1.4;
  }

  .navigation-dots {
    bottom: 10px;
  }

  .dot {
    height: 10px;
    width: 10px;
    margin: 3px;
  }
}




.prism-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  animation: fadeIn 1.5s ease-in-out;
}

.prism-header h1 {
  font-size: 36px;
  color: #003154;
  margin-bottom: 10px;
}

.prism-header p {
  font-size: 18px;
  color: #ffffffcc;
}

.prism-content {
  background: rgba(227, 194, 116, 0.1);
  padding: 30px;
  border-left: 5px solid #003154;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.prism-content:hover {
  transform: translateY(-5px);
}

.prism-content h2 {
  font-size: 28px;
  color: #003154;
  margin-bottom: 15px;
}

.prism-content p {
  font-size: 16px;
  line-height: 1.7;
}

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

.vision-mission div {
 
  padding: 25px;
  border-radius: 12px;
  border: 2px dashed #dfbf6b;
  transition: 0.4s ease;
  border-left: 5px solid #003154;
}

/* .vision-mission div:hover {
      background-color: #003e70;
    } */

.vision-mission h3 {
  color: #003154;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .prism-header h1 {
    font-size: 28px;
  }
}




.footer {
  background-color: #003558;
  color: #fff;
  padding: 60px 20px 0;

}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #e3c274;
}

.footer p,
.footer a {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.footer a:hover {
  color: #e3c274;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #e3c274;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.footer-bottom {
  /* background-color: #00233b; */
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #e3c27433;
}

@media (max-width: 768px) {
  .footer {
    text-align: left;
  }

  .social-links {
    justify-content: center;
  }

  .abja-card-content {
    background-color: #f0eefc;
    padding: 30px 20px;
    text-align: center;
    height: 380px;
  }
}







.core-values-1 {
  background: #f9f9f9;
  padding: 80px 20px;
  margin-top: -70px;
}



.core-values {
  background: linear-gradient(135deg, #f9f9f9 60%, #e3c27420);
  padding: 80px 20px;
  position: relative;
}

.core-values .section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: #003154;
  font-weight: 800;
  position: relative;
}

/* .underline-1 {
  width: 100px;
  height: 4px;
  background-color: #e3c274;
  margin: 0 auto 60px auto;
  border-radius: 2px;
} */

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: white;
  border: 2px solid #e3c274;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 49, 84, 0.1);
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.9) translateY(60px);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #003154, #e3c274);
  top: 0;
  left: 0;
}

.value-card.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
  box-shadow: 0 25px 45px rgba(0, 49, 84, 0.2);
}

.value-card:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 50px rgba(227, 194, 116, 0.4);
}


.value-card .icon {
  font-size: 50px;
  color: #013357;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.value-card:hover .icon {
  color: #e3c274;
}


.value-card h3 {
  color: #003154;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}


.value-card p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .core-values .section-title {
    font-size: 28px;
  }

  .value-card {
    padding: 30px 20px;
  }
}

.core-values .container {
  position: relative;
  padding: 60px 30px;
  border-radius: 30px;
  background: white;
  z-index: 1;
  overflow: hidden;
}


.core-values .container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #003154, #e3c274, #003154);
  background-size: 400% 400%;
  animation: borderFlow 8s linear infinite;
  z-index: -1;
  border-radius: 32px;
}


.core-values .container::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 28px;
  z-index: -1;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.why-choose-us {
  position: relative;
  padding: 80px 20px;
  color: #003154;
  overflow: hidden;
  z-index: 1;
  background: url('images/bg.jpeg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

/* White translucent overlay */
.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.8), 
    rgba(255, 255, 255, 0.8)
  ),
  linear-gradient(
    rgba(227, 194, 116, 0.05), 
    rgba(0, 49, 84, 0.08)
  );
  z-index: 0;
}


    .pattern-bg {
      position: absolute;
      top: -80px;
      left: -80px;
      width: 300%;
      height: 300px;
      background: url('https://www.svgbackgrounds.com/wp-content/uploads/2021/07/subtle-prism.svg') no-repeat center;
      background-size: cover;
      opacity: 0.09;
      z-index: 0;
      transform: rotate(-5deg);
    }

    .decorative-shape {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 120px;
      background: linear-gradient(to right, #003154, #e3c274);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
      z-index: 0;
      opacity: 0.15;
    }

    .why-choose-us .container {
      position: relative;
      background: rgba(255, 255, 255, 0.95);
      padding: 40px;
      border-radius: 30px;
      box-shadow: 0 12px 40px rgba(0, 49, 84, 0.05);
      z-index: 2;
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      font-size: 42px;
      color: #003154;
      font-weight: 800;
      margin-bottom: 20px;
      position: relative;
    }

    .section-title::after {
      content: "";
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, #e3c274, #003154);
      display: block;
      margin: 12px auto 0;
      border-radius: 2px;
      animation: underlineIn 1s ease forwards;
    }

    @keyframes underlineIn {
      from {
        transform: scaleX(0);
        opacity: 0;
      }
      to {
        transform: scaleX(1);
        opacity: 1;
      }
    }

    /* ----------  Base layout  ---------- */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}

/* Left / right split */
.left-column   { flex: 1 1 480px; }
.right-column  { flex: 1 1 400px; position: relative; text-align: center; }

/* Optional: constrain image nicely */
.right-column .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  /* subtle shadow for separation */
  box-shadow: 0 8px 20px rgba(0, 49, 84, 0.12);
}

/* ----------  Reason cards  ---------- */
.reason-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 49, 84, 0.08);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: #e3c274;
  background: linear-gradient(135deg, #fff 0%, #fdf7ec 100%);
  box-shadow: 0 12px 30px rgba(0, 49, 84, 0.18);
}

/* Icons & text */
.reason-icon {
  font-size: 28px;
  color: #e3c274;
  margin-right: 18px;
  min-width: 32px;
  transition: color 0.3s ease;
}

.reason-card:hover .reason-icon { color: #003154; }

.reason-card p {
  margin: 0;
  font-size: 17px;
  color: #003154;
  font-weight: 600;
}

/* ----------  Mobile optimisation  ---------- */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;           /* tighter vertical spacing on phones */
    margin-top: 20px;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
  }

  /* Optional: centre‑align cards on narrow screens */
  .reason-card {
    justify-content: flex-start;
  }
}
  

    .image-container {
      padding: 10px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(0, 49, 84, 0.1);
      position: relative;
      z-index: 1;
      overflow: hidden;
      animation: floatImage 6s ease-in-out infinite;
    }

   

    .image-container img {
      width: 100%;
      border-radius: 16px;
      display: block;
    }

    @keyframes floatImage {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes shimmer {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    @media (max-width: 768px) {
      .why-choose-us {
        padding: 40px 15px;
      }

      .section-title {
        font-size: 28px;
        margin-bottom: 30px;
      }

      .content-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .left-column,
      .right-column {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .reason-card {
        text-align: left;
      }
    }


.what-we-do-new {
  background: linear-gradient(to right, #003154 , #e3c274 );
  padding: 40px 20px;
}

.what-we-do-new-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

.what-we-do-new-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.what-we-do-new-text-section {
  flex: 1;
  animation: what-we-do-new-fadeInLeft 1.2s ease forwards;
}

.what-we-do-new-section-title {
  font-size: 40px;
  color: #e3c274 ;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.what-we-do-new-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: #e3c274 ;
  animation: what-we-do-new-underlineIn 1.2s ease forwards;
  margin-left: 4px;
}

.what-we-do-new-description {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}

.what-we-do-new-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.what-we-do-new-info-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ddd;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 49, 84, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: what-we-do-new-fadeInUp 1s ease forwards;
}

.what-we-do-new-info-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 25px rgba(0, 49, 84, 0.2);
}

.what-we-do-new-info-card i {
  font-size: 36px;
  color: #003154 ;
  margin-bottom: 15px;
  animation: what-we-do-new-pulseIcon 2s infinite;
}

.what-we-do-new-info-card span {
  display: block;
  font-size: 17px;
  color: #003154;
  font-weight: 600;
}

.card-1 {
  animation-delay: 0.2s;
}

.card-2 {
  animation-delay: 0.4s;
}

.card-3 {
  animation-delay: 0.6s;
}

.card-4 {
  animation-delay: 0.8s;
}

@keyframes what-we-do-new-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes what-we-do-new-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes what-we-do-new-underlineIn {
  from {
    width: 0;
  }

  to {
    width: 70px;
  }
}

@keyframes what-we-do-new-pulseIcon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}



@media (max-width: 768px) {
  .what-we-do-new-content {
    flex-direction: column;
  }

  .what-we-do-new-section-title {
    font-size: 32px;
  }

  .what-we-do-new-description {
    font-size: 16px;
  }

  .what-we-do-new-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .what-we-do-new-cards {
    grid-template-columns: 1fr;
  }
}




.products-services-section {
  background: #f4f4f4;
  padding: 80px 20px;
 
}
.psn-container{
 position: relative;
  padding: 60px 30px;
  border-radius: 30px;
  background: white;
  z-index: 1;
  overflow: hidden;
}


.psn-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #003154, #e3c274, #003154);
  background-size: 400% 400%;
  animation: borderFlow 8s linear infinite;
  z-index: -1;
  border-radius: 32px;
}


.psn-container::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 28px;
  z-index: -1;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.psn-title {
  text-align: center;
  font-size: 38px;
  color: #003154;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
}

.psn-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #e3c274;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.psn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.psn-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  width: 400px;
  box-shadow: 10px 10px 30px #d1d9e6, -10px -10px 30px #ffffff;
  transition: all 0.3s ease;
  text-align: center;
}

.psn-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.psn-icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #003154, #e3c274);
  color: white;
  font-size: 30px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.psn-heading {
  font-size: 20px;
  margin-bottom: 18px;
  color: #003154;
  font-weight: 600;
}

.psn-list {
  list-style: none;
  padding-left: 0;
  color: #444;
  font-size: 15px;
  margin-bottom: 20px;
}

.psn-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  text-align: left;
}

.psn-list li::before {
  content: "✔";
  color: #e3c274;
  position: absolute;
  left: 0;
}

.psn-button {
  background: #003154;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.psn-button:hover {
  background: #e3c274;
  color: #003154;
}

.psn-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  width: 400px;
  box-shadow: 10px 10px 30px #d1d9e6, -10px -10px 30px #ffffff;
  transition: all 0.3s ease;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  animation: cardBG 6s infinite alternate;
}
@keyframes cardBG {
  0% {
    background-color: #003154; /* Blue */
  }
  100% {
    background-color: #e3c274; /* Golden */
  }
}
.psn-card * {
  animation: textColor 6s infinite alternate;
}

@keyframes textColor {
  0% {
    color: white;
  }
  100% {
    color: black;
  }
}
.psn-button {
  background-color: transparent;
  border: 2px solid currentColor;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.psn-button:hover {
  background-color: currentColor;
  color: white;
}
.psn-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  animation: tickColor 6s infinite alternate;
}
@keyframes tickColor {
  0% {
    color: white; /* when background is blue */
  }
  100% {
    color: black; /* when background is golden */
  }
}
.psn-card {
  animation: cardBG 6s infinite alternate;
}

.psn-card * {
  animation: textColor 6s infinite alternate;
}
.psn-list li::before {
  animation: tickColor 6s steps(1, end) infinite alternate;
}





@media (max-width: 768px) {
  .psn-title {
    font-size: 30px;
  }

  .psn-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .psn-card {
    width: 100%;
    max-width: 90%;
  }
}









.founder-section {
  background-color: #f9f9f9;
  padding: 60px 20px;


}

.founder-container {
  max-width: 1100px;
  margin: 0 auto;
}

.founder-card {
  background: white;
  border-left: 6px solid #e3c274;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 49, 84, 0.1);
  border-radius: 12px;
  animation: founderFadeInUp 0.8s ease;
}

.founder-name {
  color: #003154;
  font-size: 32px;
  margin-bottom: 5px;
}

.founder-role {
  color: #e3c274;
  font-size: 18px;
  margin-bottom: 25px;
}

.founder-intro {
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.founder-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

@keyframes founderFadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .founder-card {
    padding: 25px;
  }

  .founder-name {
    font-size: 26px;
  }

  .founder-role {
    font-size: 16px;
  }
}






.prism-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.prism-header-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #003154;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}

.prism-header-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background-color: #e3c274;
  margin: 15px auto 0;
  border-radius: 4px;
}

.prism-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  padding: 40px 50px;
  margin-top: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 49, 84, 0.1);
}

.prism-section h2 {
  font-size: 1.8rem;
  color: #003154;
  margin-bottom: 20px;
  border-left: 5px solid #e3c274;
  padding-left: 15px;
}

.prism-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
  text-align: justify;
}

.prism-vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.prism-vision-box,
.prism-mission-box {
  flex: 1 1 45%;
  background: #003154;
  color: #fff;
  padding: 30px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.prism-vision-box::before,
.prism-mission-box::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: #e3c27433;
  border-radius: 50%;
}

.prism-vision-box h3,
.prism-mission-box h3 {
  font-size: 1.5rem;
  color: #e3c274;
  margin-bottom: 15px;
  position: relative;
}

.prism-vision-box p,
.prism-mission-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f2f2f2;
}

@media (max-width: 768px) {
  .prism-vision-mission {
    flex-direction: column;
  }

  .prism-vision-box,
  .prism-mission-box {
    flex: 1 1 100%;
  }
}



.global-section {
  background: linear-gradient(135deg, #003154 60%, #e3c274 40%);
  color: white;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.global-left {
  flex: 1;
  min-width: 300px;
  max-width: 1200px;
  animation: slideInLeft 1s ease;
}

.global-left h2 {
  font-size: 3rem;
  color: #e3c274;
  margin-bottom: 20px;
}

.global-left p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.stats-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  animation: fadeInUp 1.2s ease;
}

.stat-box {
  background: white;
  color: #003154;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-size: 25px;
  color: #e3c274;
  font-weight: bold;
}

.stat-title {
  font-size: 1rem;
  margin-top: 10px;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .global-left h2 {
    font-size: 2rem;
  }

  .stats-section {
    flex-direction: column;
    align-items: center;
  }
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.center-row {
  justify-content: center;
}

/* Optional: make sure stat-box width behaves responsively */
.stat-box {
  flex: 1 1 calc(33.33% - 30px);
  min-width: 220px;
  max-width: 350px;
  text-align: center;
  background: white;
  color: #003154;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    align-items: center;
  }
}


.rudra-global-intro {
  background: linear-gradient(135deg, #ffffff, #f5f7fa);
  padding: 100px 20px;
  text-align: center;


  position: relative;
  overflow: hidden;
}

.rudra-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 49, 84, 0.15);
  position: relative;
  z-index: 2;
  border-top: 6px solid #e3c274;
}

.rudra-global-intro::before {
  content: "";
  background: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  opacity: 0.05;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.rudra-wrapper h2 {
  font-size: 36px;
  color: #003154;
  margin-bottom: 10px;
}

.rudra-wrapper h2 span {
  color: #003154;
}

.rudra-wrapper h4 {
  font-size: 20px;
  color: #777;
  font-weight: normal;
  margin-bottom: 30px;
}

.rudra-line {
  width: 60px;
  height: 4px;
  background-color: #003154;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.rudra-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.rudra-wrapper p strong {
  color: #003154;
}

.highlighted {
  font-weight: bold;
  color: #003154;
  background: #e3c27433;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
}







:root {
  --primary-color: #003154;
  --accent-color: #e3c274;
  --light-bg: #f4f6f8;
}

.industry-header {
 background-image:
    /*  ↙ change the colours / angle here */
    linear-gradient(90deg, rgba(0,26,58,.85) 0%, rgba(0,26,58,.25) 100%),
    url("images/parallex.jpg");
  color: #fff;
  padding: 70px 20px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;

  /* 🔑 Parallax: keep the background fixed */
  background-attachment: fixed;
  background-size: cover;      /* makes sure the gradient fills the area */
  background-position: center; /* keeps the midpoint centred */
}

.industry-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  /* padding: 70px 20px 50px; */
}


.industry-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 10px;
  animation: pulseBar 2s infinite;
}

@keyframes pulseBar {

  0%,
  100% {
    width: 80px;
  }

  50% {
    width: 140px;
  }
}

.industry-heading h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  animation: slideInDown 1s ease-out;
  color: #ffffff;
}

.industry-heading p {
  font-size: 1.1rem;
  color: #e3e6ec;
  animation: fadeIn 2s ease-out;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.industry-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

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

.industry-card {
  background: white;
  border-left: 5px solid var(--primary-color);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(227, 194, 116, 0.15), transparent);
  transition: left 0.6s ease;
}

.industry-card:hover::before {
  left: 100%;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.industry-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

@media (max-width: 600px) {
  .industry-header h1 {
    font-size: 2rem;
  }

  .industry-header p {
    font-size: 0.95rem;
  }

  .industry-card {
    padding: 20px;
  }
}







.contact-1-container {
  display: flex;
  max-width: 1000px;
  margin: 60px auto;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease;
}

.contact-1-left {
  background: #003154;
  background-size: cover;
  color: #fff;
  padding: 40px 30px;
  flex: 1;
}

.contact-1-left h3 {
  margin-bottom: 30px;
  font-size: 22px;
  color: #e3c274;
}

.contact-1-info {
  margin-bottom: 25px;
}

.contact-1-info p {
  margin: 5px 0;
  line-height: 1.6;
}

.contact-1-info strong {
  display: block;
  color: #e3c274;
  margin-bottom: 5px;
}

.contact-1-right {
  flex: 1;
  padding: 40px 30px;
}

.contact-1-right h2 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #003154;
}

.contact-1-form {
  display: grid;
  gap: 15px;
}

.contact-1-form input,
.contact-1-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.contact-1-form input:focus,
.contact-1-form textarea:focus {
  border-color: #e3c274;
  outline: none;
  box-shadow: 0 0 5px rgba(227, 194, 116, 0.7);
}

.contact-1-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-1-form button {
  background-color: #e3c274;
  color: #003154;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-1-right button:hover {
  background-color: transparent;
  border: #003154;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .contact-1-container {
    flex-direction: column;
  }

  .contact-1-left,
  .contact-1-right {
    padding: 30px 20px;
  }
}







.type-container {
  position: relative;
  font-size: 35px;
  font-weight: bolder;
  color: #003154;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #e3c274;
  animation: typing 4s steps(30, end) forwards, blink 0.75s step-end infinite;
}

.underline-1 {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, #003154, #e3c274);
  width: 0;
  animation: underlineGrow 2s ease-out 4s forwards;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink {

  0%,
  100% {
    border-color: transparent
  }

  50% {
    border-color: #e3c274
  }
}

@keyframes underlineGrow {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}







.hero {
  background: linear-gradient(to right, #003154, #e3c274);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero p {
  margin-top: 10px;
  font-size: 18px;
}

/* Filter Buttons */
.filter-bar {
  display: flex;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 12px 10px;
}

.filter-btn {
  background: none;
  border: 2px solid #003154;
  color: #003154;
  padding: 10px 18px;
  margin: 0 10px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: #003154;
  color: white;
}

/* Product Grid */
.product-grid {
  padding: 60px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Product Cards */
.product-card {
  background: white;
  padding: 25px;
  border-left: 5px solid #e3c274;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  transition: all 0.3s ease;
}

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









a,
button {
  transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
  transform: scale(1.05);
}


img:hover {
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.card:hover,
.box:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}









.slide-in {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1s ease-out;
}

.slide-in.visible {
  transform: translateX(0);
  opacity: 1;
}










.section-title {
  text-align: center;
  font-size: 36px;
  margin: 40px 0;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #e3c274;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.product-category-section {
  padding: 40px 20px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  width: 300px;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease-in-out;
}


.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-card h3 {
  padding: 15px;
  background-color: #fff;
  margin: 0;
  font-size: 18px;
  color: #003154;
}

.category-card.show {
  transform: translateY(0);
  opacity: 1;
}




.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.chemical-button {
  display: inline-block;
  background-color: #003154;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 16px rgba(0, 49, 84, 0.2);
  position: relative;
  overflow: hidden;
}

.chemical-button:hover {
  background-color: #e3c274;
  color: #003154;
  transform: translateY(-3px);
}





.whatsapp-float{
    position: fixed;
  bottom: 80px;
  width: 45px;
  height: 45px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  line-height: 45px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  line-height: 45px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover,
.scroll-to-top:hover {
  transform: scale(1.1);
}


.whatsapp-float {
  right: 20px;
}
.scroll-to-top {
  right: 20px;
  display: none;
  background-color: #003154;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 29px;
    bottom: 117px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }

  .scroll-to-top {
    right: 29px;
    bottom: 61px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;

  }
}



@media (max-width: 768px) {

  .section-title {
    text-align: center;
    font-size: 22px;
  }

  .prism-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    padding: 0px 0px;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 49, 84, 0.1);
  }
  .prism-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    text-align: left;
    text-align: justify;
}
}











